1 | /* smplayer, GUI front-end for mplayer.
|
---|
2 | Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net>
|
---|
3 |
|
---|
4 | This program is free software; you can redistribute it and/or modify
|
---|
5 | it under the terms of the GNU General Public License as published by
|
---|
6 | the Free Software Foundation; either version 2 of the License, or
|
---|
7 | (at your option) any later version.
|
---|
8 |
|
---|
9 | This program is distributed in the hope that it will be useful,
|
---|
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
12 | GNU General Public License for more details.
|
---|
13 |
|
---|
14 | You should have received a copy of the GNU General Public License
|
---|
15 | along with this program; if not, write to the Free Software
|
---|
16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef GUICONFIG_H
|
---|
20 | #define GUICONFIG_H
|
---|
21 |
|
---|
22 |
|
---|
23 | // DOCK_PLAYLIST
|
---|
24 | // if 1, the playlist will be docked in the main window, instead
|
---|
25 | // of being a top level window
|
---|
26 |
|
---|
27 | #define DOCK_PLAYLIST 1
|
---|
28 |
|
---|
29 |
|
---|
30 | // AUTODISABLE_ACTIONS
|
---|
31 | // if set to 1, some actions will be disabled if they are not needed
|
---|
32 |
|
---|
33 | #define AUTODISABLE_ACTIONS 1
|
---|
34 |
|
---|
35 |
|
---|
36 | // MINI_ARROW_BUTTONS
|
---|
37 | // if set to 1, the GUI will use a popup menu for arrow buttons
|
---|
38 |
|
---|
39 | #define MINI_ARROW_BUTTONS 1
|
---|
40 |
|
---|
41 |
|
---|
42 | // ALLOW_CHANGE_STYLESHEET
|
---|
43 | // if 1, the app stylesheet can be changed
|
---|
44 |
|
---|
45 | #define ALLOW_CHANGE_STYLESHEET 1
|
---|
46 |
|
---|
47 |
|
---|
48 | // Allow to use multiple shortcuts for actions
|
---|
49 |
|
---|
50 | #define USE_MULTIPLE_SHORTCUTS 1
|
---|
51 |
|
---|
52 |
|
---|
53 | // USE_SHORTCUTGETTER
|
---|
54 | // if 1, a new dialog will be used to ask the user for a
|
---|
55 | // keyshortcut.
|
---|
56 |
|
---|
57 | #define USE_SHORTCUTGETTER 1
|
---|
58 |
|
---|
59 |
|
---|
60 | // USE_INFOPROVIDER
|
---|
61 | // if 1, the playlist will read info about the files when they are added
|
---|
62 | // to the list.
|
---|
63 | // It's slow but allows the user to see the length and even the name of
|
---|
64 | // a mp3 song.
|
---|
65 |
|
---|
66 | #define USE_INFOPROVIDER 1
|
---|
67 |
|
---|
68 |
|
---|
69 | // USE_CONFIGURABLE_TOOLBARS
|
---|
70 | // if 1, the toolbars (and controlbars) are saved to the config file
|
---|
71 | // so the user can modify them.
|
---|
72 |
|
---|
73 | #define USE_CONFIGURABLE_TOOLBARS 1
|
---|
74 |
|
---|
75 |
|
---|
76 | // USE_DOCK_TOPLEVEL_EVENT
|
---|
77 | // if 1, the topLevelChanged from QDockWidget will be use to know
|
---|
78 | // if the playlist has been docked or undocked
|
---|
79 |
|
---|
80 | #define USE_DOCK_TOPLEVEL_EVENT 0
|
---|
81 |
|
---|
82 |
|
---|
83 | #endif
|
---|
84 |
|
---|