X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fpatchbay.h;fp=cinelerra-5.1%2Fcinelerra%2Fpatchbay.h;h=5d84e364781671e53e8a8e20e990c33fb50dcb1d;hb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;hp=0000000000000000000000000000000000000000;hpb=52fcc46226f9df46f9ce9d0566dc568455a7db0b;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/patchbay.h b/cinelerra-5.1/cinelerra/patchbay.h new file mode 100644 index 00000000..5d84e364 --- /dev/null +++ b/cinelerra-5.1/cinelerra/patchbay.h @@ -0,0 +1,121 @@ + +/* + * 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 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 *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 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