Commit a79ca7b6 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/preferences.cpp: improved the preferences dialog box. It is almost useable now ;)
parent 00d327ff
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* wxwindows.h: private wxWindows interface description * wxwindows.h: private wxWindows interface description
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN * Copyright (C) 1999, 2000 VideoLAN
* $Id: wxwindows.h,v 1.12 2003/03/29 01:50:12 gbazin Exp $ * $Id: wxwindows.h,v 1.13 2003/03/30 02:58:36 gbazin Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -311,6 +311,7 @@ private: ...@@ -311,6 +311,7 @@ private:
}; };
/* Preferences Dialog */ /* Preferences Dialog */
class PrefsTreeCtrl;
class PrefsDialog: public wxDialog class PrefsDialog: public wxDialog
{ {
public: public:
...@@ -324,11 +325,14 @@ private: ...@@ -324,11 +325,14 @@ private:
/* Event handlers (these functions should _not_ be virtual) */ /* Event handlers (these functions should _not_ be virtual) */
void OnOk( wxCommandEvent& event ); void OnOk( wxCommandEvent& event );
void OnCancel( wxCommandEvent& event ); void OnCancel( wxCommandEvent& event );
void OnSave( wxCommandEvent& event );
DECLARE_EVENT_TABLE(); DECLARE_EVENT_TABLE();
intf_thread_t *p_intf; intf_thread_t *p_intf;
Interface *p_main_interface; Interface *p_main_interface;
PrefsTreeCtrl *prefs_tree;
}; };
/* Messages */ /* Messages */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment