1 /*
2  * MPlayer GUI for Win32
3  * Copyright (C) 2003 Sascha Sommer <saschasommer@freenet.de>
4  * Copyright (C) 2006 Erik Augustson <erik_27can@yahoo.com>
5  * Copyright (C) 2006 Gianluigi Tiesi <sherpya@netfarm.it>
6  *
7  * This file is part of MPlayer.
8  *
9  * MPlayer is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * MPlayer is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with MPlayer; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23 
24 #ifndef MPLAYER_GUI_DIALOGS_H
25 #define MPLAYER_GUI_DIALOGS_H
26 
27 #define TBS_TOOLTIPS   0x0100
28 #define WM_SYSTRAY     (WM_USER+1)
29 #define UDM_SETRANGE32 (WM_USER+111)
30 #define UDM_GETRANGE32 (WM_USER+112)
31 #define UDM_SETPOS32   (WM_USER+113)
32 #define UDM_GETPOS32   (WM_USER+114)
33 
34 #define SOLID_GREY (HBRUSH) CreateSolidBrush(RGB(232, 232, 232))
35 #define SOLID_GREY2 (HBRUSH) CreateSolidBrush(RGB(175, 175, 175))
36 
37 #define MAXFILE 1024
38 
39 #define COPYRIGHT   "MPlayer GUI for Windows\n\n" \
40                     "Copyright (c) 2003 Sascha Sommer\n" \
41                     "Copyright (c) 2006 Erik Augustson\n" \
42                     "Copyright (c) 2006 Gianluigi Tiesi"
43 
44 #define ONLINE_HELP_URL      "http://www.mplayerhq.hu/DOCS/HTML/en/index.html"
45 
46 #define ID_OK                12
47 #define ID_APPLY             13
48 #define ID_CANCEL            14
49 #define ID_CLOSE             15
50 #define ID_DEFAULTS          16
51 #define ID_VO_DRIVER         17
52 #define ID_AO_DRIVER         18
53 #define ID_DOUBLE            19
54 #define ID_DIRECT            20
55 #define ID_FRAMEDROP         21
56 #define ID_NORMALIZE         22
57 #define ID_SOFTMIX           23
58 #define ID_EXTRASTEREO       24
59 #define ID_TRACKBAR1         25
60 #define ID_TRACKBAR2         26
61 #define ID_UPDOWN1           27
62 #define ID_UPDOWN2           28
63 #define ID_EDIT1             29
64 #define ID_EDIT2             30
65 #define ID_CACHE             31
66 #define ID_AUTOSYNC          32
67 #define ID_NONE              33
68 #define ID_OSD1              34
69 #define ID_OSD2              35
70 #define ID_OSD3              36
71 #define ID_PRIO              39
72 #define ID_URL               40
73 #define ID_TITLESEL          41
74 #define ID_UP                42
75 #define ID_DOWN              43
76 #define ID_REMOVE            44
77 #define ID_ADDFILE           45
78 #define ID_TRACKLIST         46
79 #define ID_SUBTITLE          47
80 #define ID_PLAYLISTLOAD      48
81 #define ID_PLAYLISTSAVE      49
82 #define ID_ADDURL            50
83 #define ID_DIR               51
84 #define ID_PLAY              52
85 #define ID_STOP              53
86 #define ID_SEEKF             54
87 #define ID_SEEKB             55
88 #define ID_NTRACK            56
89 #define ID_PTRACK            57
90 #define ID_PLAYLIST          58
91 #define ID_CLEAR             59
92 #define ID_SHOWHIDE          60
93 #define ID_SKINBROWSER       61
94 #define ID_KEYHELP           62
95 #define ID_ONLINEHELP        63
96 #define ID_CHAPTERSEL        64
97 #define ID_PREFS             65
98 #define TRAYMENU             66
99 #define IDFILE_OPEN          67
100 #define IDEXIT               68
101 #define IDURL_OPEN           69
102 #define IDDIR_OPEN           70
103 #define IDFILE_NEW           71
104 #define IDFILE_SAVE          72
105 #define IDHELP_ABOUT         73
106 #define IDSUBTITLE_OPEN      74
107 #define ID_CONSOLE           76
108 #define ID_EQ0               77
109 #define ID_EQ1               78
110 #define ID_EQ2               79
111 #define ID_EQ3               80
112 #define IDSUB_TOGGLE         81
113 #define IDSUB_CYCLE          82
114 #define ID_ASPECT1           83
115 #define ID_ASPECT2           84
116 #define ID_ASPECT3           85
117 #define ID_ASPECT4           86
118 #define ID_VIDEOWINDOW       87
119 #define ID_TIMER             88
120 #define ID_MUTE              89
121 #define ID_FULLSCREEN        90
122 #define ID_IDLE              91
123 /* support for 64 drives */
124 #define IDPLAYDISK           100
125 #define IDPLAYDISK_LIMIT     164
126 
127 #endif /* MPLAYER_GUI_DIALOGS_H */
128