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
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
//-------------------------------------------------------------------------------------
22
/*! @file ToolbarsOptPanel.h
23
@brief Header file for class lmToolbarsOptPanel
24
@ingroup options_management
26
#ifndef __TOOLBARSOPTPANEL_H__
27
#define __TOOLBARSOPTPANEL_H__
29
#if defined(__GNUG__) && !defined(__APPLE__)
30
#pragma interface "lmToolbarsOptPanel.cpp"
33
#include "OptionsPanel.h"
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
54
class lmToolbarsOptPanel: public lmOptionsPanel
56
DECLARE_DYNAMIC_CLASS(lmToolbarsOptPanel)
60
lmToolbarsOptPanel() {} //default constructor for dynamic creation
61
lmToolbarsOptPanel(wxWindow* parent);
62
~lmToolbarsOptPanel();
72
#endif // __TOOLBARSOPTPANEL_H__