]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/translation.h
Ignore time component of SYSTEMTIME in wxCalendarCtrl.
[wxWidgets.git] / include / wx / translation.h
index 3dcd97ab2a96109784ec0c53e43337f8c54eb0a0..de0e0d793a2619fba553d396587f872dda09b3a2 100644 (file)
@@ -18,6 +18,7 @@
 
 #if wxUSE_INTL
 
+#include "wx/buffer.h"
 #include "wx/language.h"
 
 #if !wxUSE_UNICODE
@@ -90,9 +91,11 @@ public:
     // check if the given catalog is loaded
     bool IsLoaded(const wxString& domain) const;
 
-    // load catalog data directly from file
+    // load catalog data directly from file or memory
     bool LoadCatalogFile(const wxString& filename,
                          const wxString& domain = wxEmptyString);
+    bool LoadCatalogData(const wxScopedCharTypeBuffer<char>& data,
+                         const wxString& domain = wxEmptyString);
 
     // access to translations
     const wxString& GetString(const wxString& origString,
@@ -148,6 +151,7 @@ public:
                              const wxString& domain, const wxString& lang) = 0;
 };
 
+
 // standard wxTranslationsLoader implementation, using filesystem
 class WXDLLIMPEXP_BASE wxFileTranslationsLoader
     : public wxTranslationsLoader
@@ -160,6 +164,25 @@ public:
 };
 
 
+#ifdef __WINDOWS__
+// loads translations from win32 resources
+class WXDLLIMPEXP_BASE wxResourceTranslationsLoader
+    : public wxTranslationsLoader
+{
+public:
+    virtual bool LoadCatalog(wxTranslations *translations,
+                             const wxString& domain, const wxString& lang);
+
+protected:
+    // returns resource type to use for translations
+    virtual wxString GetResourceType() const { return "MOFILE"; }
+
+    // returns module to load resources from
+    virtual WXHINSTANCE GetModule() const { return 0; }
+};
+#endif // __WINDOWS__
+
+
 // ----------------------------------------------------------------------------
 // global functions
 // ----------------------------------------------------------------------------