comparison src/audacious/main.c @ 2405:15fc0d852633 trunk

[svn] enhancement to popup information settings - progress bar in filepopup can be toggled - delay for filepopup is now configurable
author yaz
date Thu, 25 Jan 2007 20:50:15 -0800
parents 52bcc18eb8bb
children ffbac11b3a77
comparison
equal deleted inserted replaced
2404:60f1bc20c19c 2405:15fc0d852633
211 FALSE, /* use filename.jpg for coverart */ 211 FALSE, /* use filename.jpg for coverart */
212 FALSE, /* use XMMS-style file selection */ 212 FALSE, /* use XMMS-style file selection */
213 TRUE, /* use extension probing */ 213 TRUE, /* use extension probing */
214 255, 255, 255, /* colorize r, g, b */ 214 255, 255, 255, /* colorize r, g, b */
215 FALSE, /* internal: whether or not to terminate */ 215 FALSE, /* internal: whether or not to terminate */
216 TRUE, /* whether show progress bar in filepopup or not */
216 }; 217 };
217 218
218 typedef struct bmp_cfg_boolent_t { 219 typedef struct bmp_cfg_boolent_t {
219 char const *be_vname; 220 char const *be_vname;
220 gboolean *be_vloc; 221 gboolean *be_vloc;
312 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE}, 313 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE},
313 {"recurse_for_cover", &cfg.recurse_for_cover, TRUE}, 314 {"recurse_for_cover", &cfg.recurse_for_cover, TRUE},
314 {"use_file_cover", &cfg.use_file_cover, TRUE}, 315 {"use_file_cover", &cfg.use_file_cover, TRUE},
315 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE}, 316 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE},
316 {"use_extension_probing", &cfg.use_extension_probing, TRUE}, 317 {"use_extension_probing", &cfg.use_extension_probing, TRUE},
318 {"filepopup_showprogressbar", &cfg.filepopup_showprogressbar, TRUE},
317 }; 319 };
318 320
319 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); 321 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents);
320 322
321 static bmp_cfg_nument bmp_numents[] = { 323 static bmp_cfg_nument bmp_numents[] = {