add bump floatautos, add time_references for align timecodes, add menuitem create_key...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / apatchgui.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifndef APATCHGUI_H
23 #define APATCHGUI_H
24
25 #include "apatchgui.inc"
26 #include "atrack.inc"
27 #include "floatauto.inc"
28 #include "guicast.h"
29 #include "panauto.inc"
30 #include "patchgui.h"
31
32
33 class APatchGUI : public PatchGUI
34 {
35 public:
36         APatchGUI(MWindow *mwindow, PatchBay *patchbay, ATrack *track, int x, int y);
37         ~APatchGUI();
38
39         void create_objects();
40         int reposition(int x, int y);
41         int update(int x, int y);
42         void update_faders(float v);
43
44         ATrack *atrack;
45         AFadePatch *fade;
46         APanPatch *pan;
47         AMeterPatch *meter;
48 };
49
50 class AFadePatch : public BC_FSlider
51 {
52 public:
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();
56         APatchGUI *patch;
57 };
58
59 class AKeyFadePatch : public BC_SubWindow
60 {
61 public:
62         AKeyFadePatch(MWindow *mwindow, APatchGUI *patch,
63                         int bump, int x, int y);
64         ~AKeyFadePatch();
65         void create_objects();
66         void set_edge(int edge);
67         void set_span(int span);
68         void update(float v);
69
70         MWindow *mwindow;
71         APatchGUI *gui;
72         AKeyFadeOK *akey_fade_ok;
73         AKeyFadeText *akey_fade_text;
74         AKeyFadeSlider *akey_fade_slider;
75         AKeyPatchAutoEdge *auto_edge;
76         AKeyPatchAutoSpan *auto_span;
77 };
78
79 class AKeyFadeOK : public BC_Button
80 {
81 public:
82         AKeyFadeOK(AKeyFadePatch *akey_fade_patch, int x, int y, VFrame **images);
83         int handle_event();
84
85         AKeyFadePatch *akey_fade_patch;
86 };
87
88 class AKeyFadeText : public BC_TextBox
89 {
90 public:
91         AKeyFadeText(AKeyFadePatch *akey_fade_patch, int x, int y, int w, float v);
92         int handle_event();
93
94         AKeyFadePatch *akey_fade_patch;
95 };
96
97 class AKeyFadeSlider : public AFadePatch
98 {
99 public:
100         AKeyFadeSlider(AKeyFadePatch *akey_fade_patch, int x, int y, int w, float v);
101         int handle_event();
102
103         AKeyFadePatch *akey_fade_patch;
104 };
105
106
107 class APanPatch : public BC_Pan
108 {
109 public:
110         APanPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
111         static PanAuto* get_keyframe(MWindow *mwindow, APatchGUI *patch);
112         virtual int handle_event();
113         MWindow *mwindow;
114         APatchGUI *patch;
115 };
116
117 class AKeyPanPatch : public APanPatch
118 {
119 public:
120         AKeyPanPatch(MWindow *mwindow, APatchGUI *patch);
121         int handle_event();
122 };
123
124 class AMeterPatch : public BC_Meter
125 {
126 public:
127         AMeterPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
128         int button_press_event();
129         MWindow *mwindow;
130         APatchGUI *patch;
131 };
132
133 class AMixPatch : public MixPatch
134 {
135 public:
136         AMixPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
137         ~AMixPatch();
138 };
139
140 class AKeyPatchAutoEdge : public BC_Toggle
141 {
142 public:
143         AKeyPatchAutoEdge(MWindow *mwindow, AKeyFadePatch *patch, int x, int y);
144         int handle_event();
145         MWindow *mwindow;
146         AKeyFadePatch *patch;
147 };
148
149 class AKeyPatchAutoSpan : public BC_Toggle
150 {
151 public:
152         AKeyPatchAutoSpan(MWindow *mwindow, AKeyFadePatch *patch, int x, int y);
153         int handle_event();
154         MWindow *mwindow;
155         AKeyFadePatch *patch;
156 };
157
158 #endif