switch to solid color for edit title bar
[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 activate_menu(Track *track, Edit *edit,
42                 PluginSet *pluginset, Plugin *plugin, double position);
43
44         MWindow *mwindow;
45         MWindowGUI *gui;
46         TrackPopupResize *resize_option;
47         TrackPopupMatchSize *matchsize_option;
48
49         Track *track;
50         Edit *edit;
51         Plugin *plugin;
52         PluginSet *pluginset;
53         double position;
54 };
55
56 class TrackPopupMatchSize : public BC_MenuItem
57 {
58 public:
59         TrackPopupMatchSize(MWindow *mwindow, TrackPopup *popup);
60         ~TrackPopupMatchSize();
61         int handle_event();
62         MWindow *mwindow;
63         TrackPopup *popup;
64 };
65
66 class TrackPopupResize : public BC_MenuItem
67 {
68 public:
69         TrackPopupResize(MWindow *mwindow, TrackPopup *popup);
70         ~TrackPopupResize();
71         int handle_event();
72         MWindow *mwindow;
73         TrackPopup *popup;
74         ResizeTrackThread *dialog_thread;
75 };
76
77 class TrackPopupDeleteTrack : public BC_MenuItem
78 {
79 public:
80         TrackPopupDeleteTrack(MWindow *mwindow, TrackPopup *popup);
81         int handle_event();
82         MWindow *mwindow;
83         TrackPopup *popup;
84 };
85
86 class TrackPopupAddTrack : public BC_MenuItem
87 {
88 public:
89         TrackPopupAddTrack(MWindow *mwindow, TrackPopup *popup);
90         int handle_event();
91         MWindow *mwindow;
92         TrackPopup *popup;
93 };
94
95 class TrackPopupFindAsset : public BC_MenuItem
96 {
97 public:
98         TrackPopupFindAsset(MWindow *mwindow, TrackPopup *popup);
99         int handle_event();
100         MWindow *mwindow;
101         TrackPopup *popup;
102 };
103
104
105 class TrackAttachEffect : public BC_MenuItem
106 {
107 public:
108         TrackAttachEffect(MWindow *mwindow, TrackPopup *popup);
109         ~TrackAttachEffect();
110
111         int handle_event();
112
113         MWindow *mwindow;
114         TrackPopup *popup;
115         PluginDialogThread *dialog_thread;
116 };
117
118 class TrackMoveUp : public BC_MenuItem
119 {
120 public:
121         TrackMoveUp(MWindow *mwindow, TrackPopup *popup);
122         ~TrackMoveUp();
123
124         int handle_event();
125
126         MWindow *mwindow;
127         TrackPopup *popup;
128 };
129
130 class TrackMoveDown : public BC_MenuItem
131 {
132 public:
133         TrackMoveDown(MWindow *mwindow, TrackPopup *popup);
134         ~TrackMoveDown();
135
136         int handle_event();
137
138         MWindow *mwindow;
139         TrackPopup *popup;
140 };
141
142
143 #endif