rework keyframe hide popup, keyframe auto render, textbox set_selection wide text
[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 class AFadePatch;
33 class APanPatch;
34 class AMeterPatch;
35
36 class APatchGUI : public PatchGUI
37 {
38 public:
39         APatchGUI(MWindow *mwindow, PatchBay *patchbay, ATrack *track, int x, int y);
40         ~APatchGUI();
41
42         void create_objects();
43         int reposition(int x, int y);
44         int update(int x, int y);
45         void synchronize_fade(float value_change);
46
47         ATrack *atrack;
48         AFadePatch *fade;
49         APanPatch *pan;
50         AMeterPatch *meter;
51 };
52
53 class AFadePatch : public BC_FSlider
54 {
55 public:
56         AFadePatch(MWindow *mwindow, APatchGUI *patch, int x, int y, int w);
57         static FloatAuto* get_keyframe(MWindow *mwindow, APatchGUI *patch);
58         int handle_event();
59         float update_edl();
60         MWindow *mwindow;
61         APatchGUI *patch;
62 };
63
64 class APanPatch : public BC_Pan
65 {
66 public:
67         APanPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
68         static PanAuto* get_keyframe(MWindow *mwindow, APatchGUI *patch);
69         int handle_event();
70         MWindow *mwindow;
71         APatchGUI *patch;
72 };
73
74 class AMeterPatch : public BC_Meter
75 {
76 public:
77         AMeterPatch(MWindow *mwindow, APatchGUI *patch, int x, int y);
78         int button_press_event();
79         MWindow *mwindow;
80         APatchGUI *patch;
81 };
82
83
84 #endif