| 1 | // | 
|---|
| 2 | //  winprefs.cc | 
|---|
| 3 | // | 
|---|
| 4 | //  Preferences page for window-related options. | 
|---|
| 5 | // | 
|---|
| 6 | //  Copyright (C) 2002 Mark R. Shinwell | 
|---|
| 7 | //  Copyright (C) 2004 Olly Betts | 
|---|
| 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA | 
|---|
| 22 | // | 
|---|
| 23 |  | 
|---|
| 24 | #ifdef HAVE_CONFIG_H | 
|---|
| 25 | #include <config.h> | 
|---|
| 26 | #endif | 
|---|
| 27 |  | 
|---|
| 28 | #include "winprefs.h" | 
|---|
| 29 | #include "message.h" | 
|---|
| 30 | #include "mainfrm.h" | 
|---|
| 31 |  | 
|---|
| 32 | static const wxWindowID ID_WIN_PREFS = 5011; | 
|---|
| 33 | static const wxWindowID ID_WIN_SIDE_PANEL = 4000; | 
|---|
| 34 |  | 
|---|
| 35 | BEGIN_EVENT_TABLE(WinPrefs, PanelDlgPage) | 
|---|
| 36 | EVT_CHECKBOX(ID_WIN_SIDE_PANEL, WinPrefs::OnSidePanel) | 
|---|
| 37 | EVT_UPDATE_UI(ID_WIN_SIDE_PANEL, WinPrefs::OnSidePanelUpdate) | 
|---|
| 38 | END_EVENT_TABLE() | 
|---|
| 39 |  | 
|---|
| 40 | WinPrefs::WinPrefs(MainFrm* parent, wxWindow* parent_win) : PanelDlgPage(parent_win, ID_WIN_PREFS), m_Parent(parent) | 
|---|
| 41 | { | 
|---|
| 42 | wxCheckBox* side_panel = new wxCheckBox(this, ID_WIN_SIDE_PANEL, msg(/*Display side panel*/373)); | 
|---|
| 43 |  | 
|---|
| 44 | wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL); | 
|---|
| 45 |  | 
|---|
| 46 | sizer->Add(side_panel, 0 /* not vertically stretchable */, wxALIGN_TOP); | 
|---|
| 47 |  | 
|---|
| 48 | SetAutoLayout(true); | 
|---|
| 49 | SetSizer(sizer); | 
|---|
| 50 | } | 
|---|
| 51 |  | 
|---|
| 52 | WinPrefs::~WinPrefs() | 
|---|
| 53 | { | 
|---|
| 54 |  | 
|---|
| 55 | } | 
|---|
| 56 |  | 
|---|
| 57 | const wxString WinPrefs::GetName() | 
|---|
| 58 | { | 
|---|
| 59 | return "Windows"; | 
|---|
| 60 | } | 
|---|
| 61 |  | 
|---|
| 62 | const wxBitmap WinPrefs::GetIcon() | 
|---|
| 63 | { | 
|---|
| 64 | return GetParent()->LoadPreferencesIcon("window"); | 
|---|
| 65 | } | 
|---|
| 66 |  | 
|---|
| 67 | void WinPrefs::OnSidePanel(wxCommandEvent&) | 
|---|
| 68 | { | 
|---|
| 69 | m_Parent->ToggleSidePanel(); | 
|---|
| 70 | } | 
|---|
| 71 |  | 
|---|
| 72 | void WinPrefs::OnSidePanelUpdate(wxUpdateUIEvent& ui) | 
|---|
| 73 | { | 
|---|
| 74 | ui.Check(m_Parent->ShowingSidePanel()); | 
|---|
| 75 | } | 
|---|
| 76 |  | 
|---|