~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to include/lenmus_tonality_constrains.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
 
//    LenMus Phonascus: The teacher of music
3
 
//    Copyright (c) 2002-2012 LenMus project
4
 
//
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.
8
 
//
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.
12
 
//
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/>.
15
 
//
16
 
//    For any comment, suggestion or feature request, please contact the manager of
17
 
//    the project at cecilios@users.sourceforge.net
18
 
//
19
 
//---------------------------------------------------------------------------------------
20
 
 
21
 
#ifndef __LENMUS_TONALITY_CONSTRAINS_H__        //to avoid nested includes
22
 
#define __LENMUS_TONALITY_CONSTRAINS_H__
23
 
 
24
 
//lenmus
25
 
#include "lenmus_standard_header.h"
26
 
#include "lenmus_generators.h"
27
 
#include "lenmus_constrains.h"
28
 
 
29
 
//wxWidgets
30
 
#include <wx/wxprec.h>
31
 
#include <wx/wx.h>
32
 
 
33
 
 
34
 
namespace lenmus
35
 
{
36
 
 
37
 
class TonalityConstrains : public ExerciseOptions
38
 
{
39
 
public:
40
 
    TonalityConstrains(wxString sSection, ApplicationScope& appScope);
41
 
    ~TonalityConstrains() {}
42
 
 
43
 
    inline KeyConstrains* GetKeyConstrains() { return &m_oValidKeys; }
44
 
 
45
 
    inline bool UseMajorMinorButtons() { return m_fUseMajorMinorButtons; }
46
 
 
47
 
    inline void UseMajorMinorButtons(bool fValue) { m_fUseMajorMinorButtons = fValue; }
48
 
 
49
 
    inline bool IsValidKey(EKeySignature nKey) {
50
 
        return m_oValidKeys.IsValid(nKey);
51
 
    }
52
 
 
53
 
    inline void SetSection(wxString sSection) {
54
 
        m_sSection = sSection;
55
 
        load_settings();
56
 
    }
57
 
 
58
 
    void save_settings();
59
 
 
60
 
private:
61
 
    void load_settings();
62
 
 
63
 
    bool              m_fUseMajorMinorButtons;
64
 
    KeyConstrains     m_oValidKeys;           //allowed key signatures
65
 
};
66
 
 
67
 
 
68
 
}   //namespace lenmus
69
 
 
70
 
#endif  // __LENMUS_TONALITY_CONSTRAINS_H__