Mercurial > audlegacy-plugins
annotate src/statusicon/si_cfg.h @ 980:6ba4a4bfd127 trunk
[svn] - fix overflow when calculates bitrate with non-fast scan on a huge sized file.
- make file info dialog always do non-fast scan. user can easily add TLEN tag of correct play time length to a VBR encoded file which does not go along with fast scan.
- tweak debug output.
author | yaz |
---|---|
date | Thu, 26 Apr 2007 02:06:12 -0700 |
parents | 9f0ac3bb82f4 |
children | ced4a5392948 |
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 #ifndef _I_SI_CFG_H | |
22 #define _I_SI_CFG_H 1 | |
23 | |
24 #include "si_common.h" | |
25 #include <glib.h> | |
26 | |
27 | |
28 #define SI_CFG_RCLICK_MENU_AUD 0 | |
962
9f0ac3bb82f4
[svn] - statusicon: added support for quit button in smallmenu; also, the field is being prepared for customizable smallmenu entries
giacomo
parents:
918
diff
changeset
|
29 #define SI_CFG_RCLICK_MENU_SMALL1 1 |
9f0ac3bb82f4
[svn] - statusicon: added support for quit button in smallmenu; also, the field is being prepared for customizable smallmenu entries
giacomo
parents:
918
diff
changeset
|
30 #define SI_CFG_RCLICK_MENU_SMALL2 2 |
857 | 31 |
918
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
32 #define SI_CFG_SCROLL_ACTION_VOLUME 0 |
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
33 #define SI_CFG_SCROLL_ACTION_SKIP 1 |
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
34 |
857 | 35 typedef struct |
36 { | |
37 gint rclick_menu; | |
918
209bd85dc1b9
[svn] - statusicon: add an option to use mouse wheel to change playing song instead of volume
giacomo
parents:
915
diff
changeset
|
38 gint scroll_action; |
915
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
39 gboolean mw_visib_prevstatus; |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
40 gboolean pw_visib_prevstatus; |
1ccc7a9c7fc2
[svn] - statusicon: memorize player windows visibility status between sessions
giacomo
parents:
857
diff
changeset
|
41 gboolean ew_visib_prevstatus; |
857 | 42 } |
43 si_cfg_t; | |
44 | |
45 void si_cfg_load ( void ); | |
46 void si_cfg_save ( void ); | |
47 | |
48 | |
49 #endif /* !_I_SI_CFG_H */ |