Hugintrunk  0.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LensCalApp.h
Go to the documentation of this file.
1 // -*- c-basic-offset: 4 -*-
10 /*
11  * This is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation; either
14  * version 2 of the License, or (at your option) any later version.
15  *
16  * This software is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public
22  * License along with this software. If not, see
23  * <http://www.gnu.org/licenses/>.
24  *
25  */
26 
27 #ifndef LENSCALAPP_H
28 #define LENSCALAPP_H
29 
30 #include <wx/wx.h>
31 #include <huginapp/ImageCache.h>
32 
33 #include "LensCalFrame.h"
34 
37 class LensCalApp : public wxApp
38 {
39 public:
40  virtual bool OnInit();
41 #if wxUSE_ON_FATAL_EXCEPTION
42  virtual void OnFatalException() wxOVERRIDE;
43 #endif
44 
46  wxLocale & GetLocale()
47  {
48  return locale;
49  }
51  const wxString & GetXRCPath()
52  {
53  return m_xrcPrefix;
54  }
57  {
58  return m_frame;
59  };
60 
61 private:
63  wxLocale locale;
64  wxString m_xrcPrefix;
66 };
67 
68 DECLARE_APP(LensCalApp)
69 
70 #endif // LENSCALAPP_H
LensCalFrame * m_frame
Definition: LensCalApp.h:65
The main window frame.
Definition: LensCalFrame.h:56
wxLocale & GetLocale()
return currently active locale
Definition: LensCalApp.h:46
declaration of LensCal main frame class
LensCalFrame * GetLensCalFrame()
returns pointer to main frame
Definition: LensCalApp.h:56
const wxString & GetXRCPath()
return the current xrc path
Definition: LensCalApp.h:51
virtual bool OnInit()
Definition: LensCalApp.cpp:48
wxLocale locale
locale for internationalisation
Definition: LensCalApp.h:59
The application class for lens_calibrate_gui .
Definition: LensCalApp.h:37
wxString m_xrcPrefix
Definition: LensCalApp.h:64