Mercurial > mplayer.hg
annotate gui/util/list.h @ 37193:82a15e343f94
dmo: print messages to stderr instead of stdout.
author | reimar |
---|---|
date | Sat, 27 Sep 2014 18:44:47 +0000 |
parents | b03e0fd957fd |
children |
rev | line source |
---|---|
33741 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer 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 * MPlayer 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 along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
18 | |
19 #ifndef MPLAYER_GUI_LIST_H | |
20 #define MPLAYER_GUI_LIST_H | |
21 | |
34663 | 22 /// listMgr() commands |
23 enum { | |
34667 | 24 PLAYLIST_GET, |
34681 | 25 PLAYLIST_ITEM_APPEND, |
34663 | 26 PLAYLIST_ITEM_INSERT, |
35460 | 27 PLAYLIST_ITEM_FIND, |
34663 | 28 PLAYLIST_ITEM_SET_CURR, |
29 PLAYLIST_ITEM_GET_CURR, | |
35458 | 30 PLAYLIST_ITEM_GET_POS, |
34663 | 31 PLAYLIST_ITEM_GET_PREV, |
32 PLAYLIST_ITEM_GET_NEXT, | |
35962 | 33 PLAYLIST_ITEM_GET_LAST, |
34663 | 34 PLAYLIST_ITEM_DEL_CURR, |
35 PLAYLIST_DELETE, | |
34668 | 36 URLLIST_GET, |
34663 | 37 URLLIST_ITEM_ADD, |
38 URLLIST_DELETE | |
39 }; | |
33742
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
40 |
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
41 typedef struct plItem { |
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
42 char *path; |
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
43 char *name; |
34612 | 44 struct plItem *prev, *next; |
33742
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
45 } plItem; |
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
46 |
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
47 typedef struct urlItem { |
34612 | 48 char *url; |
33742
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
49 struct urlItem *next; |
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
50 } urlItem; |
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
51 |
35729 | 52 /// @name List manager (playlist, URL list) |
34610 | 53 void *listMgr(int cmd, void *data); |
54 | |
37065 | 55 /// @name String list operations |
34610 | 56 //@{ |
37067 | 57 char **listDup(const char *const *list); |
37066 | 58 void listFree(char ***list); |
34610 | 59 void listRepl(char ***list, const char *search, const char *replace); |
60 void listSet(char ***list, const char *entry); | |
61 //@} | |
33741 | 62 |
35729 | 63 /// @name High-level list operations |
35376 | 64 //@{ |
65 int add_to_gui_playlist(const char *what, int how); | |
66 //@} | |
67 | |
33741 | 68 #endif /* MPLAYER_GUI_LIST_H */ |