]> git.sesse.net Git - vlc/blob - modules/gui/beos/PreferencesWindow.h
* modules/gui/wxwindows/*: misc improvements to the main interface, implementation of
[vlc] / modules / gui / beos / PreferencesWindow.h
1 /*****************************************************************************
2  * PreferencesWindow.h
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: PreferencesWindow.h,v 1.1 2002/10/28 17:18:18 titer Exp $
6  *
7  * Authors: Eric Petit <titer@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef BEOS_PREFERENCES_WINDOW_H
25 #define BEOS_PREFERENCES_WINDOW_H
26
27 #include <Window.h>
28
29 #define PREFS_OK      'prok'
30 #define PREFS_CANCEL  'prca'
31 #define SLIDER_UPDATE 'slup'
32
33 class PreferencesWindow : public BWindow
34 {
35     public:
36                          PreferencesWindow( BRect frame,
37                                             const char* name,
38                                             intf_thread_t *p_interface );
39         virtual          ~PreferencesWindow();
40         virtual bool     QuitRequested();
41         virtual void     MessageReceived(BMessage *message);
42         virtual void     FrameResized(float width, float height);
43         void             ReallyQuit();
44
45     private:
46         void             CancelChanges();
47         void             ApplyChanges();
48         intf_thread_t *  p_intf;
49         BView *          p_preferences_view;
50         BSlider *        p_pp_slider;
51         BSlider *        p_lum_slider;
52         BStringView *    p_restart_string;
53 };
54
55 #endif  // BEOS_PREFERENCES_WINDOW_H
56