source: git/src/winprefs.cc @ ecbc6c18

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since ecbc6c18 was ecbc6c18, checked in by Olly Betts <olly@…>, 14 years ago

src/: Update FSF address in licence notices.

git-svn-id: file:///home/survex-svn/survex/branches/survex-1_1@3417 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 2.0 KB
Line 
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
32static const wxWindowID ID_WIN_PREFS = 5011;
33static const wxWindowID ID_WIN_SIDE_PANEL = 4000;
34
35BEGIN_EVENT_TABLE(WinPrefs, PanelDlgPage)
36    EVT_CHECKBOX(ID_WIN_SIDE_PANEL, WinPrefs::OnSidePanel)
37    EVT_UPDATE_UI(ID_WIN_SIDE_PANEL, WinPrefs::OnSidePanelUpdate)
38END_EVENT_TABLE()
39
40WinPrefs::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
52WinPrefs::~WinPrefs()
53{
54
55}
56
57const wxString WinPrefs::GetName()
58{
59    return "Windows";
60}
61
62const wxBitmap WinPrefs::GetIcon()
63{
64    return GetParent()->LoadPreferencesIcon("window");
65}
66
67void WinPrefs::OnSidePanel(wxCommandEvent&)
68{
69    m_Parent->ToggleSidePanel();
70}
71
72void WinPrefs::OnSidePanelUpdate(wxUpdateUIEvent& ui)
73{
74    ui.Check(m_Parent->ShowingSidePanel());
75}
76
Note: See TracBrowser for help on using the repository browser.