1 #ifndef DEINTERWINDOW_H
2 #define DEINTERWINDOW_H
5 class DeInterlaceThread
;
6 class DeInterlaceWindow
;
10 #include "deinterlace.h"
11 #include "pluginclient.h"
13 PLUGIN_THREAD_HEADER(DeInterlaceMain
, DeInterlaceThread
, DeInterlaceWindow
);
15 class DeInterlaceOption
;
16 class DeInterlaceAdaptive
;
17 class DeInterlaceThreshold
;
19 class DeInterlaceWindow
: public BC_Window
22 DeInterlaceWindow(DeInterlaceMain
*client
, int x
, int y
);
27 int set_mode(int mode
, int recursive
);
28 void get_status_string(char *string
, int changed_rows
);
30 DeInterlaceMain
*client
;
31 DeInterlaceOption
*odd_fields
;
32 DeInterlaceOption
*even_fields
;
33 DeInterlaceOption
*average_fields
;
34 DeInterlaceOption
*swap_odd_fields
;
35 DeInterlaceOption
*swap_even_fields
;
36 DeInterlaceOption
*avg_even
;
37 DeInterlaceOption
*avg_odd
;
38 DeInterlaceOption
*none
;
39 DeInterlaceAdaptive
*adaptive
;
40 DeInterlaceThreshold
*threshold
;
44 class DeInterlaceOption
: public BC_Radial
47 DeInterlaceOption(DeInterlaceMain
*client
,
48 DeInterlaceWindow
*window
,
56 DeInterlaceMain
*client
;
57 DeInterlaceWindow
*window
;
61 class DeInterlaceAdaptive
: public BC_CheckBox
64 DeInterlaceAdaptive(DeInterlaceMain
*client
, int x
, int y
);
66 DeInterlaceMain
*client
;
69 class DeInterlaceThreshold
: public BC_IPot
72 DeInterlaceThreshold(DeInterlaceMain
*client
, int x
, int y
);
74 DeInterlaceMain
*client
;