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;
90 class PreferencesDialog : public BC_SubWindow
93 PreferencesDialog(MWindow *mwindow, PreferencesWindow *pwindow);
94 virtual ~PreferencesDialog();
96 virtual void create_objects() {}
97 // update playback rate
98 virtual int draw_framerate(int flush) { return 0; }
99 // update rendering rates
100 virtual void update_rates() {}
101 virtual int show_window(int flush) { return BC_SubWindow::show_window(flush); }
103 PreferencesWindow *pwindow;
105 Preferences *preferences;
108 class PreferencesCategory;
109 class PreferencesButton;
111 class PreferencesWindow : public BC_Window
114 PreferencesWindow(MWindow *mwindow,
115 PreferencesThread *thread,
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);
170 PreferencesThread *thread;
173 class PreferencesOK : public BC_GenericButton
176 PreferencesOK(MWindow *mwindow, PreferencesThread *thread);
177 int keypress_event();
180 PreferencesThread *thread;
183 class PreferencesCancel : public BC_GenericButton
186 PreferencesCancel(MWindow *mwindow, PreferencesThread *thread);
187 int keypress_event();
190 PreferencesThread *thread;