Mercurial > audlegacy-plugins
annotate src/statusicon/si_cfg.c @ 3203:f5456241bff9 default tip
changed include path from audacious to audlegacy.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Tue, 10 Nov 2009 05:19:25 +0900 |
parents | 3134a0987162 |
children |
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" | |
2971
3134a0987162
- changed include path from audacious to audlegacy.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2523
diff
changeset
|
23 #include <audlegacy/plugin.h> |
857 | 24 |
25 si_cfg_t si_cfg; | |
26 | |
27 | |
28 void | |
29 si_cfg_load ( void ) | |
30 { | |
2523
769e17da93dd
Replaced s/ConfigDb/mcs_handle_t/g, as per changes in the core.
Matti Hamalainen <ccr@tnsp.org>
parents:
2499
diff
changeset
|
31 mcs_handle_t *cfgfile = aud_cfg_db_open(); |
857 | 32 |
2124 | 33 if ( !aud_cfg_db_get_int( cfgfile , "statusicon" , |
857 | 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 |
2124 | 37 if ( !aud_cfg_db_get_int( cfgfile , "statusicon" , |
918
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 |
2124 | 41 if ( !aud_cfg_db_get_bool( cfgfile , "statusicon" , |
915
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; |
2124 | 44 if ( !aud_cfg_db_get_bool( cfgfile , "statusicon" , |
915
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; |
2124 | 47 if ( !aud_cfg_db_get_bool( cfgfile , "statusicon" , |
915
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; |
2425
ced4a5392948
made status plugin use the main mouse wheel setting when changing the volume
Cristi Magherusan <majeru@atheme.org>
parents:
2124
diff
changeset
|
50 if ( !aud_cfg_db_get_int( cfgfile , "audacious" , |
ced4a5392948
made status plugin use the main mouse wheel setting when changing the volume
Cristi Magherusan <majeru@atheme.org>
parents:
2124
diff
changeset
|
51 "mouse_wheel_change" , &(si_cfg.volume_delta) ) ) |
ced4a5392948
made status plugin use the main mouse wheel setting when changing the volume
Cristi Magherusan <majeru@atheme.org>
parents:
2124
diff
changeset
|
52 si_cfg.volume_delta = 5; |
857 | 53 |
2124 | 54 aud_cfg_db_close( cfgfile ); |
857 | 55 return; |
56 } | |
57 | |
58 | |
59 void | |
60 si_cfg_save ( void ) | |
61 { | |
2523
769e17da93dd
Replaced s/ConfigDb/mcs_handle_t/g, as per changes in the core.
Matti Hamalainen <ccr@tnsp.org>
parents:
2499
diff
changeset
|
62 mcs_handle_t *cfgfile = aud_cfg_db_open(); |
857 | 63 |
2124 | 64 aud_cfg_db_set_int( cfgfile , "statusicon" , |
857 | 65 "rclick_menu" , si_cfg.rclick_menu ); |
915
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
66 |
2124 | 67 aud_cfg_db_set_int( cfgfile , "statusicon" , |
918
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
68 "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
|
69 |
2124 | 70 aud_cfg_db_set_bool( cfgfile , "statusicon" , |
915
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
71 "mw_visib_prevstatus" , si_cfg.mw_visib_prevstatus ); |
2124 | 72 aud_cfg_db_set_bool( cfgfile , "statusicon" , |
915
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
73 "pw_visib_prevstatus" , si_cfg.pw_visib_prevstatus ); |
2124 | 74 aud_cfg_db_set_bool( cfgfile , "statusicon" , |
915
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
75 "ew_visib_prevstatus" , si_cfg.ew_visib_prevstatus ); |
857 | 76 |
2124 | 77 aud_cfg_db_close( cfgfile ); |
857 | 78 return; |
79 } |