make omnplay_selected_idxs_playlist public function
[omnplay] / src / omnplay.h
1 /*
2 * omnplay.h -- GTK+ 2 omnplay
3 * Copyright (C) 2011 Maksym Veremeyenko <verem@m1stereo.tv>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20 #ifndef OMNPLAY_H
21 #define OMNPLAY_H
22
23 #include <pthread.h>
24
25 #ifdef __cplusplus
26 extern "C"
27 {
28 #endif /* __cplusplus */
29
30 typedef enum control_buttons
31 {
32 BUTTON_PLAYLIST_ITEM_ADD = 1,
33 BUTTON_PLAYLIST_ITEM_DEL,
34 BUTTON_PLAYLIST_ITEM_EDIT,
35
36 BUTTON_PLAYLIST_LOAD,
37 BUTTON_PLAYLIST_SAVE,
38
39 BUTTON_PLAYLIST_BLOCK_SINGLE,
40 BUTTON_PLAYLIST_BLOCK_LOOP,
41
42 BUTTON_PLAYLIST_ITEM_UP,
43 BUTTON_PLAYLIST_ITEM_DOWN,
44
45 BUTTON_PLAYER_CUE,
46 BUTTON_PLAYER_PLAY,
47 BUTTON_PLAYER_PAUSE,
48 BUTTON_PLAYER_STOP,
49
50 BUTTON_LIBRARY_ADD,
51 BUTTON_LIBRARY_REFRESH,
52
53 BUTTON_LIBRARY_FIND,
54 BUTTON_LIBRARY_FIND_NEXT,
55
56 BUTTON_LAST
57 } control_buttons_t;
58
59 #define OMNPLAY_PLAYLIST_BLOCK_BEGIN 1
60 #define OMNPLAY_PLAYLIST_BLOCK_BODY 0
61 #define OMNPLAY_PLAYLIST_BLOCK_END 2
62 #define OMNPLAY_PLAYLIST_BLOCK_LOOP 4
63
64 typedef enum playlist_item_type
65 {
66 // 1
67 OMNPLAY_PLAYLIST_ITEM_BLOCK_BEGIN = OMNPLAY_PLAYLIST_BLOCK_BEGIN,
68 // 0
69 OMNPLAY_PLAYLIST_ITEM_BLOCK_BODY = OMNPLAY_PLAYLIST_BLOCK_BODY,
70 // 2
71 OMNPLAY_PLAYLIST_ITEM_BLOCK_END = OMNPLAY_PLAYLIST_BLOCK_END,
72 // 3
73 OMNPLAY_PLAYLIST_ITEM_BLOCK_SINGLE = OMNPLAY_PLAYLIST_BLOCK_BEGIN |
74 OMNPLAY_PLAYLIST_BLOCK_BODY |
75 OMNPLAY_PLAYLIST_BLOCK_END,
76 // 5
77 OMNPLAY_PLAYLIST_ITEM_LOOP_BEGIN = OMNPLAY_PLAYLIST_BLOCK_BEGIN |
78 OMNPLAY_PLAYLIST_BLOCK_LOOP,
79 // 4
80 OMNPLAY_PLAYLIST_ITEM_LOOP_BODY = OMNPLAY_PLAYLIST_BLOCK_BODY |
81 OMNPLAY_PLAYLIST_BLOCK_LOOP,
82 // 6
83 OMNPLAY_PLAYLIST_ITEM_LOOP_END = OMNPLAY_PLAYLIST_BLOCK_END |
84 OMNPLAY_PLAYLIST_BLOCK_LOOP,
85 // 7
86 OMNPLAY_PLAYLIST_ITEM_LOOP_SINGLE = OMNPLAY_PLAYLIST_BLOCK_BEGIN |
87 OMNPLAY_PLAYLIST_BLOCK_BODY |
88 OMNPLAY_PLAYLIST_BLOCK_END |
89 OMNPLAY_PLAYLIST_BLOCK_LOOP,
90 } playlist_item_type_t;
91
92 #define MAX_PLAYLIST_ITEMS 1024
93 #define MAX_LIBRARY_ITEMS 10240
94 #define PLAYLIST_ITEM_ERROR_LIB 1
95 #define PLAYLIST_ITEM_ERROR_CUE 2
96
97 typedef struct playlist_item
98 {
99 char id[PATH_MAX];
100 char title[PATH_MAX];
101 int in;
102 int dur;
103 int player;
104 playlist_item_type_t type;
105 int omn_idx;
106 int omn_offset;
107 int error;
108 int del;
109 } playlist_item_t;
110
111 #define MAX_PLAYERS 4
112
113 struct omnplay_instance;
114
115 typedef struct omnplay_player
116 {
117 int idx;
118 char name[PATH_MAX];
119 char host[PATH_MAX];
120 void* handle;
121 GThread* thread;
122 GtkWidget *label_status, *label_state, *label_tc_cur, *label_tc_rem, *label_clip;
123 struct omnplay_instance *app;
124 int playlist_start;
125 int playlist_length;
126 } omnplay_player_t;
127
128 typedef struct omnplay_instance
129 {
130 GtkWidget *window;
131 GtkWidget *playlist_grid;
132 GtkWidget *library_grid;
133 GtkWidget *buttons[BUTTON_LAST + 1];
134 GtkWidget *status_label;
135 struct
136 {
137 omnplay_player_t item[MAX_PLAYERS];
138 int count;
139 char path[PATH_MAX];
140 pthread_mutex_t lock;
141 } players;
142 int f_exit;
143 struct
144 {
145 playlist_item_t item[MAX_PLAYLIST_ITEMS];
146 int count;
147 int ver_curr;
148 int ver_prev;
149 pthread_mutex_t lock;
150 char* path;
151 GdkPixbuf *block_icons[8];
152 } playlist;
153 struct
154 {
155 playlist_item_t item[MAX_LIBRARY_ITEMS];
156 int count;
157 char filename[PATH_MAX];
158 char whois[PATH_MAX];
159 pthread_mutex_t lock;
160 GThread* refresh_thread;
161 GtkWidget *search;
162 } library;
163 struct
164 {
165 playlist_item_t item[MAX_LIBRARY_ITEMS];
166 int count;
167 } clipboard;
168 } omnplay_instance_t;
169
170 omnplay_instance_t* omnplay_create(int argc, char** argv);
171 void omnplay_init(omnplay_instance_t* app);
172 void omnplay_release(omnplay_instance_t* app);
173 void omnplay_destroy(omnplay_instance_t* app);
174 void omnplay_playlist_load(omnplay_instance_t* app);
175 void omnplay_playlist_save(omnplay_instance_t* app);
176 void omnplay_playlist_draw(omnplay_instance_t* app);
177 void omnplay_playlist_draw_item(omnplay_instance_t* app, int idx);
178 void omnplay_playlist_draw_item_rem(omnplay_instance_t* app, int idx, char* rem);
179 void omnplay_library_load(omnplay_instance_t* app);
180 void omnplay_library_save(omnplay_instance_t* app);
181 void omnplay_library_refresh(omnplay_instance_t* app);
182 void omnplay_library_draw(omnplay_instance_t* app);
183 typedef void (*omnplay_get_content_cb_proc)(omnplay_instance_t* app, playlist_item_t *items, void* data);
184 int omnplay_get_content(omnplay_instance_t* app, playlist_item_t *items, int limit,
185 omnplay_get_content_cb_proc proc, void* data);
186 int omnplay_whois_list(omnplay_instance_t* app, playlist_item_t *items, int* plimit);
187 int omnplay_library_load_file(playlist_item_t* items, int *pcount, char* filename);
188 playlist_item_t* omnplay_library_find(omnplay_instance_t* app, char* id);
189 int omnplay_library_normalize_item(omnplay_instance_t* app, playlist_item_t* item);
190 playlist_item_t* omnplay_library_get_selected(omnplay_instance_t* app, int *count);
191 void omnplay_playlist_normalize(omnplay_instance_t* app);
192 void omnplay_library_search(omnplay_instance_t* app, int next);
193 void omnplay_set_status(omnplay_instance_t* app, char* str);
194 int* omnplay_selected_idxs_playlist(omnplay_instance_t* app);
195
196 #ifdef __cplusplus
197 };
198 #endif /* __cplusplus */
199
200 #endif /* OMNPLAY_H */