4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include "arraylist.h"
27 #include "assetpopup.inc"
30 #include "audiodevice.inc"
31 #include "awindow.inc"
32 #include "awindowgui.inc"
33 #include "clippopup.inc"
35 #include "effectlist.inc"
36 #include "folderlistmenu.inc"
38 #include "labeledit.inc"
39 #include "labelpopup.inc"
41 #include "indexable.inc"
42 #include "mwindow.inc"
43 #include "newfolder.inc"
44 #include "pluginserver.inc"
45 #include "renderengine.inc"
46 #include "samples.inc"
49 class AssetPicon : public BC_ListBoxItem
52 AssetPicon(MWindow *mwindow, AWindowGUI *gui, Indexable *indexable);
53 AssetPicon(MWindow *mwindow, AWindowGUI *gui, EDL *edl);
54 AssetPicon(MWindow *mwindow, AWindowGUI *gui, PluginServer *plugin);
55 AssetPicon(MWindow *mwindow, AWindowGUI *gui, Label *plugin);
56 AssetPicon(MWindow *mwindow, AWindowGUI *gui, int folder, int persist);
57 virtual ~AssetPicon();
59 void create_objects();
61 static void draw_hue_bar(VFrame *frame, double t);
62 static void draw_wave(VFrame *frame, double *dp, int len,
63 int base_color, int line_color);
64 void open_render_engine(EDL *edl, int is_audio);
65 void close_render_engine();
66 void render_video(int64_t pos, VFrame *vfrm);
67 void render_audio(int64_t pos, Samples **samples, int len);
74 // ID of thing pointed to
77 // Check ID first. Update these next before dereferencing
90 RenderEngine *render_engine;
93 typedef int16_t vicon_audio_t;
95 class AssetVIconAudio : public Thread
98 AssetVIconAudio(AWindowGUI *gui);
102 void start(AssetVIcon *vicon);
112 class AssetVIcon : public VIcon {
119 int64_t set_seq_no(int64_t no);
126 AssetVIcon(AssetPicon *picon, int w, int h, double framerate, int64_t length);
130 class AWindowRemovePlugin;
132 class AWindowRemovePluginGUI : public BC_Window {
135 AWindowRemovePlugin *thread;
136 PluginServer *plugin;
137 ArrayList<BC_ListBoxItem*> plugin_list;
142 void create_objects();
144 AWindowRemovePluginGUI(AWindow *awindow, AWindowRemovePlugin *thread,
145 int x, int y, PluginServer *plugin);
146 ~AWindowRemovePluginGUI();
149 class AWindowRemovePlugin : public BC_DialogThread {
152 PluginServer *plugin;
153 BC_Window* new_gui();
154 void handle_close_event(int result);
155 int remove_plugin(PluginServer *plugin, ArrayList<BC_ListBoxItem*> &folder);
157 AWindowRemovePlugin(AWindow *awindow, PluginServer *plugin);
158 ~AWindowRemovePlugin();
161 class AWindowGUI : public BC_Window
164 AWindowGUI(MWindow *mwindow, AWindow *awindow);
167 void create_objects();
168 int resize_event(int w, int h);
169 int translation_event();
171 int keypress_event();
172 void async_update_assets(); // Sends update asset event
173 void update_effects();
174 void sort_assets(int use_mtime);
176 void reposition_objects();
177 static int folder_number(const char *name);
178 // Call back for MWindow entry point
181 // Collect items into the drag vectors of MainSession
182 void collect_assets();
183 void create_persistent_folder(ArrayList<BC_ListBoxItem*> *output,
188 void create_label_folder();
189 void copy_picons(ArrayList<BC_ListBoxItem*> *dst,
190 ArrayList<BC_ListBoxItem*> *src, int folder);
191 void sort_picons(ArrayList<BC_ListBoxItem*> *src, int use_mtime=0);
192 // Return the selected asset in asset_list
193 Indexable* selected_asset();
194 PluginServer* selected_plugin();
195 AssetPicon* selected_folder();
196 bool protected_pixmap(BC_Pixmap *pixmap);
197 int save_defaults(BC_Hash *defaults);
198 int load_defaults(BC_Hash *defaults);
199 void start_vicon_drawing();
200 void stop_vicon_drawing();
201 void update_picon(Indexable *indexable);
203 VFrame *get_picon(const char *name, const char *plugin_icons);
204 VFrame *get_picon(const char *name);
205 void resource_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn, int idx);
206 void theme_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn);
207 void plugin_icon(VFrame *&vfrm, BC_Pixmap *&icon, const char *fn, unsigned char *png);
212 AWindowAssets *asset_list;
213 AWindowFolders *folder_list;
214 AWindowDivider *divider;
215 AWindowSearchText *search_text;
217 // Store data to speed up responses
218 // Persistant data for listboxes
219 // All assets in current EDL
220 ArrayList<BC_ListBoxItem*> assets;
221 ArrayList<BC_ListBoxItem*> folders;
222 ArrayList<BC_ListBoxItem*> aeffects;
223 ArrayList<BC_ListBoxItem*> veffects;
224 ArrayList<BC_ListBoxItem*> atransitions;
225 ArrayList<BC_ListBoxItem*> vtransitions;
226 ArrayList<BC_ListBoxItem*> labellist;
228 // Currently displayed data for listboxes
229 // Currently displayed assets + comments
230 ArrayList<BC_ListBoxItem*> displayed_assets[2];
231 const char *asset_titles[ASSET_COLUMNS];
232 int displayed_folder;
236 BC_Pixmap *aeffect_folder_icon; VFrame *aeffect_folder_vframe;
237 BC_Pixmap *atransition_folder_icon; VFrame *atransition_folder_vframe;
238 BC_Pixmap *clip_folder_icon; VFrame *clip_folder_vframe;
239 BC_Pixmap *label_folder_icon; VFrame *label_folder_vframe;
240 BC_Pixmap *media_folder_icon; VFrame *media_folder_vframe;
241 BC_Pixmap *proxy_folder_icon; VFrame *proxy_folder_vframe;
242 BC_Pixmap *veffect_folder_icon; VFrame *veffect_folder_vframe;
243 BC_Pixmap *vtransition_folder_icon; VFrame *vtransition_folder_vframe;
244 BC_Pixmap *folder_icons[AWINDOW_FOLDERS];
246 BC_Pixmap *folder_icon; VFrame *folder_vframe;
247 BC_Pixmap *file_icon; VFrame *file_vframe;
248 BC_Pixmap *audio_icon; VFrame *audio_vframe;
249 BC_Pixmap *video_icon; VFrame *video_vframe;
250 BC_Pixmap *label_icon; VFrame *label_vframe;
251 BC_Pixmap *clip_icon; VFrame *clip_vframe;
252 BC_Pixmap *atransition_icon; VFrame *atransition_vframe;
253 BC_Pixmap *vtransition_icon; VFrame *vtransition_vframe;
254 BC_Pixmap *aeffect_icon; VFrame *aeffect_vframe;
255 BC_Pixmap *veffect_icon; VFrame *veffect_vframe;
256 BC_Pixmap *ladspa_icon; VFrame *ladspa_vframe;
257 BC_Pixmap *ff_aud_icon; VFrame *ff_aud_vframe;
258 BC_Pixmap *ff_vid_icon; VFrame *ff_vid_vframe;
260 NewFolderThread *newfolder_thread;
263 AssetPopup *asset_menu;
264 ClipPopup *clip_menu;
265 LabelPopup *label_menu;
266 EffectListMenu *effectlist_menu;
267 AssetListMenu *assetlist_menu;
268 ClipListMenu *cliplist_menu;
269 LabelListMenu *labellist_menu;
270 FolderListMenu *folderlist_menu;
272 // Temporary for reading picons from files
274 VIconThread *vicon_thread;
275 AssetVIconAudio *vicon_audio;
277 int64_t plugin_visibility;
278 AWindowRemovePlugin *remove_plugin;
280 AVIconDrawing *avicon_drawing;
281 int avicon_w, avicon_h, vicon_drawing;
282 int allow_iconlisting;
284 // Create custom atoms to be used for async messages between windows
285 int create_custom_xatoms();
286 // Function to overload to recieve customly defined atoms
287 virtual int recieve_custom_xatoms(xatom_event *event);
288 static const char *folder_names[];
291 void update_folder_list();
292 void update_asset_list();
293 void filter_displayed_assets();
294 Atom UpdateAssetsXAtom;
295 void update_assets();
299 class AWindowAssets : public BC_ListBox
302 AWindowAssets(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h);
306 int selection_changed();
307 void draw_background();
308 int drag_start_event();
309 int drag_motion_event();
310 int drag_stop_event();
311 int button_press_event();
312 int column_resize_event();
313 int focus_in_event();
314 int focus_out_event();
320 class AWindowDivider : public BC_SubWindow
323 AWindowDivider(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h);
326 int button_press_event();
327 int cursor_motion_event();
328 int button_release_event();
334 class AWindowFolders : public BC_ListBox
337 AWindowFolders(MWindow *mwindow, AWindowGUI *gui, int x, int y, int w, int h);
340 int selection_changed();
341 int button_press_event();
347 class AWindowSearchTextBox : public BC_TextBox
350 AWindowSearchTextBox(AWindowSearchText *search_text, int x, int y, int w);
353 AWindowSearchText *search_text;
356 class AWindowSearchText
359 AWindowSearchText(MWindow *mwindow, AWindowGUI *gui, int x, int y);
362 void create_objects();
365 void reposition_window(int x, int y, int w);
366 const char *get_text();
372 BC_Title *text_title;
373 BC_TextBox *text_box;
376 class AWindowNewFolder : public BC_Button
379 AWindowNewFolder(MWindow *mwindow, AWindowGUI *gui, int x, int y);
386 class AWindowDeleteFolder : public BC_Button
389 AWindowDeleteFolder(MWindow *mwindow, AWindowGUI *gui, int x, int y);
396 class AWindowRenameFolder : public BC_Button
399 AWindowRenameFolder(MWindow *mwindow, AWindowGUI *gui, int x, int y);
406 class AWindowDeleteDisk : public BC_Button
409 AWindowDeleteDisk(MWindow *mwindow, AWindowGUI *gui, int x, int y);
416 class AWindowDeleteProject : public BC_Button
419 AWindowDeleteProject(MWindow *mwindow, AWindowGUI *gui, int x, int y);
426 class AWindowInfo : public BC_Button
429 AWindowInfo(MWindow *mwindow, AWindowGUI *gui, int x, int y);
436 class AWindowRedrawIndex : public BC_Button
439 AWindowRedrawIndex(MWindow *mwindow, AWindowGUI *gui, int x, int y);
446 class AWindowPaste : public BC_Button
449 AWindowPaste(MWindow *mwindow, AWindowGUI *gui, int x, int y);
456 class AWindowAppend : public BC_Button
459 AWindowAppend(MWindow *mwindow, AWindowGUI *gui, int x, int y);
466 class AWindowView : public BC_Button
469 AWindowView(MWindow *mwindow, AWindowGUI *gui, int x, int y);
476 class AddTools : public BC_PopupMenu
479 AddTools(MWindow *mwindow, AWindowGUI *gui, int x, int y, const char *title);
480 void create_objects();
486 class AddPluginItem : public BC_MenuItem
489 AddPluginItem(AddTools *menu, const char *text, int idx);
496 class AVIconDrawing : public BC_Toggle
502 static void calculate_geometry(AWindowGUI *agui, VFrame **images, int *ww, int *hh);
504 AVIconDrawing(AWindowGUI *agui, int x, int y, VFrame **images);
509 class AWindowListFormat : public BC_MenuItem
512 AWindowListFormat(MWindow *mwindow, AWindowGUI *gui);
521 class AWindowListSort : public BC_MenuItem
524 AWindowListSort(MWindow *mwindow, AWindowGUI *gui);