Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / cinelerra / patchbay.h
diff --git a/cinelerra-5.0/cinelerra/patchbay.h b/cinelerra-5.0/cinelerra/patchbay.h
deleted file mode 100644 (file)
index 0a296c4..0000000
+++ /dev/null
@@ -1,122 +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 PATCHBAY_H
-#define PATCHBAY_H
-
-#include "guicast.h"
-#include "filexml.inc"
-#include "mwindow.inc"
-#include "mwindowgui.inc"
-#include "overlayframe.inc"
-#include "patch.h"
-#include "patchbay.inc"
-#include "patchgui.inc"
-#include "timelinepane.inc"
-
-class NudgePopupSeconds;
-class NudgePopupNative;
-class NudgePopup;
-
-class PatchBay : public BC_SubWindow
-{
-public:
-       PatchBay(MWindow *mwindow, MWindowGUI *gui);
-       PatchBay(MWindow *mwindow, TimelinePane *pane, int x, int y, int w, int h);
-       ~PatchBay();
-
-       int delete_all_patches();
-       void create_objects();
-       void resize_event();
-       void resize_event(int x, int y, int w, int h);
-       int button_press_event();
-       int cursor_motion_event();
-       BC_Pixmap* mode_to_icon(int mode);
-       int icon_to_mode(BC_Pixmap *icon);
-// Get the patch that matches the track.
-       PatchGUI* get_patch_of(Track *track);
-
-// Synchronize with Master EDL
-       int update();
-       void update_meters(ArrayList<double> *module_levels);
-       void stop_meters();
-       void synchronize_nudge(int64_t value, Track *skip);
-       void synchronize_faders(float value, int data_type, Track *skip);
-       void set_meter_format(int mode, int min, int max);
-       void reset_meters();
-
-       ArrayList<PatchGUI*> patches;
-
-
-
-
-
-
-// =========================================== drawing
-
-       int resize_event(int top, int bottom);
-
-
-       MWindow *mwindow;
-       MWindowGUI *gui;
-       TimelinePane *pane;
-
-       int new_status, drag_operation;
-       BC_Pixmap *mode_icons[TRANSFER_TYPES];
-
-       NudgePopup *nudge_popup;
-};
-
-
-class NudgePopup : public BC_PopupMenu
-{
-public:
-       NudgePopup(MWindow *mwindow, PatchBay *patchbay);
-       ~NudgePopup();
-
-       void create_objects();
-       void activate_menu(PatchGUI *gui);
-
-       MWindow *mwindow;
-       PatchBay *patchbay;
-       NudgePopupSeconds *seconds_item;
-       NudgePopupNative *native_item;
-};
-
-
-class NudgePopupSeconds : public BC_MenuItem
-{
-public:
-       NudgePopupSeconds(NudgePopup *popup);
-       int handle_event();
-       NudgePopup *popup;
-};
-
-
-class NudgePopupNative : public BC_MenuItem
-{
-public:
-       NudgePopupNative(NudgePopup *popup);
-       int handle_event();
-       NudgePopup *popup;
-};
-
-#endif