Hugintrunk  0.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LocalizedFileTipProvider.h
Go to the documentation of this file.
1 // -*- c-basic-offset: 4 -*-
24 #ifndef _LOCALIZED_FILE_TIP_PROVIDER_H
25 #define _LOCALIZED_FILE_TIP_PROVIDER_H
26 
27 #include "panoinc_WX.h"
28 
29 #include <wx/tipdlg.h>
30 
31 
37 class LocalizedFileTipProvider : public wxTipProvider
38 {
39 public:
40  LocalizedFileTipProvider(const wxString& filename, size_t currentTip);
41 
42  virtual wxString GetTip();
43 
44 private:
45  wxTextFile m_textfile;
46 };
47 
48 #endif // _LOCALIZED_FILE_TIP_PROVIDER_H
A tip file provider that uses gettext to translate the tips.
include file for the hugin project
LocalizedFileTipProvider(const wxString &filename, size_t currentTip)