~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/options/ToolbarsOptPanel.h

  • Committer: cecilios
  • Date: 2007-05-19 11:39:03 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:trunk:236

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
//--------------------------------------------------------------------------------------
 
3
//    LenMus Phonascus: The teacher of music
 
4
//    Copyright (c) 2002-2007 Cecilio Salmeron
 
5
//
 
6
//    This program is free software; you can redistribute it and/or modify it under the 
 
7
//    terms of the GNU General Public License as published by the Free Software Foundation;
 
8
//    either version 2 of the License, or (at your option) any later version.
 
9
//
 
10
//    This program is distributed in the hope that it will be useful, but WITHOUT ANY 
 
11
//    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
 
12
//    PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 
13
//
 
14
//    You should have received a copy of the GNU General Public License along with this 
 
15
//    program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, 
 
16
//    Fifth Floor, Boston, MA  02110-1301, USA.
 
17
//
 
18
//    For any comment, suggestion or feature request, please contact the manager of 
 
19
//    the project at cecilios@users.sourceforge.net
 
20
//
 
21
//-------------------------------------------------------------------------------------
 
22
 
 
23
#ifndef __TOOLBARSOPTPANEL_H__
 
24
#define __TOOLBARSOPTPANEL_H__
 
25
 
 
26
#if defined(__GNUG__) && !defined(__APPLE__)
 
27
#pragma interface "lmToolbarsOptPanel.cpp"
 
28
#endif
 
29
 
 
30
#include "OptionsPanel.h"
 
31
 
 
32
 
 
33
// Control identifiers
 
34
#define ID_WIZARD 10000
 
35
#define SYMBOL_MIDIWIZARD_IDNAME ID_WIZARD
 
36
#define ID_WIZARD_DEVICES_PAGE 10001
 
37
#define ID_COMBO_OUT_DEVICES 10004
 
38
#define ID_COMBO_IN_DEVICES 10005
 
39
#define ID_WIZARD_INSTRUMENTS_PAGE 10002
 
40
#define ID_COMBO_CHANNEL 10008
 
41
#define ID_COMBO_SECTION 10006
 
42
#define ID_COMBO_INSTRUMENT 10007
 
43
#define ID_BUTTON_TEST_SOUND 10009
 
44
#define ID_WIZARD_METRONOME_PAGE 10003
 
45
#define ID_COMBO_MTR_CHANNEL 10010
 
46
#define ID_COMBO_MTR_INSTR1 10011
 
47
#define ID_COMBO_MTR_INSTR2 10012
 
48
#define ID_BUTTON 10013
 
49
 
 
50
 
 
51
class lmToolbarsOptPanel: public lmOptionsPanel
 
52
{    
 
53
    DECLARE_DYNAMIC_CLASS(lmToolbarsOptPanel)
 
54
    DECLARE_EVENT_TABLE()
 
55
 
 
56
public:
 
57
    lmToolbarsOptPanel() {}    //default constructor for dynamic creation
 
58
    lmToolbarsOptPanel(wxWindow* parent);
 
59
    ~lmToolbarsOptPanel();
 
60
    bool Verify();
 
61
    void Apply();
 
62
 
 
63
private:
 
64
    // member variables
 
65
    int     m_nSizeIndex;
 
66
    int     m_nLabelsIndex;
 
67
};
 
68
 
 
69
#endif    // __TOOLBARSOPTPANEL_H__