e948c40d5191f97a99aefee9938baed61f0db708
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / rgbshift / rgbshift.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef RGBSHIFT_H
23 #define RGBSHIFT_H
24
25
26 #include "bcdisplayinfo.h"
27 #include "clip.h"
28 #include "bchash.h"
29 #include "filexml.h"
30 #include "guicast.h"
31 #include "language.h"
32 #include "bccolors.h"
33 #include "pluginvclient.h"
34 #include "vframe.h"
35
36 #include <stdint.h>
37 #include <string.h>
38
39 #define RESET_ALL  0
40 #define RESET_R_DX 1
41 #define RESET_R_DY 2
42 #define RESET_G_DX 3
43 #define RESET_G_DY 4
44 #define RESET_B_DX 5
45 #define RESET_B_DY 6
46
47 class RGBShiftEffect;
48 class RGBShiftWindow;
49 class RGBShiftReset;
50 class RGBShiftSliderClr;
51
52
53 class RGBShiftConfig
54 {
55 public:
56         RGBShiftConfig();
57
58         void reset(int clear);
59         void copy_from(RGBShiftConfig &src);
60         int equivalent(RGBShiftConfig &src);
61         void interpolate(RGBShiftConfig &prev,
62                 RGBShiftConfig &next,
63                 long prev_frame,
64                 long next_frame,
65                 long current_frame);
66
67         int r_dx, r_dy, g_dx, g_dy, b_dx, b_dy;
68 };
69
70 class RGBShiftLevel : public BC_ISlider
71 {
72 public:
73         RGBShiftLevel(RGBShiftEffect *plugin, int *output, int x, int y);
74         int handle_event();
75         RGBShiftEffect *plugin;
76         int *output;
77 };
78
79 class RGBShiftReset : public BC_GenericButton
80 {
81 public:
82         RGBShiftReset(RGBShiftEffect *plugin, RGBShiftWindow *window, int x, int y);
83         ~RGBShiftReset();
84         int handle_event();
85         RGBShiftEffect *plugin;
86         RGBShiftWindow *window;
87 };
88
89 class RGBShiftSliderClr : public BC_GenericButton
90 {
91 public:
92         RGBShiftSliderClr(RGBShiftEffect *plugin, RGBShiftWindow *window, int x, int y, int w, int clear);
93         ~RGBShiftSliderClr();
94         int handle_event();
95         RGBShiftEffect *plugin;
96         RGBShiftWindow *window;
97         int clear;
98 };
99
100 class RGBShiftWindow : public PluginClientWindow
101 {
102 public:
103         RGBShiftWindow(RGBShiftEffect *plugin);
104         void create_objects();
105         void update_gui(int clear);
106         RGBShiftLevel *r_dx, *r_dy, *g_dx, *g_dy, *b_dx, *b_dy;
107         RGBShiftEffect *plugin;
108         RGBShiftReset *reset;
109         RGBShiftSliderClr *r_dxClr, *r_dyClr;
110         RGBShiftSliderClr *g_dxClr, *g_dyClr;
111         RGBShiftSliderClr *b_dxClr, *b_dyClr;
112 };
113
114
115
116 class RGBShiftEffect : public PluginVClient
117 {
118         VFrame *temp_frame;
119 public:
120         RGBShiftEffect(PluginServer *server);
121         ~RGBShiftEffect();
122
123
124         PLUGIN_CLASS_MEMBERS(RGBShiftConfig)
125         int process_realtime(VFrame *input, VFrame *output);
126         int is_realtime();
127         void save_data(KeyFrame *keyframe);
128         void read_data(KeyFrame *keyframe);
129         void update_gui();
130 };
131
132 #endif