r1009: Move the dependencies to newer package names
[cinelerra_cv/mob.git] / cinelerra / cropvideo.h
blob1aa1562d4846a5e6fe5212d46721f9b447170f4d
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