1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
//---------------------------------------------------------------------------------------
// LenMus Phonascus: The teacher of music
// Copyright (c) 2002-2012 LenMus project
//
// This program is free software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
// PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along with this
// program. If not, see <http://www.gnu.org/licenses/>.
//
// For any comment, suggestion or feature request, please contact the manager of
// the project at cecilios@users.sourceforge.net
//
//---------------------------------------------------------------------------------------
#ifndef _LENMUS_OPTIONS_DLG_H_
#define _LENMUS_OPTIONS_DLG_H_
//lenmus
#include "lenmus_standard_header.h"
#include "lenmus_options_panel.h"
#include "lenmus_injectors.h"
//wxWidgets
#include <wx/wxprec.h>
#include <wx/wx.h>
#include <wx/splitter.h>
#include <wx/treectrl.h>
// Forward declarations
class wxSplitterWindow;
class wxTreeCtrl;
namespace lenmus
{
// Compatibility
#ifndef wxCLOSE_BOX
#define wxCLOSE_BOX 0x1000
#endif
#ifndef wxFIXED_MINSIZE
#define wxFIXED_MINSIZE 0
#endif
//---------------------------------------------------------------------------------------
//To give options' panels a name
enum EOptionsPanels
{
eOptLanguage = 0,
eOptColors,
eOptToolbars,
eOptInternet,
eOptOther,
//TO_ADD: Add, before this line, a new eOptXXXXXX code for the new options panel
eOptMaxValue // end of table
};
//---------------------------------------------------------------------------------------
class TreeItemData : public wxTreeItemData
{
public:
TreeItemData(long nOpt) : m_opt(nOpt) { }
long GetOptId() { return m_opt; }
private:
long m_opt;
};
//---------------------------------------------------------------------------------------
// OptionsDlg: main frame for option panels
class OptionsDlg : public wxDialog
{
private:
ApplicationScope& m_appScope;
// dialog controls
wxSplitterWindow* m_pSplitWindow;
wxTreeCtrl* m_pTreeCtrl;
OptionsPanel* m_pPanel; // current displayed panel
wxButton* m_pBtnOK;
wxButton* m_pBtnCancel;
wxButton* m_pBtnHelp;
//other member variables
OptionsPanel* m_cPanels[eOptMaxValue]; // options' panels collection
long m_nCurPanel; // index to current displayed panel
public:
OptionsDlg(wxWindow* parent, ApplicationScope& appScope);
~OptionsDlg();
// event handler declarations
void OnTreectrlItemSelected( wxTreeEvent& event );
void OnButtonAcceptClick(wxCommandEvent& event);
private:
void CreateControls();
bool SelectPanel(int nPanel);
void CreateImageList();
OptionsPanel* CreatePanel(EOptionsPanels nPanel);
DECLARE_EVENT_TABLE()
};
} // namespace lenmus
#endif // _LENMUS_OPTIONS_DLG_H_
|