X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fcinelerra%2Fpreferencesthread.h;fp=cinelerra-5.0%2Fcinelerra%2Fpreferencesthread.h;h=0000000000000000000000000000000000000000;hb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;hp=3e440a8ec1c86aab42bcaa0830821779670fc75b;hpb=52fcc46226f9df46f9ce9d0566dc568455a7db0b;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/cinelerra/preferencesthread.h b/cinelerra-5.0/cinelerra/preferencesthread.h deleted file mode 100644 index 3e440a8e..00000000 --- a/cinelerra-5.0/cinelerra/preferencesthread.h +++ /dev/null @@ -1,194 +0,0 @@ - -/* - * CINELERRA - * Copyright (C) 2008 Adam Williams - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - */ - -#ifndef PREFERENCESTHREAD_H -#define PREFERENCESTHREAD_H - -#include "bcdialog.h" -#include "edl.inc" -#include "guicast.h" -#include "mutex.inc" -#include "mwindow.inc" -#include "preferences.inc" -#include "preferencesthread.inc" - - -class PreferencesMenuitem : public BC_MenuItem -{ -public: - PreferencesMenuitem(MWindow *mwindow); - ~PreferencesMenuitem(); - - int handle_event(); - - MWindow *mwindow; - PreferencesThread *thread; -}; - -class PreferencesThread : public BC_DialogThread -{ -public: - PreferencesThread(MWindow *mwindow); - ~PreferencesThread(); - - BC_Window* new_gui(); - void handle_close_event(int result); -// update rendering rates - void update_rates(); -// update playback rate - int update_framerate(); - int apply_settings(); - const char* category_to_text(int category); - int text_to_category(const char *category); - - int current_dialog; - int thread_running; - int redraw_indexes; - int redraw_meters; - int redraw_times; - int redraw_overlays; - int rerender; - int close_assets; - int reload_plugins; - PreferencesWindow *window; - MWindow *mwindow; -// Copy of mwindow preferences - Preferences *preferences; - EDL *edl; - -// Categories -#define CATEGORIES 6 - enum - { - PLAYBACK_A, - PLAYBACK_B, - RECORD, - PERFORMANCE, - INTERFACE, - ABOUT - }; -}; - -class PreferencesDialog : public BC_SubWindow -{ -public: - PreferencesDialog(MWindow *mwindow, PreferencesWindow *pwindow); - virtual ~PreferencesDialog(); - - virtual void create_objects() {} -// update playback rate - virtual int draw_framerate(int flush) { return 0; } -// update rendering rates - virtual void update_rates() {} - virtual int show_window(int flush) { return BC_SubWindow::show_window(flush); } - - PreferencesWindow *pwindow; - MWindow *mwindow; - Preferences *preferences; -}; - -class PreferencesCategory; -class PreferencesButton; - -class PreferencesWindow : public BC_Window -{ -public: - PreferencesWindow(MWindow *mwindow, - PreferencesThread *thread, - int x, - int y); - ~PreferencesWindow(); - - void create_objects(); - int delete_current_dialog(); - int set_current_dialog(int number); - int update_framerate(); - void update_rates(); - void show_dialog() { dialog->show_window(0); } - MWindow *mwindow; - PreferencesThread *thread; - ArrayList categories; - PreferencesCategory *category; - PreferencesButton *category_button[CATEGORIES]; - -private: - PreferencesDialog *dialog; -}; - -class PreferencesButton : public BC_GenericButton -{ -public: - PreferencesButton(MWindow *mwindow, - PreferencesThread *thread, - int x, - int y, - int category, - const char *text, - VFrame **images); - - int handle_event(); - - MWindow *mwindow; - PreferencesThread *thread; - int category; -}; - -class PreferencesCategory : public BC_PopupTextBox -{ -public: - PreferencesCategory(MWindow *mwindow, PreferencesThread *thread, int x, int y); - ~PreferencesCategory(); - int handle_event(); - MWindow *mwindow; - PreferencesThread *thread; -}; - -class PreferencesApply : public BC_GenericButton -{ -public: - PreferencesApply(MWindow *mwindow, PreferencesThread *thread); - int handle_event(); - MWindow *mwindow; - PreferencesThread *thread; -}; - -class PreferencesOK : public BC_GenericButton -{ -public: - PreferencesOK(MWindow *mwindow, PreferencesThread *thread); - int keypress_event(); - int handle_event(); - MWindow *mwindow; - PreferencesThread *thread; -}; - -class PreferencesCancel : public BC_GenericButton -{ -public: - PreferencesCancel(MWindow *mwindow, PreferencesThread *thread); - int keypress_event(); - int handle_event(); - MWindow *mwindow; - PreferencesThread *thread; -}; - - -#endif