edit group selection and cut/copy/paste/del shortcuts, interview mode tweaks
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / trackpopup.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 __TRACKPOPUP_H__
23 #define __TRACKPOPUP_H__
24
25 #include "guicast.h"
26 #include "mwindow.inc"
27 #include "mwindowgui.inc"
28 #include "plugindialog.inc"
29 #include "resizetrackthread.inc"
30 #include "track.inc"
31 #include "trackpopup.inc"
32
33
34 class TrackPopup : public BC_PopupMenu
35 {
36 public:
37         TrackPopup(MWindow *mwindow, MWindowGUI *gui);
38         ~TrackPopup();
39
40         void create_objects();
41         int update(Track *track);
42
43         MWindow *mwindow;
44         MWindowGUI *gui;
45         Track *track;
46         TrackPopupResize *resize_option;
47         TrackPopupMatchSize *matchsize_option;
48 };
49
50 class TrackPopupMatchSize : public BC_MenuItem
51 {
52 public:
53         TrackPopupMatchSize(MWindow *mwindow, TrackPopup *popup);
54         ~TrackPopupMatchSize();
55         int handle_event();
56         MWindow *mwindow;
57         TrackPopup *popup;
58 };
59
60 class TrackPopupResize : public BC_MenuItem
61 {
62 public:
63         TrackPopupResize(MWindow *mwindow, TrackPopup *popup);
64         ~TrackPopupResize();
65         int handle_event();
66         MWindow *mwindow;
67         TrackPopup *popup;
68         ResizeTrackThread *dialog_thread;
69 };
70
71 class TrackPopupDeleteTrack : public BC_MenuItem
72 {
73 public:
74         TrackPopupDeleteTrack(MWindow *mwindow, TrackPopup *popup);
75         int handle_event();
76         MWindow *mwindow;
77         TrackPopup *popup;
78 };
79
80 class TrackPopupAddTrack : public BC_MenuItem
81 {
82 public:
83         TrackPopupAddTrack(MWindow *mwindow, TrackPopup *popup);
84         int handle_event();
85         MWindow *mwindow;
86         TrackPopup *popup;
87 };
88
89 class TrackPopupFindAsset : public BC_MenuItem
90 {
91 public:
92         TrackPopupFindAsset(MWindow *mwindow, TrackPopup *popup);
93         int handle_event();
94         MWindow *mwindow;
95         TrackPopup *popup;
96 };
97
98
99 class TrackAttachEffect : public BC_MenuItem
100 {
101 public:
102         TrackAttachEffect(MWindow *mwindow, TrackPopup *popup);
103         ~TrackAttachEffect();
104
105         int handle_event();
106
107         MWindow *mwindow;
108         TrackPopup *popup;
109         PluginDialogThread *dialog_thread;
110 };
111
112 class TrackMoveUp : public BC_MenuItem
113 {
114 public:
115         TrackMoveUp(MWindow *mwindow, TrackPopup *popup);
116         ~TrackMoveUp();
117
118         int handle_event();
119
120         MWindow *mwindow;
121         TrackPopup *popup;
122 };
123
124 class TrackMoveDown : public BC_MenuItem
125 {
126 public:
127         TrackMoveDown(MWindow *mwindow, TrackPopup *popup);
128         ~TrackMoveDown();
129
130         int handle_event();
131
132         MWindow *mwindow;
133         TrackPopup *popup;
134 };
135
136
137 #endif