/* * CINELERRA * Copyright (C) 2008 Adam Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifndef MENUEFFECTS_H #define MENUEFFECTS_H #include "arraylist.h" #include "asset.inc" #include "bitspopup.h" #include "browsebutton.h" #include "compresspopup.h" #include "formatpopup.h" #include "formattools.h" #include "loadmode.inc" #include "mainmenu.inc" #include "mwindow.inc" #include "pluginarray.inc" #include "pluginserver.inc" #include "thread.h" class MenuEffectThread; class MenuEffects : public BC_MenuItem { public: MenuEffects(MWindow *mwindow); virtual ~MenuEffects(); int handle_event(); MWindow *mwindow; MenuEffectThread *thread; }; class MenuEffectPacket { public: MenuEffectPacket(char *path, int64_t start, int64_t end); ~MenuEffectPacket(); // Path of output without remote prefix char path[BCTEXTLEN]; int64_t start; int64_t end; }; class MenuEffectThread : public Thread { public: MenuEffectThread(MWindow *mwindow, MenuEffects *menu_item); virtual ~MenuEffectThread(); void run(); int set_title(const char *text); // set the effect to be run by a menuitem virtual int get_recordable_tracks(Asset *asset) { return 0; }; virtual int get_derived_attributes(Asset *asset, BC_Hash *defaults) { return 0; }; virtual int save_derived_attributes(Asset *asset, BC_Hash *defaults) { return 0; }; virtual PluginArray* create_plugin_array() { return 0; }; virtual int64_t to_units(double position, int round) { return 0; }; virtual int fix_menu(char *title) { return 0; }; int test_existence(Asset *asset); MWindow *mwindow; MenuEffects *menu_item; char title[BCTEXTLEN]; int realtime, load_mode; int use_labels; // GUI Plugins to delete ArrayList *dead_plugins; }; class MenuEffectItem : public BC_MenuItem { public: MenuEffectItem(MenuEffects *menueffect, const char *string); virtual ~MenuEffectItem() {}; int handle_event(); MenuEffects *menueffect; }; class MenuEffectWindowOK; class MenuEffectWindowCancel; class MenuEffectWindowList; class MenuEffectWindowToTracks; class MenuEffectWindow : public BC_Window { public: MenuEffectWindow(MWindow *mwindow, MenuEffectThread *menueffects, ArrayList *plugin_list, Asset *asset); virtual ~MenuEffectWindow(); void create_objects(); int resize_event(int w, int h); BC_Title *list_title; MenuEffectWindowList *list; LoadMode *loadmode; BC_Title *file_title; FormatTools *format_tools; MenuEffectThread *menueffects; MWindow *mwindow; ArrayList *plugin_list; Asset *asset; int result; }; class MenuEffectWindowOK : public BC_OKButton { public: MenuEffectWindowOK(MenuEffectWindow *window); int handle_event(); int keypress_event(); MenuEffectWindow *window; }; class MenuEffectWindowCancel : public BC_CancelButton { public: MenuEffectWindowCancel(MenuEffectWindow *window); int handle_event(); int keypress_event(); MenuEffectWindow *window; }; class MenuEffectWindowList : public BC_ListBox { public: MenuEffectWindowList(MenuEffectWindow *window, int x, int y, int w, int h, ArrayList *plugin_list); int handle_event(); MenuEffectWindow *window; }; class MenuEffectPromptOK; class MenuEffectPromptCancel; class MenuEffectPrompt : public BC_Window { public: MenuEffectPrompt(MWindow *mwindow); static int calculate_w(BC_WindowBase *gui); static int calculate_h(BC_WindowBase *gui); void create_objects(); MenuEffectPromptOK *ok; MenuEffectPromptCancel *cancel; }; #endif