[d0867c3] | 1 | // |
---|
| 2 | // winprefs.cc |
---|
| 3 | // |
---|
| 4 | // Preferences page for window-related options. |
---|
| 5 | // |
---|
| 6 | // Copyright (C) 2002 Mark R. Shinwell |
---|
[3675a18] | 7 | // Copyright (C) 2004 Olly Betts |
---|
[d0867c3] | 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-1307 USA |
---|
| 22 | // |
---|
| 23 | |
---|
[cbfa50d] | 24 | #ifdef HAVE_CONFIG_H |
---|
| 25 | #include <config.h> |
---|
| 26 | #endif |
---|
| 27 | |
---|
[d0867c3] | 28 | #include "winprefs.h" |
---|
| 29 | #include "message.h" |
---|
[203d2a7] | 30 | #include "mainfrm.h" |
---|
[d0867c3] | 31 | |
---|
| 32 | static const wxWindowID ID_WIN_PREFS = 5011; |
---|
| 33 | static const wxWindowID ID_WIN_SIDE_PANEL = 4000; |
---|
| 34 | |
---|
[203d2a7] | 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) |
---|
[d0867c3] | 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 | { |
---|
[3675a18] | 64 | return GetParent()->LoadPreferencesIcon("window"); |
---|
[d0867c3] | 65 | } |
---|
| 66 | |
---|
[203d2a7] | 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 | |
---|