annotate src/statusicon/si_cfg.c @ 2195:9773d2c69857

Automated merge with ssh://hg.atheme.org//hg/audacious-plugins
author Jonathan Schleifer <js-audacious@webkeks.org>
date Wed, 28 Nov 2007 18:15:40 +0100
parents b8da6a0b0da2
children ced4a5392948
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
1 /*
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
2 *
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
3 * Author: Giacomo Lozito <james@develia.org>, (C) 2005-2007
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
4 *
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
5 * This program is free software; you can redistribute it and/or modify it
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
6 * under the terms of the GNU General Public License as published by the
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
7 * Free Software Foundation; either version 2 of the License, or (at your
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
8 * option) any later version.
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
9 *
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
10 * This program is distributed in the hope that it will be useful, but
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
13 * General Public License for more details.
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
14 *
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License along
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
16 * with this program; if not, write to the Free Software Foundation, Inc.,
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
18 *
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
19 */
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
20
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
21 #include "si_cfg.h"
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
22 #include "si_common.h"
1975
00394f91e3c6 Updated plugins depending on old configdb to #include <audacious/plugin.h> so that bmp_cfg_db_* functions are still defined.
Ben Tucker <ben.tucker@gmail.com>
parents: 918
diff changeset
23 #include <audacious/plugin.h>
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
24 #include <audacious/configdb.h>
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
25
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
26 si_cfg_t si_cfg;
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
27
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
28
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
29 void
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
30 si_cfg_load ( void )
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
31 {
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
32 ConfigDb *cfgfile = aud_cfg_db_open();
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
33
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
34 if ( !aud_cfg_db_get_int( cfgfile , "statusicon" ,
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
35 "rclick_menu" , &(si_cfg.rclick_menu) ) )
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
36 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
37
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
38 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
39 "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
40 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
41
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
42 if ( !aud_cfg_db_get_bool( cfgfile , "statusicon" ,
915
1ccc7a9c7fc2 [svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents: 857
diff changeset
43 "mw_visib_prevstatus" , &(si_cfg.mw_visib_prevstatus) ) )
1ccc7a9c7fc2 [svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents: 857
diff changeset
44 si_cfg.mw_visib_prevstatus = FALSE;
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
45 if ( !aud_cfg_db_get_bool( cfgfile , "statusicon" ,
915
1ccc7a9c7fc2 [svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents: 857
diff changeset
46 "pw_visib_prevstatus" , &(si_cfg.pw_visib_prevstatus) ) )
1ccc7a9c7fc2 [svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents: 857
diff changeset
47 si_cfg.pw_visib_prevstatus = FALSE;
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
48 if ( !aud_cfg_db_get_bool( cfgfile , "statusicon" ,
915
1ccc7a9c7fc2 [svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents: 857
diff changeset
49 "ew_visib_prevstatus" , &(si_cfg.ew_visib_prevstatus) ) )
1ccc7a9c7fc2 [svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents: 857
diff changeset
50 si_cfg.ew_visib_prevstatus = FALSE;
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
51
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
52 aud_cfg_db_close( cfgfile );
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
53 return;
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
54 }
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
55
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
56
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
57 void
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
58 si_cfg_save ( void )
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
59 {
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
60 ConfigDb *cfgfile = aud_cfg_db_open();
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
61
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
62 aud_cfg_db_set_int( cfgfile , "statusicon" ,
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
63 "rclick_menu" , si_cfg.rclick_menu );
915
1ccc7a9c7fc2 [svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents: 857
diff changeset
64
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
65 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
66 "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
67
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
68 aud_cfg_db_set_bool( cfgfile , "statusicon" ,
915
1ccc7a9c7fc2 [svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents: 857
diff changeset
69 "mw_visib_prevstatus" , si_cfg.mw_visib_prevstatus );
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
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 "pw_visib_prevstatus" , si_cfg.pw_visib_prevstatus );
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
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 "ew_visib_prevstatus" , si_cfg.ew_visib_prevstatus );
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
74
2124
b8da6a0b0da2 s/bmp_cfg_/aud_cfg_/g
Matti Hamalainen <ccr@tnsp.org>
parents: 1975
diff changeset
75 aud_cfg_db_close( cfgfile );
857
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
76 return;
bad7c89d7ba0 [svn] statusicon: add missing files
giacomo
parents:
diff changeset
77 }