18 new shapewipe transitions from rafa, rework savefile/confirm for nested edl edits
[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, int x, int y);
63         void create_objects();
64         void update(float v);
65
66         MWindow *mwindow;
67         APatchGUI *patch;
68         AKeyFadeOK *akey_fade_ok;
69         AKeyFadeText *akey_fade_text;
70         AKeyFadeSlider *akey_fade_slider;
71 };
72
73 class AKeyFadeOK : public BC_Button
74 {
75 public:
76         AKeyFadeOK(AKeyFadePatch *akey_fade_patch, int x, int y, VFrame **images);
77         int handle_event();
78
79         AKeyFadePatch *akey_fade_patch;
80 };
81
82 class AKeyFadeText : public BC_TextBox
83 {
84 public:
85         AKeyFadeText(AKeyFadePatch *akey_fade_patch, int x, int y, int w, float v);
86         int handle_event();
87
88         AKeyFadePatch *akey_fade_patch;
89 };
90
91 class AKeyFadeSlider : public AFadePatch
92 {
93 public:
94         AKeyFadeSlider(AKeyFadePatch *akey_fade_patch, int x, int y, int w, float v);
95         int handle_event();
96
97         AKeyFadePatch *akey_fade_patch;
98 };
99
100
101 class APanPatch : public BC_Pan
102 {
103 public:
104         APanPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
105         static PanAuto* get_keyframe(MWindow *mwindow, APatchGUI *patch);
106         virtual int handle_event();
107         MWindow *mwindow;
108         APatchGUI *patch;
109 };
110
111 class AKeyPanPatch : public APanPatch
112 {
113 public:
114         AKeyPanPatch(MWindow *mwindow, APatchGUI *patch);
115         int handle_event();
116 };
117
118 class AMeterPatch : public BC_Meter
119 {
120 public:
121         AMeterPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
122         int button_press_event();
123         MWindow *mwindow;
124         APatchGUI *patch;
125 };
126
127 class AMixPatch : public MixPatch
128 {
129 public:
130         AMixPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
131         ~AMixPatch();
132 };
133
134 #endif