comparison src/audacious/main.c @ 3543:6b8c8e051c1b trunk

Add new configuration option: Software Volume Control.
author William Pitcock <nenolod@atheme.org>
date Tue, 18 Sep 2007 10:12:20 -0500
parents 08dae20c75f0
children e82ad057d1db
comparison
equal deleted inserted replaced
3541:19cbbbf1b738 3543:6b8c8e051c1b
222 TRUE, /* use extension probing */ 222 TRUE, /* use extension probing */
223 255, 255, 255, /* colorize r, g, b */ 223 255, 255, 255, /* colorize r, g, b */
224 FALSE, /* internal: whether or not to terminate */ 224 FALSE, /* internal: whether or not to terminate */
225 TRUE, /* whether show progress bar in filepopup or not */ 225 TRUE, /* whether show progress bar in filepopup or not */
226 TRUE, /* close jtf dialog on jump */ 226 TRUE, /* close jtf dialog on jump */
227 TRUE, /* use back and forth scroll */ 227 TRUE, /* use back and forth scroll */
228 FALSE, /* use software volume control */
228 }; 229 };
229 230
230 typedef struct bmp_cfg_boolent_t { 231 typedef struct bmp_cfg_boolent_t {
231 char const *be_vname; 232 char const *be_vname;
232 gboolean *be_vloc; 233 gboolean *be_vloc;
330 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE}, 331 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE},
331 {"use_extension_probing", &cfg.use_extension_probing, TRUE}, 332 {"use_extension_probing", &cfg.use_extension_probing, TRUE},
332 {"filepopup_showprogressbar", &cfg.filepopup_showprogressbar, TRUE}, 333 {"filepopup_showprogressbar", &cfg.filepopup_showprogressbar, TRUE},
333 {"close_jtf_dialog", &cfg.close_jtf_dialog, TRUE}, 334 {"close_jtf_dialog", &cfg.close_jtf_dialog, TRUE},
334 {"twoway_scroll", &cfg.twoway_scroll, TRUE}, 335 {"twoway_scroll", &cfg.twoway_scroll, TRUE},
336 {"software_volume_control", &cfg.software_volume_control, TRUE},
335 }; 337 };
336 338
337 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); 339 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents);
338 340
339 static bmp_cfg_nument bmp_numents[] = { 341 static bmp_cfg_nument bmp_numents[] = {