~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to langtool/src/Paths.h

  • Committer: cecilios
  • Date: 2006-12-11 17:40:31 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:trunk:176

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//--------------------------------------------------------------------------------------
 
2
//    LenMus Phonascus: The teacher of music
 
3
//    Copyright (c) 2002-2006 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
#ifndef __LM_PATHS_H__
 
22
#define __LM_PATHS_H__
 
23
 
 
24
class wxFileName;
 
25
 
 
26
class lmPaths
 
27
{
 
28
public:
 
29
    lmPaths(wxString sBinPath);
 
30
    ~lmPaths();
 
31
 
 
32
    //Access to paths
 
33
    wxString GetLocalePath() { return m_sLocale; }
 
34
    wxString GetBooksRootPath() { return m_sBooksRoot; }
 
35
    wxString GetLenMusLocalePath() { return m_sLenMusLocale; }
 
36
 
 
37
 
 
38
private:
 
39
    void Init();
 
40
 
 
41
    // LangTool paths
 
42
    wxFileName  m_root;             // the root (instalation path) for LangTool
 
43
    wxString    m_sLocale;          // eMusicBooks translation files ( .mo catalogs)
 
44
 
 
45
    // LenMus paths
 
46
    wxString    m_sLenMus;          // the root (instalation path) for LenMus
 
47
    wxString    m_sLenMusLocale;    // locale root, for translating installation file
 
48
    wxString    m_sBooksRoot;       // root path for books (without the language subfolder)
 
49
 
 
50
};
 
51
 
 
52
extern lmPaths* g_pPaths;
 
53
 
 
54
#endif    // __LM_PATHS_H__