RafaMar + programmer friend Help button in Batch Render addition
[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_HARD_EDGES,
38         NONAUTOTOGGLES_CAMERA_XYZ,
39         NONAUTOTOGGLES_PROJECTOR_XYZ,
40         NONAUTOTOGGLES_BAR1,
41         NONAUTOTOGGLES_BAR2,
42         NONAUTOTOGGLES_BAR3,
43         NONAUTOTOGGLES_COUNT
44 };
45
46 struct toggleinfo {
47         int isauto, ref;
48 };
49
50 class GWindowGUI : public BC_Window
51 {
52 public:
53         GWindowGUI(MWindow *mwindow, int w, int h);
54         ~GWindowGUI();
55         static void calculate_extents(BC_WindowBase *gui, int *w, int *h);
56         void create_objects();
57         int translation_event();
58         int close_event();
59         int keypress_event();
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         GWindowToggle *camera_xyz, *projector_xyz, *hard_edges;
82 };
83
84 class GWindowToggle : public BC_CheckBox
85 {
86 public:
87         GWindowToggle(GWindowGUI *gui, int x, int y,
88                 const char *text, int color, toggleinfo *info);
89         ~GWindowToggle();
90
91         int handle_event();
92         void update();
93         void update_gui(int color);
94         int draw_face(int flash, int flush);
95
96         int color;
97         int hot, hot_value;
98         toggleinfo *info;
99         GWindowGUI *gui;
100         GWindowColorButton *color_button;
101 };
102
103 class GWindowColorButton : public ColorCircleButton
104 {
105 public:
106         GWindowColorButton(GWindowToggle *auto_toggle,
107                 int x, int y, int w, int color);
108         ~GWindowColorButton();
109         int handle_new_color(int color, int alpha);
110         void handle_done_event(int result);
111
112         GWindowToggle *auto_toggle;
113 };
114
115 #endif