rework keyframe hide popup, keyframe auto render, textbox set_selection wide text
[goodguy/history.git] / cinelerra-5.1 / cinelerra / vpatchgui.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 VPATCHGUI_H
23 #define VPATCHGUI_H
24
25 #include "floatauto.inc"
26 #include "guicast.h"
27 #include "patchgui.h"
28 #include "vpatchgui.inc"
29 #include "vtrack.inc"
30
31 class VFadePatch;
32 class VModePatch;
33
34 class VPatchGUI : public PatchGUI
35 {
36 public:
37         VPatchGUI(MWindow *mwindow,
38                 PatchBay *patchbay,
39                 VTrack *track,
40                 int x,
41                 int y);
42         ~VPatchGUI();
43
44         void create_objects();
45         int reposition(int x, int y);
46         int update(int x, int y);
47         void synchronize_fade(float value_change);
48
49         VTrack *vtrack;
50         VModePatch *mode;
51         VFadePatch *fade;
52 };
53
54 class VFadePatch : public BC_ISlider
55 {
56 public:
57         VFadePatch(MWindow *mwindow, VPatchGUI *patch, int x, int y, int w);
58         int handle_event();
59         float update_edl();
60         static FloatAuto* get_keyframe(MWindow *mwindow, VPatchGUI *patch);
61         MWindow *mwindow;
62         VPatchGUI *patch;
63 };
64
65 class VModePatch : public BC_PopupMenu
66 {
67 public:
68         VModePatch(MWindow *mwindow, VPatchGUI *patch, int x, int y);
69
70         int handle_event();
71         void create_objects();         // add initial items
72         static const char* mode_to_text(int mode);
73         static IntAuto* get_keyframe(MWindow *mwindow, VPatchGUI *patch);
74         void update(int mode);
75
76         MWindow *mwindow;
77         VPatchGUI *patch;
78         int mode;
79 };
80
81 class VModePatchItem : public BC_MenuItem
82 {
83 public:
84         VModePatchItem(VModePatch *popup, const char *text, int mode);
85
86         int handle_event();
87         VModePatch *popup;
88         int mode;
89 };
90
91
92 #endif