annotate gui/app.c @ 32959:b17dd13b3cce

Remove unreasonable inline definition from TranslateFilename().
author ib
date Tue, 08 Mar 2011 10:25:28 +0000
parents 0e4fd1834f76
children 06d7501e046f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26458
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
1 /*
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
2 * This file is part of MPlayer.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
3 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
5 * it under the terms of the GNU General Public License as published by
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
7 * (at your option) any later version.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
8 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
12 * GNU General Public License for more details.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
13 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
14 * You should have received a copy of the GNU General Public License along
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 25243
diff changeset
17 */
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
18
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
19 #include "app.h"
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
20
32921
448517f556a5 Fix memory leak in appClearItem().
ib
parents: 32918
diff changeset
21 #include "gui/skin/font.h"
448517f556a5 Fix memory leak in appClearItem().
ib
parents: 32918
diff changeset
22 #include "interface.h"
448517f556a5 Fix memory leak in appClearItem().
ib
parents: 32918
diff changeset
23
32944
27a98940e3aa Use FF_ARRAY_ELEMS() rather than a separate constant.
ib
parents: 32937
diff changeset
24 #include "libavutil/common.h"
27a98940e3aa Use FF_ARRAY_ELEMS() rather than a separate constant.
ib
parents: 32937
diff changeset
25
32937
3c57056637cc Cosmetic: Rename listItems structure.
ib
parents: 32933
diff changeset
26 guiItems appMPlayer;
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
27
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
28 static const evName evNames[] = {
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
29 { evNone, "evNone" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
30 { evPlay, "evPlay" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
31 { evStop, "evStop" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
32 { evPause, "evPause" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
33 { evPrev, "evPrev" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
34 { evNext, "evNext" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
35 { evLoad, "evLoad" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
36 { evEqualizer, "evEqualizer" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
37 { evEqualizer, "evEqualeaser" }, // NOTE TO MYSELF: any skin using this?
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
38 { evPlayList, "evPlaylist" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
39 { evExit, "evExit" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
40 { evIconify, "evIconify" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
41 { evIncBalance, "evIncBalance" }, // NOTE TO MYSELF: not all of these events
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
42 { evDecBalance, "evDecBalance" }, // are actually implemented, and update doc
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
43 { evFullScreen, "evFullScreen" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
44 { evFName, "evFName" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
45 { evMovieTime, "evMovieTime" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
46 { evAbout, "evAbout" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
47 { evLoadPlay, "evLoadPlay" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
48 { evPreferences, "evPreferences" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
49 { evSkinBrowser, "evSkinBrowser" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
50 { evBackward10sec, "evBackward10sec" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
51 { evForward10sec, "evForward10sec" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
52 { evBackward1min, "evBackward1min" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
53 { evForward1min, "evForward1min" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
54 { evBackward10min, "evBackward10min" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
55 { evForward10min, "evForward10min" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
56 { evIncVolume, "evIncVolume" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
57 { evDecVolume, "evDecVolume" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
58 { evMute, "evMute" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
59 { evIncAudioBufDelay, "evIncAudioBufDelay" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
60 { evDecAudioBufDelay, "evDecAudioBufDelay" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
61 { evPlaySwitchToPause, "evPlaySwitchToPause" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
62 { evPauseSwitchToPlay, "evPauseSwitchToPlay" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
63 { evNormalSize, "evHalfSize" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
64 { evNormalSize, "evNormalSize" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
65 { evDoubleSize, "evDoubleSize" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
66 { evSetMoviePosition, "evSetMoviePosition" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
67 { evSetVolume, "evSetVolume" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
68 { evSetBalance, "evSetBalance" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
69 { evHelp, "evHelp" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
70 { evLoadSubtitle, "evLoadSubtitle" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
71 { evPlayDVD, "evPlayDVD" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
72 { evPlayVCD, "evPlayVCD" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
73 { evSetURL, "evSetURL" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
74 { evLoadAudioFile, "evLoadAudioFile" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
75 { evDropSubtitle, "evDropSubtitle" },
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
76 { evSetAspect, "evSetAspect" }
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
77 };
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
78
32898
eeb36d798219 Limit scope of internally used appClearItem().
ib
parents: 32897
diff changeset
79 static void appClearItem(wItem *item)
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
80 {
32917
9949f3a123cf Add new function bpFree() to free txSamples (bitmaps).
ib
parents: 32912
diff changeset
81 bpFree(&item->Bitmap);
32921
448517f556a5 Fix memory leak in appClearItem().
ib
parents: 32918
diff changeset
82 bpFree(&item->Mask);
32947
0e4fd1834f76 Prefer free() to gfree().
ib
parents: 32946
diff changeset
83 free(item->label);
0e4fd1834f76 Prefer free() to gfree().
ib
parents: 32946
diff changeset
84 free(item->text);
32946
d551faf8d07e Simplify appClearItem() by using memset().
ib
parents: 32945
diff changeset
85 memset(item, 0, sizeof(*item));
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
86 }
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
87
32945
15aecb36f23e Cosmetic: Rename appResetStruct() appInitStruct().
ib
parents: 32944
diff changeset
88 void appInitStruct(void)
32927
edb972e22021 Fix memory leak in appInitStruct().
ib
parents: 32926
diff changeset
89 {
32931
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
90 appMPlayer.IndexOfMainItems = -1;
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
91 appMPlayer.IndexOfBarItems = -1;
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
92 appMPlayer.IndexOfMenuItems = -1;
32927
edb972e22021 Fix memory leak in appInitStruct().
ib
parents: 32926
diff changeset
93
edb972e22021 Fix memory leak in appInitStruct().
ib
parents: 32926
diff changeset
94 appMPlayer.sub.x = -1; // NOTE TO MYSELF: is this really necessary?
edb972e22021 Fix memory leak in appInitStruct().
ib
parents: 32926
diff changeset
95 appMPlayer.sub.y = -1; // NOTE TO MYSELF: is this really necessary?
edb972e22021 Fix memory leak in appInitStruct().
ib
parents: 32926
diff changeset
96 }
edb972e22021 Fix memory leak in appInitStruct().
ib
parents: 32926
diff changeset
97
32932
e95ec1b2feea Cosmetic: Rename appInitStruct() to appFreeStruct().
ib
parents: 32931
diff changeset
98 void appFreeStruct(void)
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
99 {
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
100 int i;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
101
32929
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
102 appClearItem(&appMPlayer.main);
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
103 appMPlayer.mainDecoration = 0;
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
104
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
105 appClearItem(&appMPlayer.sub);
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
106
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
107 appClearItem(&appMPlayer.bar);
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
108 appMPlayer.barIsPresent = 0;
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
109
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
110 appClearItem(&appMPlayer.menuBase);
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
111 appClearItem(&appMPlayer.menuSelected);
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
112 appMPlayer.menuIsPresent = 0;
6ea9e024f05e Clean up appInitStruct().
ib
parents: 32928
diff changeset
113
32931
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
114 for (i = 0; i <= appMPlayer.IndexOfMainItems; i++)
32926
7c205a5c2a9b Remove parameter from appInitStruct() function.
ib
parents: 32925
diff changeset
115 appClearItem(&appMPlayer.mainItems[i]);
32931
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
116 for (i = 0; i <= appMPlayer.IndexOfBarItems; i++)
32926
7c205a5c2a9b Remove parameter from appInitStruct() function.
ib
parents: 32925
diff changeset
117 appClearItem(&appMPlayer.barItems[i]);
32931
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
118 for (i = 0; i <= appMPlayer.IndexOfMenuItems; i++)
32926
7c205a5c2a9b Remove parameter from appInitStruct() function.
ib
parents: 32925
diff changeset
119 appClearItem(&appMPlayer.menuItems[i]);
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
120
32945
15aecb36f23e Cosmetic: Rename appResetStruct() appInitStruct().
ib
parents: 32944
diff changeset
121 appInitStruct();
32933
258baf2bfeca Move fntFreeFont() into appFreeStruct().
ib
parents: 32932
diff changeset
122 fntFreeFont();
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
123 }
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
124
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
125 int appFindMessage(unsigned char *str)
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
126 {
32944
27a98940e3aa Use FF_ARRAY_ELEMS() rather than a separate constant.
ib
parents: 32937
diff changeset
127 unsigned int i;
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
128
32944
27a98940e3aa Use FF_ARRAY_ELEMS() rather than a separate constant.
ib
parents: 32937
diff changeset
129 for (i = 0; i < FF_ARRAY_ELEMS(evNames); i++)
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
130 if (!strcmp(evNames[i].name, str))
32911
e06fbdd8eb46 Clean up the wItem structure.
ib
parents: 32900
diff changeset
131 return evNames[i].message;
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
132
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
133 return -1;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
134 }
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
135
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
136 void btnModify(int event, float state)
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
137 {
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
138 int i;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
139
32931
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
140 for (i = 0; i <= appMPlayer.IndexOfMainItems; i++) {
32912
ca4d3fa55e43 Adjust the listItems structure.
ib
parents: 32911
diff changeset
141 if (appMPlayer.mainItems[i].message == event) {
ca4d3fa55e43 Adjust the listItems structure.
ib
parents: 32911
diff changeset
142 switch (appMPlayer.mainItems[i].type) {
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
143 case itButton:
32912
ca4d3fa55e43 Adjust the listItems structure.
ib
parents: 32911
diff changeset
144 appMPlayer.mainItems[i].pressed = (int)state;
ca4d3fa55e43 Adjust the listItems structure.
ib
parents: 32911
diff changeset
145 appMPlayer.mainItems[i].tmp = (int)state;
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
146 break;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
147
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
148 case itPotmeter:
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
149 case itVPotmeter:
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
150 case itHPotmeter:
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
151 if (state < 0.0)
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
152 state = 0.0;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
153 if (state > 100.0)
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
154 state = 100.0;
32912
ca4d3fa55e43 Adjust the listItems structure.
ib
parents: 32911
diff changeset
155 appMPlayer.mainItems[i].value = state;
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
156 break;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
157 }
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
158 }
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
159 }
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
160
32931
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
161 for (i = 0; i <= appMPlayer.IndexOfBarItems; i++) {
32911
e06fbdd8eb46 Clean up the wItem structure.
ib
parents: 32900
diff changeset
162 if (appMPlayer.barItems[i].message == event) {
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
163 switch (appMPlayer.barItems[i].type) {
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
164 case itButton:
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
165 appMPlayer.barItems[i].pressed = (int)state;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
166 appMPlayer.barItems[i].tmp = (int)state;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
167 break;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
168
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
169 case itPotmeter:
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
170 case itVPotmeter:
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
171 case itHPotmeter:
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
172 if (state < 0.0)
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
173 state = 0.0;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
174 if (state > 100.0)
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
175 state = 100.0;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
176 appMPlayer.barItems[i].value = state;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
177 break;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
178 }
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
179 }
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
180 }
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
181 }
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
182
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
183 void btnSet(int event, int set)
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
184 {
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
185 int i;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
186
32931
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
187 for (i = 0; i <= appMPlayer.IndexOfMainItems; i++) {
32912
ca4d3fa55e43 Adjust the listItems structure.
ib
parents: 32911
diff changeset
188 if (appMPlayer.mainItems[i].message == event) {
ca4d3fa55e43 Adjust the listItems structure.
ib
parents: 32911
diff changeset
189 appMPlayer.mainItems[i].pressed = set;
ca4d3fa55e43 Adjust the listItems structure.
ib
parents: 32911
diff changeset
190 appMPlayer.barItems[i].tmp = 0;
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
191 }
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
192 }
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
193
32931
03b1051bed5c Rename the 'NumberOf' members of the listItems structure.
ib
parents: 32930
diff changeset
194 for (i = 0; i <= appMPlayer.IndexOfBarItems; i++) {
32911
e06fbdd8eb46 Clean up the wItem structure.
ib
parents: 32900
diff changeset
195 if (appMPlayer.barItems[i].message == event) {
32897
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
196 appMPlayer.barItems[i].pressed = set;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
197 appMPlayer.barItems[i].tmp = 0;
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
198 }
14af78beac02 Cosmetic: Format to MPlayer coding style.
ib
parents: 32847
diff changeset
199 }
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
200 }