Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / cinelerra / menueffects.h
diff --git a/cinelerra-5.0/cinelerra/menueffects.h b/cinelerra-5.0/cinelerra/menueffects.h
deleted file mode 100644 (file)
index 7ee61e2..0000000
+++ /dev/null
@@ -1,195 +0,0 @@
-
-/*
- * CINELERRA
- * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
- * 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 strategy;
-// GUI Plugins to delete
-       ArrayList<PluginServer*> *dead_plugins;
-       
-};
-
-
-class MenuEffectItem : public BC_MenuItem
-{
-public:
-       MenuEffectItem(MenuEffects *menueffect, 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<BC_ListBoxItem*> *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<BC_ListBoxItem*> *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<BC_ListBoxItem*> *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