1
//---------------------------------------------------------------------------------------
2
// LenMus Phonascus: The teacher of music
3
// Copyright (c) 2002-2012 LenMus project
5
// This program is free software; you can redistribute it and/or modify it under the
6
// terms of the GNU General Public License as published by the Free Software Foundation,
7
// either version 3 of the License, or (at your option) any later version.
9
// This program is distributed in the hope that it will be useful, but WITHOUT ANY
10
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11
// PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
// You should have received a copy of the GNU General Public License along with this
14
// program. If not, see <http://www.gnu.org/licenses/>.
16
// For any comment, suggestion or feature request, please contact the manager of
17
// the project at cecilios@users.sourceforge.net
19
//---------------------------------------------------------------------------------------
21
#ifndef __LENMUS_LANG_OPT_PANEL_H__
22
#define __LENMUS_LANG_OPT_PANEL_H__
25
#include "lenmus_standard_header.h"
26
#include "lenmus_options_panel.h"
29
#include <wx/wxprec.h>
35
//---------------------------------------------------------------------------------------
36
class LangOptionsPanel : public OptionsPanel
39
LangOptionsPanel(wxWindow* parent, ApplicationScope& appScope);
45
void create_controls();
48
wxPanel* m_pTitlePannel;
49
wxStaticText* m_pTitle;
50
wxStaticBitmap* m_pTitleIcon;
51
wxStaticText* m_pLang;
54
// other member variables
56
wxArrayString m_cLangCodes;
57
wxArrayString m_cLangNames;
64
#endif // __LENMUS_LANG_OPT_PANEL_H__