Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / guicast / bcwindow.h
blob51fd318c6a09c174e2d9b370a455beaa6ff96202
1 #ifndef BCWINDOW_H
2 #define BCWINDOW_H
4 #include "bcwindowbase.h"
6 class BC_Window : public BC_WindowBase
8 public:
9 BC_Window(char *title,
10 int x,
11 int y,
12 int w,
13 int h,
14 int minw = -1,
15 int minh = -1,
16 int allow_resize = 1,
17 int private_color = 0,
18 int hide = 0,
19 int bg_color = -1,
20 char *display_name = "",
21 int group_it = 1);
22 virtual ~BC_Window();
24 private:
28 #endif
30 // Local Variables:
31 // mode: C++
32 // c-file-style: "linux"
33 // End: