Mercurial > mplayer.hg
annotate gui/win32/skinload.c @ 37004:c3fcf359e4dc
Revise and update skin documentation on phase images.
Add an illustration of vpotmeter phases.
author | ib |
---|---|
date | Fri, 28 Mar 2014 12:26:43 +0000 |
parents | 40ad45360c8a |
children | e2c10942873b |
rev | line source |
---|---|
23077 | 1 /* |
23079 | 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 * | |
26457 | 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 | |
23079 | 22 */ |
23077 | 23 |
33761 | 24 #include <string.h> |
23077 | 25 #include <stdlib.h> |
23796 | 26 #include <stdio.h> |
23077 | 27 #include <inttypes.h> |
28 #include <windows.h> | |
29 | |
23091
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
30 #include "mp_msg.h" |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
31 #include "help_mp.h" |
23091
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
32 #include "cpudetect.h" |
52488bb09d90
Consistently use quotes instead of angled brackets in #include
diego
parents:
23079
diff
changeset
|
33 #include "libswscale/swscale.h" |
32833
c4891d10ddbb
Adjust #include paths after the merge of libavcore into libavutil in FFmpeg.
diego
parents:
32537
diff
changeset
|
34 #include "libavutil/imgutils.h" |
23077 | 35 #include "gui.h" |
33770 | 36 #include "gui/util/mem.h" |
33046 | 37 #include "gui/util/bitmap.h" |
23077 | 38 |
39 #define MAX_LINESIZE 256 | |
40 | |
41 typedef struct | |
42 { | |
43 int msg; | |
44 char *name; | |
45 } evName; | |
46 | |
47 static const evName evNames[] = | |
48 { | |
49 { evNone, "evNone" }, | |
50 { evPlay, "evPlay" }, | |
51 { evStop, "evStop" }, | |
52 { evPause, "evPause" }, | |
53 { evPrev, "evPrev" }, | |
54 { evNext, "evNext" }, | |
55 { evLoad, "evLoad" }, | |
34317 | 56 { evLoadPlay, "evLoadPlay" }, |
57 { evLoadAudioFile, "evLoadAudioFile" }, | |
58 { evLoadSubtitle, "evLoadSubtitle" }, | |
59 { evDropSubtitle, "evDropSubtitle" }, | |
34321
daebf766dea6
Cosmetic: Synchronize evPlaylist event and message names.
ib
parents:
34320
diff
changeset
|
60 { evPlaylist, "evPlaylist" }, |
34387 | 61 { evPlayCD, "evPlayCD" }, |
34317 | 62 { evPlayVCD, "evPlayVCD" }, |
63 { evPlayDVD, "evPlayDVD" }, | |
34324 | 64 { evLoadURL, "evSetURL" }, // legacy |
65 { evLoadURL, "evLoadURL" }, | |
36429 | 66 { evPlayTV, "evPlayTV" }, |
34317 | 67 { evPlaySwitchToPause, "evPlaySwitchToPause" }, |
68 { evPauseSwitchToPlay, "evPauseSwitchToPlay" }, | |
23077 | 69 { evBackward10sec, "evBackward10sec" }, |
70 { evForward10sec, "evForward10sec" }, | |
71 { evBackward1min, "evBackward1min" }, | |
72 { evForward1min, "evForward1min" }, | |
73 { evBackward10min, "evBackward10min" }, | |
74 { evForward10min, "evForward10min" }, | |
34317 | 75 { evSetMoviePosition, "evSetMoviePosition" }, |
34320 | 76 { evHalfSize, "evHalfSize" }, |
34317 | 77 { evDoubleSize, "evDoubleSize" }, |
78 { evFullScreen, "evFullScreen" }, | |
79 { evNormalSize, "evNormalSize" }, | |
34322 | 80 { evSetAspect, "evSetAspect" }, |
23077 | 81 { evIncVolume, "evIncVolume" }, |
82 { evDecVolume, "evDecVolume" }, | |
34317 | 83 { evSetVolume, "evSetVolume" }, |
23077 | 84 { evMute, "evMute" }, |
34317 | 85 { evSetBalance, "evSetBalance" }, |
86 { evEqualizer, "evEqualizer" }, | |
87 { evAbout, "evAbout" }, | |
88 { evPreferences, "evPreferences" }, | |
89 { evSkinBrowser, "evSkinBrowser" }, | |
34458 | 90 { evMenu, "evMenu" }, |
34317 | 91 { evIconify, "evIconify" }, |
34326 | 92 { evExit, "evExit" } |
23077 | 93 }; |
94 | |
95 static const int evBoxs = sizeof(evNames) / sizeof(evName); | |
96 | |
36890 | 97 static int linenumber; |
98 | |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
99 /** |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
100 * @brief Print a legacy information on an entry. |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
101 * |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
102 * @param old identifier (and deprecated entry) |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
103 * @param data pointer to additional data necessary for checking and |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
104 * to print the information on @a old |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
105 */ |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
106 static void skin_legacy (const char *old, const char *data) |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
107 { |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
108 const char *p; |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
109 |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
110 if (strcmp(old, "fontid") == 0) |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
111 { |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
112 p = strchr(data, ','); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
113 |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
114 if (p) mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_GUI_MSG_SkinLegacy, linenumber, p, "font = fontfile"); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
115 } |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
116 else if (strcmp(old, "$l") == 0) |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
117 { |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
118 p = strstr(old, data); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
119 |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
120 if (p && (p == data || p[-1] != '$')) mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_GUI_MSG_SkinLegacy, linenumber, old, "$p"); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
121 } |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
122 else if (strcmp(old, "evSetURL") == 0 && strcmp(data, old) == 0) |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
123 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_GUI_MSG_SkinLegacy, linenumber, old, "evLoadURL"); |
36892 | 124 else if (strcmp(old, "sub") == 0 || strcmp(old, "potmeter") == 0) |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
125 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_GUI_MSG_SkinLegacy, linenumber, old, data); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
126 } |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
127 |
23077 | 128 static char *geteventname(int event) |
129 { | |
130 int i; | |
131 for(i=0; i<evBoxs; i++) | |
132 if(evNames[i].msg == event) | |
133 return evNames[i].name; | |
134 return NULL; | |
135 } | |
136 | |
137 /* reads a complete image as is into image buffer */ | |
33784 | 138 static image *pngRead(skin_t *skin, const char *fname) |
23077 | 139 { |
34996
ebcc17a3c165
Fix compiler warnings (comparison between signed and unsigned).
ib
parents:
34697
diff
changeset
|
140 unsigned int i; |
33555 | 141 guiImage bmp; |
23077 | 142 image *bf; |
23266
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
143 char *filename = NULL; |
23077 | 144 FILE *fp; |
145 | |
146 if(!stricmp(fname, "NULL")) return 0; | |
147 | |
148 /* find filename in order file file.png */ | |
149 if(!(fp = fopen(fname, "rb"))) | |
150 { | |
151 filename = calloc(1, strlen(skin->skindir) + strlen(fname) + 6); | |
34092
dbf5042ab255
Don't use the Windows style path separator character in Win32 GUI.
ib
parents:
33784
diff
changeset
|
152 sprintf(filename, "%s/%s.png", skin->skindir, fname); |
23077 | 153 if(!(fp = fopen(filename, "rb"))) |
154 { | |
155 mp_msg(MSGT_GPLAYER, MSGL_ERR, "[png] cannot find image %s\n", filename); | |
156 free(filename); | |
157 return 0; | |
158 } | |
159 } | |
23266
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
160 fclose(fp); |
23077 | 161 |
162 for (i=0; i < skin->imagecount; i++) | |
163 if(!strcmp(fname, skin->images[i]->name)) | |
164 { | |
34450 | 165 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[png] skinfile %s already exists\n", fname); |
23266
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
166 free(filename); |
23077 | 167 return skin->images[i]; |
168 } | |
169 (skin->imagecount)++; | |
170 skin->images = realloc(skin->images, sizeof(image *) * skin->imagecount); | |
171 bf = skin->images[(skin->imagecount) - 1] = calloc(1, sizeof(image)); | |
172 bf->name = strdup(fname); | |
23266
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
173 bpRead(filename ? filename : fname, &bmp); |
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
174 free(filename); |
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
175 bf->width = bmp.Width; bf->height = bmp.Height; |
23077 | 176 |
177 bf->size = bf->width * bf->height * skin->desktopbpp / 8; | |
23266
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
178 if (skin->desktopbpp == 32) |
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
179 bf->data = bmp.Image; |
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
180 else { |
32028
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
181 const uint8_t *src[4] = { bmp.Image, NULL, NULL, NULL}; |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
182 int src_stride[4] = { 4 * bmp.Width, 0, 0, 0 }; |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
183 uint8_t *dst[4] = { NULL, NULL, NULL, NULL }; |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
184 int dst_stride[4]; |
35707
4ba6b8d3197e
Replace PixelFormat and PIX_FMT_FOO by their AV_-prefixed counterparts.
diego
parents:
35501
diff
changeset
|
185 enum AVPixelFormat out_pix_fmt = PIX_FMT_NONE; |
32028
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
186 struct SwsContext *sws; |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
187 if (skin->desktopbpp == 16) out_pix_fmt = PIX_FMT_RGB555; |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
188 else if (skin->desktopbpp == 24) out_pix_fmt = PIX_FMT_RGB24; |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
189 av_image_fill_linesizes(dst_stride, out_pix_fmt, bmp.Width); |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
190 sws = sws_getContext(bmp.Width, bmp.Height, PIX_FMT_RGB32, |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
191 bmp.Width, bmp.Height, out_pix_fmt, |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
192 SWS_POINT, NULL, NULL, NULL); |
23266
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
193 bf->data = malloc(bf->size); |
32028
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
194 dst[0] = bf->data; |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
195 sws_scale(sws, src, src_stride, 0, bmp.Height, dst, dst_stride); |
9e6fdede8ece
gui: remove direct usage of rgb2rgb interface, use swscale instead
ramiro
parents:
26457
diff
changeset
|
196 sws_freeContext(sws); |
23266
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
197 free(bmp.Image); |
6cd7f1c23d90
Reuse linux code for reading png images for windows Gui,
reimar
parents:
23091
diff
changeset
|
198 } |
23077 | 199 return bf; |
200 } | |
201 | |
202 /* frees all skin images */ | |
203 static void freeimages(skin_t *skin) | |
204 { | |
205 unsigned int i; | |
206 for (i=0; i<skin->imagecount; i++) | |
207 { | |
208 if(skin->images && skin->images[i]) | |
209 { | |
32537
8fa2f43cb760
Remove most of the NULL pointer check before free all over the code
cboesch
parents:
32028
diff
changeset
|
210 free(skin->images[i]->data); |
8fa2f43cb760
Remove most of the NULL pointer check before free all over the code
cboesch
parents:
32028
diff
changeset
|
211 free(skin->images[i]->name); |
23077 | 212 free(skin->images[i]); |
213 } | |
214 } | |
215 free(skin->images); | |
216 } | |
217 | |
33621
18b47d32b0d0
win32 gui: Mark debug function only used within the file as static.
diego
parents:
33620
diff
changeset
|
218 static void dumpwidgets(skin_t *skin) |
23077 | 219 { |
220 unsigned int i; | |
221 for (i=0; i<skin->widgetcount; i++) | |
34450 | 222 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "widget %p id %i\n", skin->widgets[i], skin->widgets[i]->id); |
23077 | 223 } |
224 | |
225 static int counttonextchar(const char *s1, char c) | |
226 { | |
227 unsigned int i; | |
228 for (i=0; i<strlen(s1); i++) | |
229 if(s1[i] == c) return i; | |
230 return 0; | |
231 } | |
232 | |
233 static char *findnextstring(char *temp, const char *desc, int *base) | |
234 { | |
235 int len = counttonextchar(*base + desc, ','); | |
236 memset(temp, 0, strlen(desc) + 1); | |
237 if(!len) len = strlen(desc); | |
238 memcpy(temp, *base + desc, len); | |
239 *base += (len+1); | |
240 return temp; | |
241 } | |
242 | |
243 static void freeskin(skin_t *skin) | |
244 { | |
245 unsigned int i; | |
32537
8fa2f43cb760
Remove most of the NULL pointer check before free all over the code
cboesch
parents:
32028
diff
changeset
|
246 |
33770 | 247 nfree(skin->skindir); |
23077 | 248 |
249 for (i=1; i<=skin->lastusedid; i++) | |
250 skin->removewidget(skin, i); | |
251 | |
33770 | 252 nfree(skin->widgets); |
23077 | 253 |
254 freeimages(skin); | |
255 for(i=0; i<skin->windowcount; i++) | |
256 { | |
33770 | 257 nfree(skin->windows[i]->name); |
23077 | 258 free(skin->windows[i]); |
259 } | |
260 | |
33770 | 261 nfree(skin->windows); |
23077 | 262 |
263 for (i=0; i<skin->fontcount; i++) | |
264 { | |
265 unsigned int x; | |
266 | |
33770 | 267 nfree(skin->fonts[i]->name); |
23077 | 268 |
269 for (x=0; x<skin->fonts[i]->charcount; x++) | |
33770 | 270 nfree(skin->fonts[i]->chars[x]); |
271 | |
272 nfree(skin->fonts[i]->chars); | |
23077 | 273 |
33770 | 274 nfree(skin->fonts[i]); |
23077 | 275 } |
33770 | 276 nfree(skin->fonts); |
34450 | 277 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN FREE] skin freed\n"); |
33770 | 278 nfree(skin); |
23077 | 279 } |
280 | |
281 static void removewidget(skin_t *skin, int id) | |
282 { | |
283 unsigned int i; | |
284 unsigned int pos=0; | |
285 widget **temp = calloc(skin->widgetcount - 1, sizeof(widget *)); | |
286 | |
287 for (i=0; i<skin->widgetcount; i++) | |
288 { | |
289 if(skin->widgets[i]->id == id) | |
290 { | |
32537
8fa2f43cb760
Remove most of the NULL pointer check before free all over the code
cboesch
parents:
32028
diff
changeset
|
291 free(skin->widgets[i]->label); |
33770 | 292 nfree(skin->widgets[i]); |
23077 | 293 } |
294 else | |
295 { | |
296 temp[pos] = skin->widgets[i]; | |
297 pos++; | |
298 } | |
299 } | |
300 if (pos != i) | |
301 { | |
302 (skin->widgetcount)--; | |
303 free(skin->widgets); | |
304 skin->widgets = temp; | |
34450 | 305 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "removed widget %i\n", id); |
23077 | 306 return; |
307 } | |
308 free(temp); | |
309 mp_msg(MSGT_GPLAYER, MSGL_ERR, "widget %i not found\n", id); | |
310 } | |
311 | |
312 static void addwidget(skin_t *skin, window *win, const char *desc) | |
313 { | |
314 widget *mywidget; | |
315 char *temp = calloc(1, strlen(desc) + 1); | |
316 (skin->widgetcount)++; | |
317 (skin->lastusedid)++; | |
318 skin->widgets = realloc(skin->widgets, sizeof(widget *) * skin->widgetcount); | |
319 mywidget = skin->widgets[(skin->widgetcount) - 1] = calloc(1, sizeof(widget)); | |
320 mywidget->id = skin->lastusedid; | |
321 mywidget->window = win->type; | |
322 /* parse and fill widget specific info */ | |
323 if(!strncmp(desc, "base", 4)) | |
324 { | |
325 int base = counttonextchar(desc, '=') + 1; | |
326 mywidget->type = tyBase; | |
327 mywidget->bitmap[0] = pngRead(skin, findnextstring(temp, desc, &base)); | |
328 mywidget->wx = mywidget->x = atoi(findnextstring(temp, desc, &base)); | |
329 mywidget->wy = mywidget->y = atoi(findnextstring(temp, desc, &base)); | |
330 mywidget->wwidth = mywidget->width = atoi(findnextstring(temp, desc, &base)); | |
331 mywidget->wheight = mywidget->height = atoi(findnextstring(temp, desc, &base)); | |
332 win->base = mywidget; | |
34450 | 333 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [ITEM] [BASE] %s %i %i %i %i\n", |
23077 | 334 (mywidget->bitmap[0]) ? mywidget->bitmap[0]->name : NULL, |
335 mywidget->x, mywidget->y, mywidget->width, mywidget->height); | |
336 } | |
337 else if(!strncmp(desc, "button", 6)) | |
338 { | |
339 int base = counttonextchar(desc, '=') + 1; | |
340 int i; | |
341 mywidget->type = tyButton; | |
342 mywidget->bitmap[0] = pngRead(skin, findnextstring(temp, desc, &base)); | |
343 mywidget->wx = mywidget->x = atoi(findnextstring(temp, desc, &base)); | |
344 mywidget->wy = mywidget->y = atoi(findnextstring(temp, desc, &base)); | |
345 mywidget->wwidth = mywidget->width = atoi(findnextstring(temp, desc, &base)); | |
346 mywidget->wheight = mywidget->height = atoi(findnextstring(temp, desc, &base)); | |
347 findnextstring(temp, desc, &base); | |
348 | |
349 /* Assign corresponding event to the widget */ | |
350 mywidget->msg = evNone; | |
351 for (i=0; i<evBoxs; i++) | |
352 { | |
353 if(!strcmp(temp, evNames[i].name)) | |
354 { | |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
355 // legacy |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
356 skin_legacy("evSetURL", temp); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
357 |
23077 | 358 mywidget->msg = evNames[i].msg; |
359 break; | |
360 } | |
361 } | |
362 | |
34450 | 363 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [ITEM] [BUTTON] %s %i %i %i %i msg %i\n", |
23077 | 364 (mywidget->bitmap[0]) ? mywidget->bitmap[0]->name : NULL, |
365 mywidget->x, mywidget->y, mywidget->width, mywidget->height, mywidget->msg); | |
366 } | |
36892 | 367 else if(!strncmp(desc, "hpotmeter", 9) || !strncmp(desc, "vpotmeter", 9) || /* legacy */ !strncmp(desc, "potmeter", 8)) |
23077 | 368 { |
369 int base = counttonextchar(desc, '=') + 1; | |
36896
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
370 int i; |
23077 | 371 /* hpotmeter = button, bwidth, bheight, phases, numphases, default, X, Y, width, height, message */ |
36892 | 372 if(!strncmp(desc, "vpotmeter", 9)) mywidget->type = tyVpotmeter; |
373 else mywidget->type = tyHpotmeter; | |
36896
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
374 if (*desc == 'p') |
36892 | 375 { |
36896
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
376 mywidget->bitmap[0] = NULL; |
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
377 mywidget->width = 0; |
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
378 mywidget->height = 0; |
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
379 |
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
380 // legacy |
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
381 skin_legacy("potmeter", "hpotmeter"); |
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
382 } |
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
383 else |
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
384 { |
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
385 mywidget->bitmap[0] = pngRead(skin, findnextstring(temp, desc, &base)); |
36893 | 386 mywidget->width = atoi(findnextstring(temp, desc, &base)); |
387 mywidget->height = atoi(findnextstring(temp, desc, &base)); | |
36892 | 388 } |
36896
737e2a3b9a5d
Change mapping of the deprecated potmeter in the Win32 GUI.
ib
parents:
36895
diff
changeset
|
389 mywidget->bitmap[1] = pngRead(skin, findnextstring(temp, desc, &base)); |
23077 | 390 mywidget->phases = atoi(findnextstring(temp, desc, &base)); |
391 mywidget->value = atof(findnextstring(temp, desc, &base)); | |
392 mywidget->x = mywidget->wx = atoi(findnextstring(temp, desc, &base)); | |
393 mywidget->y = mywidget->wy = atoi(findnextstring(temp, desc, &base)); | |
394 mywidget->wwidth = atoi(findnextstring(temp, desc, &base)); | |
395 mywidget->wheight = atoi(findnextstring(temp, desc, &base)); | |
36895 | 396 if (mywidget->bitmap[0] == NULL || mywidget->width == 0 || mywidget->height == 0) |
397 { | |
398 mywidget->bitmap[0] = mywidget->bitmap[1]; | |
399 mywidget->width = mywidget->wwidth; | |
400 mywidget->height = mywidget->wheight; | |
401 } | |
23077 | 402 findnextstring(temp, desc, &base); |
403 mywidget->msg = evNone; | |
404 for (i=0; i<evBoxs; i++) | |
405 { | |
406 if(!strcmp(temp, evNames[i].name)) | |
407 { | |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
408 // legacy |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
409 skin_legacy("evSetURL", temp); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
410 |
23077 | 411 mywidget->msg = evNames[i].msg; |
412 break; | |
413 } | |
414 } | |
34450 | 415 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [ITEM] %s %s %i %i %s %i %f %i %i %i %i msg %i\n", |
23077 | 416 (mywidget->type == tyHpotmeter) ? "[HPOTMETER]" : "[VPOTMETER]", |
417 (mywidget->bitmap[0]) ? mywidget->bitmap[0]->name : NULL, | |
418 mywidget->width, mywidget->height, | |
419 (mywidget->bitmap[1]) ? mywidget->bitmap[1]->name : NULL, | |
420 mywidget->phases, mywidget->value, | |
421 mywidget->wx, mywidget->wy, mywidget->wwidth, mywidget->wwidth, | |
422 mywidget->msg); | |
423 } | |
36920 | 424 else if(!strncmp(desc, "pimage", 6)) |
23077 | 425 { |
426 int base = counttonextchar(desc, '=') + 1; | |
427 int i; | |
36920 | 428 /* pimage = phases, numphases, default, X, Y, width, height, message */ |
429 mywidget->type = tyPimage; | |
23077 | 430 mywidget->bitmap[0] = pngRead(skin, findnextstring(temp, desc, &base)); |
431 mywidget->phases = atoi(findnextstring(temp, desc, &base)); | |
432 mywidget->value = atof(findnextstring(temp, desc, &base)); | |
433 mywidget->wx = mywidget->x = atoi(findnextstring(temp, desc, &base)); | |
434 mywidget->wy = mywidget->y = atoi(findnextstring(temp, desc, &base)); | |
435 mywidget->wwidth = mywidget->width = atoi(findnextstring(temp, desc, &base)); | |
436 mywidget->wheight = mywidget->height = atoi(findnextstring(temp, desc, &base)); | |
437 findnextstring(temp, desc, &base); | |
438 mywidget->msg = evNone; | |
439 for (i=0; i<evBoxs; i++) | |
440 { | |
441 if(!strcmp(temp, evNames[i].name)) | |
442 { | |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
443 // legacy |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
444 skin_legacy("evSetURL", temp); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
445 |
23077 | 446 mywidget->msg=evNames[i].msg; |
447 break; | |
448 } | |
449 } | |
36920 | 450 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [ITEM] [PIMAGE] %s %i %i %i %f %i %i msg %i\n", |
23077 | 451 (mywidget->bitmap[0]) ? mywidget->bitmap[0]->name : NULL, |
452 mywidget->width, mywidget->height, | |
453 mywidget->phases, mywidget->value, | |
454 mywidget->x, mywidget->y, | |
455 mywidget->msg); | |
456 } | |
457 else if(!strncmp(desc, "menu", 4)) | |
458 { | |
459 int base = counttonextchar(desc, '=') + 1; | |
460 int i; | |
461 mywidget->type = tyMenu; | |
462 mywidget->wx=atoi(findnextstring(temp, desc, &base)); | |
463 mywidget->x=0; | |
464 mywidget->wy=mywidget->y=atoi(findnextstring(temp, desc, &base)); | |
465 mywidget->wwidth=mywidget->width=atoi(findnextstring(temp, desc, &base)); | |
466 mywidget->wheight=mywidget->height=atoi(findnextstring(temp, desc, &base)); | |
467 findnextstring(temp, desc, &base); | |
468 mywidget->msg = evNone; | |
469 for (i=0; i<evBoxs; i++) | |
470 { | |
471 if(!strcmp(temp, evNames[i].name)) | |
472 { | |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
473 // legacy |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
474 skin_legacy("evSetURL", temp); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
475 |
23077 | 476 mywidget->msg = evNames[i].msg; |
477 break; | |
478 } | |
479 } | |
34450 | 480 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [ITEM] [MENU] %i %i %i %i msg %i\n", |
23077 | 481 mywidget->x, mywidget->y, mywidget->width, mywidget->height, mywidget->msg); |
482 } | |
483 else if(!strncmp(desc, "selected", 8)) | |
484 { | |
36840 | 485 win->base->bitmap[1] = pngRead(skin, desc + 9); |
34450 | 486 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [ITEM] [BASE] added image %s\n", win->base->bitmap[1]->name); |
23077 | 487 } |
488 else if(!strncmp(desc, "slabel",6)) | |
489 { | |
490 int base = counttonextchar(desc, '=') + 1; | |
491 unsigned int i; | |
492 mywidget->type = tySlabel; | |
493 mywidget->wx = mywidget->x = atoi(findnextstring(temp, desc, &base)); | |
494 mywidget->wy = mywidget->y = atoi(findnextstring(temp, desc, &base)); | |
495 findnextstring(temp, desc, &base); | |
496 mywidget->font = NULL; | |
497 for (i=0; i<skin->fontcount; i++) | |
498 { | |
499 if(!strcmp(temp, skin->fonts[i]->name)) | |
500 { | |
501 mywidget->font = skin->fonts[i]; | |
502 break; | |
503 } | |
504 } | |
505 mywidget->label = strdup(findnextstring(temp, desc, &base)); | |
34450 | 506 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [ITEM] [SLABEL] %i %i %s %s\n", |
23077 | 507 mywidget->x, mywidget->y, mywidget->font->name, mywidget->label); |
508 } | |
509 else if(!strncmp(desc, "dlabel", 6)) | |
510 { | |
511 int base = counttonextchar(desc, '=') + 1; | |
512 unsigned int i; | |
513 mywidget->type = tyDlabel; | |
514 mywidget->wx = mywidget->x = atoi(findnextstring(temp, desc, &base)); | |
515 mywidget->wy = mywidget->y = atoi(findnextstring(temp, desc, &base)); | |
516 mywidget->length = atoi(findnextstring(temp, desc, &base)); | |
517 mywidget->align = atoi(findnextstring(temp, desc, &base)); | |
518 findnextstring(temp, desc, &base); | |
519 mywidget->font = NULL; | |
520 for (i=0; i<skin->fontcount; i++) | |
521 { | |
522 if(!strcmp(temp, skin->fonts[i]->name)) | |
523 { | |
524 mywidget->font=skin->fonts[i]; | |
525 break; | |
526 } | |
527 } | |
528 mywidget->label=strdup(findnextstring(temp, desc, &base)); | |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
529 |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
530 // legacy |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
531 skin_legacy("$l", mywidget->label); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
532 |
34450 | 533 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [ITEM] [DLABEL] %i %i %i %i %s \"%s\"\n", |
23077 | 534 mywidget->x, mywidget->y, mywidget->length, mywidget->align, mywidget->font->name, mywidget->label); |
535 } | |
536 free(temp); | |
537 } | |
538 | |
539 static void loadfonts(skin_t* skin) | |
540 { | |
541 unsigned int x; | |
542 for (x=0; x<skin->fontcount; x++) | |
543 { | |
544 FILE *fp; | |
545 char *filename; | |
546 char *tmp = calloc(1, MAX_LINESIZE); | |
547 char *desc = calloc(1, MAX_LINESIZE); | |
548 filename = calloc(1, strlen(skin->skindir) + strlen(skin->fonts[x]->name) + 6); | |
34092
dbf5042ab255
Don't use the Windows style path separator character in Win32 GUI.
ib
parents:
33784
diff
changeset
|
549 sprintf(filename, "%s/%s.fnt", skin->skindir, skin->fonts[x]->name); |
23077 | 550 if(!(fp = fopen(filename,"rb"))) |
551 { | |
552 mp_msg(MSGT_GPLAYER, MSGL_ERR, "[FONT LOAD] Font not found \"%s\"\n", skin->fonts[x]->name); | |
33783 | 553 free(tmp); |
554 free(desc); | |
555 free(filename); | |
23077 | 556 return; |
557 } | |
558 while(!feof(fp)) | |
559 { | |
560 int pos = 0; | |
561 unsigned int i; | |
562 fgets(tmp, MAX_LINESIZE, fp); | |
563 memset(desc, 0, MAX_LINESIZE); | |
564 for (i=0; i<strlen(tmp); i++) | |
565 { | |
566 /* remove spaces and linebreaks */ | |
567 if((tmp[i] == ' ') || (tmp[i] == '\n') || (tmp[i] == '\r')) continue; | |
568 /* remove comments */ | |
569 if((tmp[i] == ';') && ((i < 1) || (tmp[i-1] != '\"'))) | |
570 { | |
34450 | 571 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[FONT LOAD] Comment: %s", tmp + i + 1); |
23077 | 572 break; |
573 } | |
574 desc[pos] = tmp[i]; | |
575 pos++; | |
576 } | |
577 if(!strlen(desc)) continue; | |
578 /* now we have "readable" output -> parse it */ | |
579 if(!strncmp(desc, "image", 5)) | |
580 { | |
581 skin->fonts[x]->image = pngRead(skin, desc + 6); | |
34450 | 582 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[FONT] [IMAGE] \"%s\"\n", desc + 6); |
23077 | 583 } |
584 else | |
585 { | |
586 int base = 4; | |
587 if(*desc != '"') break; | |
588 if(*(desc + 1) == 0) break; | |
589 (skin->fonts[x]->charcount)++; | |
590 skin->fonts[x]->chars = realloc(skin->fonts[x]->chars, sizeof(char_t *) *skin->fonts[x]->charcount); | |
591 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]=calloc(1, sizeof(char_t)); | |
592 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->c = ((*(desc + 1) == '"') && (*(desc + 2) != '"')) ? ' ': *(desc + 1); | |
593 if((*(desc + 1) == '"') && (*(desc + 2) != '"')) base = 3; | |
594 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->x = atoi(findnextstring(tmp, desc, &base)); | |
595 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->y = atoi(findnextstring(tmp, desc, &base)); | |
596 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->width = atoi(findnextstring(tmp, desc, &base)); | |
597 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->height = atoi(findnextstring(tmp, desc, &base)); | |
34450 | 598 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[FONT] [CHAR] %c %i %i %i %i\n", |
23077 | 599 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->c, |
600 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->x, | |
601 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->y, | |
602 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->width, | |
603 skin->fonts[x]->chars[skin->fonts[x]->charcount - 1]->height); | |
604 } | |
605 } | |
606 free(desc); | |
607 free(filename); | |
608 free(tmp); | |
609 fclose(fp); | |
610 } | |
611 } | |
612 | |
613 skin_t* loadskin(char* skindir, int desktopbpp) | |
614 { | |
615 FILE *fp; | |
35501 | 616 int reachedendofwindow = FALSE; |
23077 | 617 skin_t *skin = calloc(1, sizeof(skin_t)); |
618 char *filename; | |
619 char *tmp = calloc(1, MAX_LINESIZE); | |
620 char *desc = calloc(1, MAX_LINESIZE); | |
621 window* mywindow = NULL; | |
622 | |
36890 | 623 linenumber = 0; |
624 | |
23077 | 625 /* setup funcs */ |
626 skin->freeskin = freeskin; | |
627 skin->pngRead = pngRead; | |
628 skin->addwidget = addwidget; | |
629 skin->removewidget = removewidget; | |
630 skin->geteventname = geteventname; | |
631 skin->desktopbpp = desktopbpp; | |
632 skin->skindir = strdup(skindir); | |
633 | |
634 filename = calloc(1, strlen(skin->skindir) + strlen("skin") + 2); | |
34092
dbf5042ab255
Don't use the Windows style path separator character in Win32 GUI.
ib
parents:
33784
diff
changeset
|
635 sprintf(filename, "%s/skin", skin->skindir); |
23077 | 636 if(!(fp = fopen(filename, "rb"))) |
637 { | |
638 mp_msg(MSGT_GPLAYER, MSGL_FATAL, "[SKIN LOAD] Skin \"%s\" not found\n", skindir); | |
639 skin->freeskin(skin); | |
33783 | 640 free(tmp); |
641 free(desc); | |
642 free(filename); | |
23077 | 643 return NULL; |
644 } | |
645 | |
646 while(!feof(fp)) | |
647 { | |
648 int pos = 0; | |
649 unsigned int i; | |
35501 | 650 int insidequote = FALSE; |
23077 | 651 fgets(tmp, MAX_LINESIZE, fp); |
652 linenumber++; | |
653 memset(desc, 0, MAX_LINESIZE); | |
654 for (i=0; i<strlen(tmp); i++) | |
655 { | |
35501 | 656 if((tmp[i] == '"') && !insidequote) { insidequote=TRUE; continue; } |
657 else if((tmp[i] == '"') && insidequote) { insidequote=FALSE ; continue; } | |
23077 | 658 /* remove spaces and linebreaks */ |
659 if((!insidequote && (tmp[i] == ' ')) || (tmp[i] == '\n') || (tmp[i] == '\r')) continue; | |
660 /* remove comments */ | |
661 else if(tmp[i] == ';') | |
662 { | |
34450 | 663 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN LOAD] Comment: %s", tmp + i + 1); |
23077 | 664 break; |
665 } | |
666 desc[pos] = tmp[i]; | |
667 pos++; | |
668 } | |
669 | |
670 if(!strlen(desc)) continue; | |
671 /* now we have "readable" output -> parse it */ | |
672 /* parse window specific info */ | |
673 if(!strncmp(desc, "section", 7)) | |
674 { | |
34450 | 675 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [SECTION] \"%s\"\n", desc + 8); |
23077 | 676 } |
677 else if(!strncmp(desc, "window", 6)) | |
678 { | |
34450 | 679 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [WINDOW] \"%s\"\n", desc + 7); |
35501 | 680 reachedendofwindow = FALSE; |
23077 | 681 (skin->windowcount)++; |
682 skin->windows = realloc(skin->windows, sizeof(window *) * skin->windowcount); | |
683 mywindow = skin->windows[(skin->windowcount) - 1] = calloc(1, sizeof(window)); | |
684 mywindow->name = strdup(desc + 7); | |
685 if(!strncmp(desc + 7, "main", 4)) mywindow->type = wiMain; | |
36885 | 686 else if(!strncmp(desc+7, "video", 5) || /* legacy */ !strncmp(desc+7, "sub", 3)) |
23077 | 687 { |
34697 | 688 mywindow->type = wiVideo; |
35501 | 689 mywindow->decoration = TRUE; |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
690 // legacy |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
691 if (desc[7] == 's') skin_legacy("sub", "video"); |
23077 | 692 } |
693 else if(!strncmp(desc + 7, "menu", 4)) mywindow->type = wiMenu; | |
694 else if(!strncmp(desc + 7, "playbar", 7)) mywindow->type = wiPlaybar; | |
695 else mp_msg(MSGT_GPLAYER, MSGL_V, "[SKIN] warning found unknown windowtype"); | |
696 } | |
697 else if(!strncmp(desc, "decoration", 10) && !strncmp(desc + 11, "enable", 6)) | |
698 { | |
35501 | 699 mywindow->decoration = TRUE; |
34450 | 700 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [DECORATION] enabled decoration for window \"%s\"\n", mywindow->name); |
23077 | 701 } |
702 else if(!strncmp(desc, "background", 10)) | |
703 { | |
704 int base = counttonextchar(desc, '=') + 1; | |
705 char temp[MAX_LINESIZE]; | |
706 mywindow->backgroundcolor[0] = atoi(findnextstring(temp, desc, &base)); | |
707 mywindow->backgroundcolor[1] = atoi(findnextstring(temp, desc, &base)); | |
708 mywindow->backgroundcolor[2] = atoi(findnextstring(temp, desc, &base)); | |
34450 | 709 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [BACKGROUND] window \"%s\" has backgroundcolor (%i,%i,%i)\n", mywindow->name, |
23077 | 710 mywindow->backgroundcolor[0], |
711 mywindow->backgroundcolor[1], | |
712 mywindow->backgroundcolor[2]); | |
713 } | |
714 else if(!strncmp(desc, "end", 3)) | |
715 { | |
716 if(reachedendofwindow) | |
717 { | |
34450 | 718 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [END] of section\n"); |
23077 | 719 } |
720 else | |
721 { | |
35501 | 722 reachedendofwindow = TRUE; |
34450 | 723 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [END] of window \"%s\"\n", mywindow->name); |
23077 | 724 } |
725 } | |
726 else if(!strncmp(desc, "font", 4)) | |
727 { | |
728 int id = 0; | |
729 char temp[MAX_LINESIZE]; | |
36888 | 730 int base = counttonextchar(desc, '=') + 1; |
731 findnextstring(temp, desc, &base); | |
732 id = skin->fontcount; | |
733 (skin->fontcount)++; | |
734 skin->fonts = realloc(skin->fonts, sizeof(font_t *) * skin->fontcount); | |
735 skin->fonts[id]=calloc(1, sizeof(font_t)); | |
736 skin->fonts[id]->name = strdup(temp); | |
36891
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
737 |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
738 // legacy |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
739 skin_legacy("fontid", desc); |
c5ee0fc2ec75
Print an information on deprecated skin config file entries.
ib
parents:
36890
diff
changeset
|
740 |
36887 | 741 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[SKIN] [FONT] name \"%s\"\n", skin->fonts[id]->name); |
23077 | 742 } |
743 else | |
744 skin->addwidget(skin, mywindow, desc); | |
745 } | |
746 | |
747 free(desc); | |
748 free(filename); | |
749 free(tmp); | |
750 fclose(fp); | |
751 loadfonts(skin); | |
752 mp_msg(MSGT_GPLAYER, MSGL_V, "[SKIN LOAD] loaded skin \"%s\"\n", skin->skindir); | |
34450 | 753 dumpwidgets(skin); |
23077 | 754 return skin; |
755 } |