4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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.
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.
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
25 #include "automation.inc"
26 #include "condition.inc"
27 #include "colorpicker.h"
29 #include "gwindowgui.inc"
30 #include "mwindow.inc"
33 NONAUTOTOGGLES_ASSETS,
34 NONAUTOTOGGLES_TITLES,
35 NONAUTOTOGGLES_TRANSITIONS,
36 NONAUTOTOGGLES_PLUGIN_AUTOS,
46 class GWindowGUI : public BC_Window
49 GWindowGUI(MWindow *mwindow, int w, int h);
51 static void calculate_extents(BC_WindowBase *gui, int *w, int *h);
52 void create_objects();
53 int translation_event();
56 void start_color_thread(GWindowColorButton *color_button);
57 void update_toggles(int use_lock);
58 void update_mwindow();
62 static const char *other_text[];
63 static const char *auto_text[];
64 static int auto_colors[];
67 GWindowToggle *toggles[NONAUTOTOGGLES_COUNT + AUTOMATION_TOTAL];
68 GWindowColorThread *color_thread;
71 class GWindowToggle : public BC_CheckBox
74 GWindowToggle(MWindow *mwindow, GWindowGUI *gui, int x, int y,
75 const char *text, int color, toggleinfo *info);
80 void update_gui(int color);
82 static int* get_main_value(MWindow *mwindow, toggleinfo *info);
88 GWindowColorButton *color_button;
91 class GWindowColorButton : public BC_Button
94 GWindowColorButton(GWindowToggle *auto_toggle, int x, int y, int w);
95 ~GWindowColorButton();
97 void set_color(int color);
98 void update_gui(int color);
103 GWindowToggle *auto_toggle;
106 class GWindowColorThread : public ColorThread
109 GWindowColorThread(GWindowColorButton *color_button);
110 ~GWindowColorThread();
111 void start(int color);
112 int handle_new_color(int color, int alpha);
114 void handle_done_event(int result);
117 GWindowColorButton *color_button;
118 GWindowColorUpdate *color_update;
121 class GWindowColorUpdate : public Thread
124 GWindowColorUpdate(GWindowColorThread *color_thread);
125 ~GWindowColorUpdate();
132 Condition *update_lock;
133 GWindowColorThread *color_thread;