~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/ldp_parser/AuxString.h

  • Committer: cecilios
  • Date: 2012-09-11 16:59:18 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:branches/TRY-5.0:730
Paths: fixed problem with installation folders. Fixed Chinese ISO language code

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//--------------------------------------------------------------------------------------
2
 
//    LenMus Phonascus: The teacher of music
3
 
//    Copyright (c) 2002-2007 Cecilio Salmeron
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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, 
15
 
//    Fifth Floor, Boston, MA  02110-1301, USA.
16
 
//
17
 
//    For any comment, suggestion or feature request, please contact the manager of 
18
 
//    the project at cecilios@users.sourceforge.net
19
 
//
20
 
//-------------------------------------------------------------------------------------
21
 
/*! @file AuxString.h
22
 
    @brief Header file for auxiliary global functions to verify / convert strings
23
 
    @ingroup ldp_parser
24
 
*/
25
 
#ifdef __GNUG__
26
 
// #pragma interface
27
 
#endif
28
 
 
29
 
#ifndef __AUXSTRING_H        //to avoid nested includes
30
 
#define __AUXSTRING_H
31
 
 
32
 
#include "../score/Score.h"
33
 
 
34
 
extern bool PitchNameToData(wxString sPitch, int* pPitch, EAccidentals* pAccidentals);
35
 
extern bool StringToPitch(wxString sStep, wxString sOctave, int* pPitch);
36
 
extern int LetterToStep(wxString sStep);
37
 
extern void LoadCboBoxWithNoteNames(wxComboBox* pCboBox, lmPitch nSelNote);
38
 
extern void LoadCboBoxWithNoteNames(wxComboBox* pCboBox, wxString sNoteName);
39
 
 
40
 
 
41
 
// LDP related
42
 
extern bool LDPDataToPitch(wxString sPitch, EAccidentals* pAccidentals,
43
 
                           wxString* sStep, wxString* sOctave);
44
 
 
45
 
extern float SrcGetPatternDuracion(wxString sPattern);
46
 
extern float SrcGetElementDuracion(wxString sElement);
47
 
extern int SrcSplitPattern(wxString sSource);
48
 
extern bool SrcIsRest(wxString sElement);
49
 
 
50
 
 
51
 
extern EClefType LDPNameToClef(wxString sClefName);
52
 
extern EKeySignatures LDPInternalNameToKey(wxString sKeyName);
53
 
 
54
 
 
55
 
 
56
 
// MusicXML related 
57
 
extern bool XmlDataToClef(wxString sClefLine, EClefType* pClef);
58
 
extern bool XmlDataToBarStyle(wxString sBarStyle, EBarline* pType);
59
 
 
60
 
#endif    // __AUXSTRING_H