new splash/about bg images
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / gwindowgui.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 GWINDOWGUI_H
23 #define GWINDOWGUI_H
24
25 #include "automation.inc"
26 #include "condition.inc"
27 #include "colorpicker.h"
28 #include "guicast.h"
29 #include "gwindowgui.inc"
30 #include "mwindow.inc"
31
32 enum {
33         NONAUTOTOGGLES_ASSETS,
34         NONAUTOTOGGLES_TITLES,
35         NONAUTOTOGGLES_TRANSITIONS,
36         NONAUTOTOGGLES_PLUGIN_AUTOS,
37         NONAUTOTOGGLES_CAMERA_XYZ,
38         NONAUTOTOGGLES_PROJECTOR_XYZ,
39         NONAUTOTOGGLES_BAR1,
40         NONAUTOTOGGLES_BAR2,
41         NONAUTOTOGGLES_BAR3,
42         NONAUTOTOGGLES_COUNT
43 };
44
45 struct toggleinfo {
46         int isauto, ref;
47 };
48
49 class GWindowGUI : public BC_Window
50 {
51 public:
52         GWindowGUI(MWindow *mwindow, int w, int h);
53         ~GWindowGUI();
54         static void calculate_extents(BC_WindowBase *gui, int *w, int *h);
55         void create_objects();
56         int translation_event();
57         int close_event();
58         int keypress_event();
59         void start_color_thread(GWindowColorButton *color_button);
60         void update_toggles(int use_lock);
61         void toggle_camera_xyz();
62         void toggle_projector_xyz();
63         void update_mwindow(int toggles, int overlays);
64         void load_defaults();
65         void save_defaults();
66         int *get_main_value(toggleinfo *info);
67         int check_xyz(int group);
68         void xyz_check(int group, int v);
69         void set_cool(int reset, int all=0);
70         void set_hot(GWindowToggle *toggle);
71
72         static const char *non_auto_text[];
73         static const char *auto_text[];
74         static const char *xyz_group[];
75         static const char *xyz_accel[];
76         static int auto_colors[];
77         static const char *toggle_text(toggleinfo *tp);
78
79         MWindow *mwindow;
80         GWindowToggle *toggles[NONAUTOTOGGLES_COUNT + AUTOMATION_TOTAL];
81         GWindowColorThread *color_thread;
82         GWindowToggle *camera_xyz, *projector_xyz;
83 };
84
85 class GWindowToggle : public BC_CheckBox
86 {
87 public:
88         GWindowToggle(GWindowGUI *gui, int x, int y,
89                 const char *text, int color, toggleinfo *info);
90         ~GWindowToggle();
91
92         int handle_event();
93         void update();
94         void update_gui(int color);
95         int draw_face(int flash, int flush);
96
97         int color;
98         int hot, hot_value;
99         toggleinfo *info;
100         GWindowGUI *gui;
101         GWindowColorButton *color_button;
102 };
103
104 class GWindowColorButton : public BC_Button
105 {
106 public:
107         GWindowColorButton(GWindowToggle *auto_toggle, int x, int y, int w);
108         ~GWindowColorButton();
109
110         void set_color(int color);
111         void update_gui(int color);
112         int handle_event();
113
114         int color;
115         VFrame *vframes[3];
116         GWindowToggle *auto_toggle;
117 };
118
119 class GWindowColorThread : public ColorPicker
120 {
121 public:
122         GWindowColorThread(GWindowGUI *gui, GWindowColorButton *color_button);
123         ~GWindowColorThread();
124         void start(int color);
125         int handle_new_color(int color, int alpha);
126         void update_gui();
127         void handle_done_event(int result);
128
129         GWindowGUI *gui;
130         int color;
131         GWindowColorButton *color_button;
132         GWindowColorUpdate *color_update;
133 };
134
135 class GWindowColorUpdate : public Thread
136 {
137 public:
138         GWindowColorUpdate(GWindowColorThread *color_thread);
139         ~GWindowColorUpdate();
140
141         void start();
142         void stop();
143         void run();
144
145         int done;
146         Condition *update_lock;
147         GWindowColorThread *color_thread;
148 };
149
150 #endif