Mercurial > audlegacy-plugins
annotate src/statusicon/si_cfg.c @ 1032:15e8890cb54d trunk
[svn] - fix memory-leak for protocol 1.2 code
- disable accidental enabling of debugging code
author | nenolod |
---|---|
date | Sat, 12 May 2007 00:56:32 -0700 |
parents | 209bd85dc1b9 |
children | 00394f91e3c6 |
rev | line source |
---|---|
857 | 1 /* |
2 * | |
3 * Author: Giacomo Lozito <james@develia.org>, (C) 2005-2007 | |
4 * | |
5 * This program is free software; you can redistribute it and/or modify it | |
6 * under the terms of the GNU General Public License as published by the | |
7 * Free Software Foundation; either version 2 of the License, or (at your | |
8 * option) any later version. | |
9 * | |
10 * This program is distributed in the hope that it will be useful, but | |
11 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU General Public License along | |
16 * with this program; if not, write to the Free Software Foundation, Inc., | |
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
18 * | |
19 */ | |
20 | |
21 #include "si_cfg.h" | |
22 #include "si_common.h" | |
23 #include <audacious/configdb.h> | |
24 | |
25 si_cfg_t si_cfg; | |
26 | |
27 | |
28 void | |
29 si_cfg_load ( void ) | |
30 { | |
31 ConfigDb *cfgfile = bmp_cfg_db_open(); | |
32 | |
33 if ( !bmp_cfg_db_get_int( cfgfile , "statusicon" , | |
34 "rclick_menu" , &(si_cfg.rclick_menu) ) ) | |
35 si_cfg.rclick_menu = SI_CFG_RCLICK_MENU_AUD; | |
918
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
36 |
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
37 if ( !bmp_cfg_db_get_int( cfgfile , "statusicon" , |
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
38 "scroll_action" , &(si_cfg.scroll_action) ) ) |
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
39 si_cfg.scroll_action = SI_CFG_SCROLL_ACTION_VOLUME; |
915
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
40 |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
41 if ( !bmp_cfg_db_get_bool( cfgfile , "statusicon" , |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
42 "mw_visib_prevstatus" , &(si_cfg.mw_visib_prevstatus) ) ) |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
43 si_cfg.mw_visib_prevstatus = FALSE; |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
44 if ( !bmp_cfg_db_get_bool( cfgfile , "statusicon" , |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
45 "pw_visib_prevstatus" , &(si_cfg.pw_visib_prevstatus) ) ) |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
46 si_cfg.pw_visib_prevstatus = FALSE; |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
47 if ( !bmp_cfg_db_get_bool( cfgfile , "statusicon" , |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
48 "ew_visib_prevstatus" , &(si_cfg.ew_visib_prevstatus) ) ) |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
49 si_cfg.ew_visib_prevstatus = FALSE; |
857 | 50 |
51 bmp_cfg_db_close( cfgfile ); | |
52 return; | |
53 } | |
54 | |
55 | |
56 void | |
57 si_cfg_save ( void ) | |
58 { | |
59 ConfigDb *cfgfile = bmp_cfg_db_open(); | |
60 | |
61 bmp_cfg_db_set_int( cfgfile , "statusicon" , | |
62 "rclick_menu" , si_cfg.rclick_menu ); | |
915
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
63 |
918
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
64 bmp_cfg_db_set_int( cfgfile , "statusicon" , |
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
65 "scroll_action" , si_cfg.scroll_action ); |
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
66 |
915
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
67 bmp_cfg_db_set_bool( cfgfile , "statusicon" , |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
68 "mw_visib_prevstatus" , si_cfg.mw_visib_prevstatus ); |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
69 bmp_cfg_db_set_bool( cfgfile , "statusicon" , |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
70 "pw_visib_prevstatus" , si_cfg.pw_visib_prevstatus ); |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
71 bmp_cfg_db_set_bool( cfgfile , "statusicon" , |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
72 "ew_visib_prevstatus" , si_cfg.ew_visib_prevstatus ); |
857 | 73 |
74 bmp_cfg_db_close( cfgfile ); | |
75 return; | |
76 } |