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
22 #ifndef PREFERENCESTHREAD_H
23 #define PREFERENCESTHREAD_H
29 #include "mwindow.inc"
30 #include "preferences.inc"
31 #include "preferencesthread.inc"
34 class PreferencesMenuitem : public BC_MenuItem
37 PreferencesMenuitem(MWindow *mwindow);
38 ~PreferencesMenuitem();
43 PreferencesThread *thread;
46 class PreferencesThread : public BC_DialogThread
49 PreferencesThread(MWindow *mwindow);
53 void handle_close_event(int result);
54 // update rendering rates
56 // update playback rate
57 int update_framerate();
59 const char* category_to_text(int category);
60 int text_to_category(const char *category);
71 PreferencesWindow *window;
73 // Copy of mwindow preferences
74 Preferences *preferences;
91 class PreferencesDialog : public BC_SubWindow
94 PreferencesDialog(MWindow *mwindow, PreferencesWindow *pwindow);
95 virtual ~PreferencesDialog();
97 virtual void create_objects() {}
98 // update playback rate
99 virtual int draw_framerate(int flush) { return 0; }
100 // update rendering rates
101 virtual void update_rates() {}
102 virtual int show_window(int flush) { return BC_SubWindow::show_window(flush); }
104 PreferencesWindow *pwindow;
106 Preferences *preferences;
109 class PreferencesCategory;
110 class PreferencesButton;
112 class PreferencesWindow : public BC_Window
115 PreferencesWindow(MWindow *mwindow,
116 PreferencesThread *thread,
117 int x, int y, int w, int h);
118 ~PreferencesWindow();
120 void create_objects();
121 int delete_current_dialog();
122 int set_current_dialog(int number);
123 int update_framerate();
125 void show_dialog() { dialog->show_window(0); }
127 PreferencesThread *thread;
128 ArrayList<BC_ListBoxItem*> categories;
129 PreferencesCategory *category;
130 PreferencesButton *category_button[CATEGORIES];
133 PreferencesDialog *dialog;
136 class PreferencesButton : public BC_GenericButton
139 PreferencesButton(MWindow *mwindow,
140 PreferencesThread *thread,
150 PreferencesThread *thread;
154 class PreferencesCategory : public BC_PopupTextBox
157 PreferencesCategory(MWindow *mwindow, PreferencesThread *thread, int x, int y);
158 ~PreferencesCategory();
161 PreferencesThread *thread;
164 class PreferencesApply : public BC_GenericButton
167 PreferencesApply(MWindow *mwindow, PreferencesThread *thread);
169 int resize_event(int w, int h);
171 PreferencesThread *thread;
174 class PreferencesOK : public BC_GenericButton
177 PreferencesOK(MWindow *mwindow, PreferencesThread *thread);
178 int keypress_event();
180 int resize_event(int w, int h);
182 PreferencesThread *thread;
185 class PreferencesCancel : public BC_GenericButton
188 PreferencesCancel(MWindow *mwindow, PreferencesThread *thread);
189 int keypress_event();
191 int resize_event(int w, int h);
193 PreferencesThread *thread;