comparison src/audacious/main.c @ 2968:83f03505f819 trunk

add support for one-way text scroll.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Mon, 02 Jul 2007 21:02:49 +0900
parents 1cdfc508d758
children 8463de0cf728
comparison
equal deleted inserted replaced
2967:53ebe56cb0ac 2968:83f03505f819
219 TRUE, /* use extension probing */ 219 TRUE, /* use extension probing */
220 255, 255, 255, /* colorize r, g, b */ 220 255, 255, 255, /* colorize r, g, b */
221 FALSE, /* internal: whether or not to terminate */ 221 FALSE, /* internal: whether or not to terminate */
222 TRUE, /* whether show progress bar in filepopup or not */ 222 TRUE, /* whether show progress bar in filepopup or not */
223 TRUE, /* close jtf dialog on jump */ 223 TRUE, /* close jtf dialog on jump */
224 FALSE, /* use back and forth scroll */
224 }; 225 };
225 226
226 typedef struct bmp_cfg_boolent_t { 227 typedef struct bmp_cfg_boolent_t {
227 char const *be_vname; 228 char const *be_vname;
228 gboolean *be_vloc; 229 gboolean *be_vloc;
321 {"use_file_cover", &cfg.use_file_cover, TRUE}, 322 {"use_file_cover", &cfg.use_file_cover, TRUE},
322 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE}, 323 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE},
323 {"use_extension_probing", &cfg.use_extension_probing, TRUE}, 324 {"use_extension_probing", &cfg.use_extension_probing, TRUE},
324 {"filepopup_showprogressbar", &cfg.filepopup_showprogressbar, TRUE}, 325 {"filepopup_showprogressbar", &cfg.filepopup_showprogressbar, TRUE},
325 {"close_jtf_dialog", &cfg.close_jtf_dialog, TRUE}, 326 {"close_jtf_dialog", &cfg.close_jtf_dialog, TRUE},
327 {"twoway_scroll", &cfg.twoway_scroll, TRUE},
326 }; 328 };
327 329
328 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); 330 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents);
329 331
330 static bmp_cfg_nument bmp_numents[] = { 332 static bmp_cfg_nument bmp_numents[] = {