2
//--------------------------------------------------------------------------------------
3
// LenMus Phonascus: The teacher of music
4
// Copyright (c) 2002-2007 Cecilio Salmeron
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.
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.
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.
18
// For any comment, suggestion or feature request, please contact the manager of
19
// the project at cecilios@users.sourceforge.net
21
//-------------------------------------------------------------------------------------
23
#ifndef __TOOLBARSOPTPANEL_H__
24
#define __TOOLBARSOPTPANEL_H__
26
#if defined(__GNUG__) && !defined(__APPLE__)
27
#pragma interface "lmToolbarsOptPanel.cpp"
30
#include "OptionsPanel.h"
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
51
class lmToolbarsOptPanel: public lmOptionsPanel
53
DECLARE_DYNAMIC_CLASS(lmToolbarsOptPanel)
57
lmToolbarsOptPanel() {} //default constructor for dynamic creation
58
lmToolbarsOptPanel(wxWindow* parent);
59
~lmToolbarsOptPanel();
69
#endif // __TOOLBARSOPTPANEL_H__