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
25 #include "apatchgui.inc"
27 #include "floatauto.inc"
29 #include "panauto.inc"
33 class APatchGUI : public PatchGUI
36 APatchGUI(MWindow *mwindow, PatchBay *patchbay, ATrack *track, int x, int y);
39 void create_objects();
40 int reposition(int x, int y);
41 int update(int x, int y);
42 void update_faders(float v);
50 class AFadePatch : public BC_FSlider
53 AFadePatch(APatchGUI *patch, int x, int y, int w, float v);
54 static FloatAuto* get_keyframe(MWindow *mwindow, APatchGUI *patch);
55 virtual int handle_event();
59 class AKeyFadePatch : public BC_SubWindow
62 AKeyFadePatch(MWindow *mwindow, APatchGUI *patch,
63 int bump, int x, int y);
65 void create_objects();
66 void set_edge(int edge);
67 void set_span(int span);
72 AKeyFadeOK *akey_fade_ok;
73 AKeyFadeText *akey_fade_text;
74 AKeyFadeSlider *akey_fade_slider;
75 AKeyPatchAutoEdge *auto_edge;
76 AKeyPatchAutoSpan *auto_span;
79 class AKeyFadeOK : public BC_Button
82 AKeyFadeOK(AKeyFadePatch *akey_fade_patch, int x, int y, VFrame **images);
85 AKeyFadePatch *akey_fade_patch;
88 class AKeyFadeText : public BC_TextBox
91 AKeyFadeText(AKeyFadePatch *akey_fade_patch, int x, int y, int w, float v);
94 AKeyFadePatch *akey_fade_patch;
97 class AKeyFadeSlider : public AFadePatch
100 AKeyFadeSlider(AKeyFadePatch *akey_fade_patch, int x, int y, int w, float v);
103 AKeyFadePatch *akey_fade_patch;
107 class APanPatch : public BC_Pan
110 APanPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
111 static PanAuto* get_keyframe(MWindow *mwindow, APatchGUI *patch);
112 virtual int handle_event();
117 class AKeyPanPatch : public APanPatch
120 AKeyPanPatch(MWindow *mwindow, APatchGUI *patch);
124 class AMeterPatch : public BC_Meter
127 AMeterPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
128 int button_press_event();
133 class AMixPatch : public MixPatch
136 AMixPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
140 class AKeyPatchAutoEdge : public BC_Toggle
143 AKeyPatchAutoEdge(MWindow *mwindow, AKeyFadePatch *patch, int x, int y);
146 AKeyFadePatch *patch;
149 class AKeyPatchAutoSpan : public BC_Toggle
152 AKeyPatchAutoSpan(MWindow *mwindow, AKeyFadePatch *patch, int x, int y);
155 AKeyFadePatch *patch;