r676: Fixed that parsing autos would miss all but the first entry. (Bugs #195 and...
[cinelerra_cv.git] / plugins / rgb601 / rgb601window.h
blob4b10138ba001c61bd489f39d8d860f9c1eaae574
1 #ifndef RGB601WINDOW_H
2 #define RGB601WINDOW_H
4 #include "guicast.h"
6 class RGB601Thread;
7 class RGB601Window;
9 #include "filexml.h"
10 #include "mutex.h"
11 #include "rgb601.h"
13 PLUGIN_THREAD_HEADER(RGB601Main, RGB601Thread, RGB601Window)
15 class RGB601Direction : public BC_CheckBox
17 public:
18 RGB601Direction(RGB601Window *window, int x, int y, int *output, int true_value, char *text);
19 ~RGB601Direction();
21 int handle_event();
22 RGB601Window *window;
23 int *output;
24 int true_value;
27 class RGB601Window : public BC_Window
29 public:
30 RGB601Window(RGB601Main *client, int x, int y);
31 ~RGB601Window();
33 int create_objects();
34 int close_event();
35 void update();
37 RGB601Main *client;
38 BC_CheckBox *forward, *reverse;
41 #endif