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
26 #include "mwindow.inc"
27 #include "patchbay.inc"
28 #include "intauto.inc"
48 PatchGUI(MWindow *mwindow,
55 virtual void create_objects();
56 virtual int reposition(int x, int y);
57 void toggle_behavior(int type,
61 virtual int update(int x, int y);
62 virtual void synchronize_fade(float change) {};
63 void synchronize_faders(float change, int audio, int video);
64 char* calculate_nudge_text(int *changed);
65 int64_t calculate_nudge(const char *string);
70 // Used by update routines so non-existent track doesn't need to be dereferenced
71 // to know it doesn't match the current EDL.
75 // Don't synchronize the fader if this is true.
81 // AutoPatch *automate;
88 char string_return[BCTEXTLEN];
93 class PlayPatch : public BC_Toggle
96 PlayPatch(MWindow *mwindow, PatchGUI *patch, int x, int y);
97 int button_press_event();
98 int button_release_event();
103 class RecordPatch : public BC_Toggle
106 RecordPatch(MWindow *mwindow, PatchGUI *patch, int x, int y);
107 int button_press_event();
108 int button_release_event();
113 class TitlePatch : public BC_TextBox
116 TitlePatch(MWindow *mwindow, PatchGUI *patch, int x, int y, int w);
118 void update(const char *text);
123 class AutoPatch : public BC_Toggle
126 AutoPatch(MWindow *mwindow, PatchGUI *patch, int x, int y);
127 int button_press_event();
128 int button_release_event();
133 class GangPatch : public BC_Toggle
136 GangPatch(MWindow *mwindow, PatchGUI *patch, int x, int y);
137 int button_press_event();
138 int button_release_event();
143 class DrawPatch : public BC_Toggle
146 DrawPatch(MWindow *mwindow, PatchGUI *patch, int x, int y);
147 int button_press_event();
148 int button_release_event();
153 class MutePatch : public BC_Toggle
156 MutePatch(MWindow *mwindow, PatchGUI *patch, int x, int y);
157 int button_press_event();
158 int button_release_event();
163 class ExpandPatch : public BC_Toggle
166 ExpandPatch(MWindow *mwindow, PatchGUI *patch, int x, int y);
167 int button_press_event();
168 int button_release_event();
173 class NudgePatch : public BC_TextBox
176 NudgePatch(MWindow *mwindow, PatchGUI *patch, int x, int y, int w);
178 int button_press_event();
180 void set_value(int64_t value);
181 int64_t calculate_increment();
187 class MixPatch : public BC_Toggle
190 MixPatch(MWindow *mwindow, PatchGUI *patch, int x, int y);