add formatting trailer for emacs
[cinelerra_cv/ct.git] / cinelerra / cropvideo.h
blob79d3c236a249d48cd7f5e13ced9e9f14db2bef73
1 #ifndef CROPVIDEO_H
2 #define CROPVIDEO_H
4 #include "guicast.h"
5 #include "mwindow.inc"
6 #include "thread.h"
7 #include "cropvideo.inc"
9 class CropVideo : public BC_MenuItem, public Thread
11 public:
12 CropVideo(MWindow *mwindow);
13 ~CropVideo();
15 int handle_event();
16 void run();
17 int load_defaults();
18 int save_defaults();
19 int fix_aspect_ratio();
21 MWindow *mwindow;
24 class CropVideoWindow : public BC_Window
26 public:
27 CropVideoWindow(MWindow *mwindow, CropVideo *thread);
28 ~CropVideoWindow();
30 int create_objects();
32 CropVideo *thread;
33 MWindow *mwindow;
37 #endif
39 // Local Variables:
40 // mode: C++
41 // c-file-style: "linux"
42 // End: