annotate gui/skin/cut.c @ 32912:ca4d3fa55e43

Adjust the listItems structure. Add 'main' to members referring to the main window, switch bar with menu members and adjust the spelling of 'MenuItems' to the other 'Items'.
author ib
date Wed, 02 Mar 2011 16:05:37 +0000
parents f9d70de26708
children 4905f5a87357
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26458
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
1 /*
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
2 * This file is part of MPlayer.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
3 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
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: 23077
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
7 * (at your option) any later version.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
8 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
12 * GNU General Public License for more details.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
13 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
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: 23077
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 23077
diff changeset
17 */
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
18
32868
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
19 #include <stdlib.h>
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
20 #include <string.h>
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
21
30529
6ef41a766a74 GUI: #include associated .h files in .c files.
diego
parents: 29263
diff changeset
22 #include "cut.h"
6ef41a766a74 GUI: #include associated .h files in .c files.
diego
parents: 29263
diff changeset
23
32868
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
24 void cutItemString(char *in, char *out, char sep, int num, size_t maxout)
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
25 {
32868
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
26 int n;
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
27 unsigned int i, c;
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
28
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
29 for (c = 0, n = 0, i = 0; i < strlen(in); i++) {
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
30 if (in[i] == sep)
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
31 n++;
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
32 if (n >= num && in[i] != sep && c + 1 < maxout)
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
33 out[c++] = in[i];
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
34 if (n >= num && in[i + 1] == sep)
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
35 break;
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
36 }
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
37
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
38 if (c < maxout)
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
39 out[c] = 0;
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
40 }
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
41
32868
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
42 int cutItemToInt(char *in, char sep, int num)
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
43 {
32868
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
44 char tmp[64];
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
45
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
46 cutItem(in, tmp, sep, num);
f9d70de26708 Cosmetic: Format to MPlayer coding style.
ib
parents: 32840
diff changeset
47 return atoi(tmp);
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
48 }