bsd lang segv fix, enable bsd lv2, lv2 gui enable fix, proxy/ffmpeg toggle resize...
[goodguy/history.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 synchronize_fade(float value_change);
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(MWindow *mwindow, APatchGUI *patch, int x, int y, int w);
54         static FloatAuto* get_keyframe(MWindow *mwindow, APatchGUI *patch);
55         virtual int handle_event();
56         float update_edl();
57         MWindow *mwindow;
58         APatchGUI *patch;
59 };
60
61 class AKeyFadePatch : public BC_SubWindow
62 {
63 public:
64         AKeyFadePatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
65         void create_objects();
66
67         MWindow *mwindow;
68         APatchGUI *patch;
69         AKeyFadeValue *akey_fade_value;
70 };
71
72 class AKeyFadeValue : public AFadePatch
73 {
74 public:
75         AKeyFadeValue(AKeyFadePatch *akey_fade_patch);
76         int button_release_event();
77         int handle_event();
78
79         AKeyFadePatch *akey_fade_patch;
80 };
81
82
83 class APanPatch : public BC_Pan
84 {
85 public:
86         APanPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
87         static PanAuto* get_keyframe(MWindow *mwindow, APatchGUI *patch);
88         virtual int handle_event();
89         MWindow *mwindow;
90         APatchGUI *patch;
91 };
92
93 class AKeyPanPatch : public APanPatch
94 {
95 public:
96         AKeyPanPatch(MWindow *mwindow, APatchGUI *patch);
97         int button_release_event();
98         int handle_event();
99 };
100
101 class AMeterPatch : public BC_Meter
102 {
103 public:
104         AMeterPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
105         int button_press_event();
106         MWindow *mwindow;
107         APatchGUI *patch;
108 };
109
110 class AMixPatch : public MixPatch
111 {
112 public:
113         AMixPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
114         ~AMixPatch();
115 };
116
117 #endif