add edit clear submenu/clear hard_edges, fix tessy gl segv, mask toolgui layout,...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / menueditlength.h
1 /*
2  * CINELERRA
3  * Copyright (C) 2010 Adam Williams <broadcast at earthling dot net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  */
20
21
22
23 // Various functions for macro editing
24
25
26 #ifndef MENUEDITLENGTH_H
27 #define MENUEDITLENGTH_H
28
29
30 #include "editlength.inc"
31 #include "guicast.h"
32 #include "mwindow.inc"
33 #include "plugindialog.inc"
34 #include "transitionpopup.inc"
35
36 class MenuEditLength : public BC_MenuItem
37 {
38 public:
39         MenuEditLength(MWindow *mwindow);
40         ~MenuEditLength();
41
42         int handle_event();
43
44         MWindow *mwindow;
45         EditLengthThread *thread;
46 };
47
48 class MenuEditShuffle : public BC_MenuItem
49 {
50 public:
51         MenuEditShuffle(MWindow *mwindow);
52
53         int handle_event();
54
55         MWindow *mwindow;
56 };
57
58
59 class MenuEditReverse : public BC_MenuItem
60 {
61 public:
62         MenuEditReverse(MWindow *mwindow);
63
64         int handle_event();
65
66         MWindow *mwindow;
67 };
68
69
70 class MenuEditAlign : public BC_MenuItem
71 {
72 public:
73         MenuEditAlign(MWindow *mwindow);
74
75         int handle_event();
76
77         MWindow *mwindow;
78 };
79
80
81 #endif
82
83