~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/options/ToolbarsOptPanel.h

  • Committer: cecilios
  • Date: 2006-03-05 11:33:10 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:trunk:2
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// RCS-ID: $Id: ToolbarsOptPanel.h,v 1.3 2006/02/23 19:22:19 cecilios Exp $
 
2
//--------------------------------------------------------------------------------------
 
3
//    LenMus Phonascus: The teacher of music
 
4
//    Copyright (c) 2002-2006 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
/*! @file ToolbarsOptPanel.h
 
23
    @brief Header file for class lmToolbarsOptPanel
 
24
    @ingroup options_management
 
25
*/
 
26
#ifndef __TOOLBARSOPTPANEL_H__
 
27
#define __TOOLBARSOPTPANEL_H__
 
28
 
 
29
#if defined(__GNUG__) && !defined(__APPLE__)
 
30
#pragma interface "lmToolbarsOptPanel.cpp"
 
31
#endif
 
32
 
 
33
#include "OptionsPanel.h"
 
34
 
 
35
 
 
36
// Control identifiers
 
37
#define ID_WIZARD 10000
 
38
#define SYMBOL_MIDIWIZARD_IDNAME ID_WIZARD
 
39
#define ID_WIZARD_DEVICES_PAGE 10001
 
40
#define ID_COMBO_OUT_DEVICES 10004
 
41
#define ID_COMBO_IN_DEVICES 10005
 
42
#define ID_WIZARD_INSTRUMENTS_PAGE 10002
 
43
#define ID_COMBO_CHANNEL 10008
 
44
#define ID_COMBO_SECTION 10006
 
45
#define ID_COMBO_INSTRUMENT 10007
 
46
#define ID_BUTTON_TEST_SOUND 10009
 
47
#define ID_WIZARD_METRONOME_PAGE 10003
 
48
#define ID_COMBO_MTR_CHANNEL 10010
 
49
#define ID_COMBO_MTR_INSTR1 10011
 
50
#define ID_COMBO_MTR_INSTR2 10012
 
51
#define ID_BUTTON 10013
 
52
 
 
53
 
 
54
class lmToolbarsOptPanel: public lmOptionsPanel
 
55
{    
 
56
    DECLARE_DYNAMIC_CLASS(lmToolbarsOptPanel)
 
57
    DECLARE_EVENT_TABLE()
 
58
 
 
59
public:
 
60
    lmToolbarsOptPanel() {}    //default constructor for dynamic creation
 
61
    lmToolbarsOptPanel(wxWindow* parent);
 
62
    ~lmToolbarsOptPanel();
 
63
    bool Verify();
 
64
    void Apply();
 
65
 
 
66
private:
 
67
    // member variables
 
68
    int     m_nSizeIndex;
 
69
    int     m_nLabelsIndex;
 
70
};
 
71
 
 
72
#endif    // __TOOLBARSOPTPANEL_H__