1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/translation.h
3 // Purpose: Internationalization and localisation for wxWidgets
4 // Author: Vadim Zeitlin, Vaclav Slavik,
5 // Michael N. Filippov <michael@idisys.iae.nsk.su>
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // (c) 2010 Vaclav Slavik <vslavik@fastmail.fm>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_TRANSLATION_H_
14 #define _WX_TRANSLATION_H_
17 #include "wx/string.h"
21 #include "wx/buffer.h"
22 #include "wx/language.h"
23 #include "wx/hashmap.h"
24 #include "wx/strconv.h"
25 #include "wx/scopedptr.h"
27 // ============================================================================
29 // ============================================================================
31 // ----------------------------------------------------------------------------
33 // ----------------------------------------------------------------------------
35 // gettext() style macros (notice that xgettext should be invoked with
36 // --keyword="_" --keyword="wxPLURAL:1,2" options
37 // to extract the strings from the sources)
38 #ifndef WXINTL_NO_GETTEXT_MACRO
39 #define _(s) wxGetTranslation((s))
40 #define wxPLURAL(sing, plur, n) wxGetTranslation((sing), (plur), n)
43 // another one which just marks the strings for extraction, but doesn't
44 // perform the translation (use -kwxTRANSLATE with xgettext!)
45 #define wxTRANSLATE(str) str
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 class WXDLLIMPEXP_FWD_BASE wxArrayString
;
52 class WXDLLIMPEXP_FWD_BASE wxTranslationsLoader
;
53 class WXDLLIMPEXP_FWD_BASE wxLocale
;
55 class wxPluralFormsCalculator
;
56 wxDECLARE_SCOPED_PTR(wxPluralFormsCalculator
, wxPluralFormsCalculatorPtr
)
58 // ----------------------------------------------------------------------------
59 // wxMsgCatalog corresponds to one loaded message catalog.
60 // ----------------------------------------------------------------------------
62 class WXDLLIMPEXP_BASE wxMsgCatalog
65 // Ctor is protected, because CreateFromXXX functions must be used,
66 // but destruction should be unrestricted
71 // load the catalog from disk or from data; caller is responsible for
72 // deleting them if not NULL
73 static wxMsgCatalog
*CreateFromFile(const wxString
& filename
,
74 const wxString
& domain
);
76 static wxMsgCatalog
*CreateFromData(const wxScopedCharBuffer
& data
,
77 const wxString
& domain
);
79 // get name of the catalog
80 wxString
GetDomain() const { return m_domain
; }
82 // get the translated string: returns NULL if not found
83 const wxString
*GetString(const wxString
& sz
, unsigned n
= UINT_MAX
) const;
86 wxMsgCatalog(const wxString
& domain
)
87 : m_pNext(NULL
), m_domain(domain
)
94 // variable pointing to the next element in a linked list (or NULL)
95 wxMsgCatalog
*m_pNext
;
96 friend class wxTranslations
;
98 wxStringToStringHashMap m_messages
; // all messages in the catalog
99 wxString m_domain
; // name of the domain
102 // the conversion corresponding to this catalog charset if we installed it
107 wxPluralFormsCalculatorPtr m_pluralFormsCalculator
;
110 // ----------------------------------------------------------------------------
111 // wxTranslations: message catalogs
112 // ----------------------------------------------------------------------------
114 // this class allows to get translations for strings
115 class WXDLLIMPEXP_BASE wxTranslations
121 // returns current translations object, may return NULL
122 static wxTranslations
*Get();
123 // sets current translations object (takes ownership; may be NULL)
124 static void Set(wxTranslations
*t
);
126 // changes loader to non-default one; takes ownership of 'loader'
127 void SetLoader(wxTranslationsLoader
*loader
);
129 void SetLanguage(wxLanguage lang
);
130 void SetLanguage(const wxString
& lang
);
132 // get languages available for this app
133 wxArrayString
GetAvailableTranslations(const wxString
& domain
) const;
135 // find best translation language for given domain
136 wxString
GetBestTranslation(const wxString
& domain
, wxLanguage msgIdLanguage
);
137 wxString
GetBestTranslation(const wxString
& domain
,
138 const wxString
& msgIdLanguage
= "en");
140 // add standard wxWidgets catalog ("wxstd")
141 bool AddStdCatalog();
143 // add catalog with given domain name and language, looking it up via
144 // wxTranslationsLoader
145 bool AddCatalog(const wxString
& domain
);
146 bool AddCatalog(const wxString
& domain
, wxLanguage msgIdLanguage
);
148 bool AddCatalog(const wxString
& domain
,
149 wxLanguage msgIdLanguage
,
150 const wxString
& msgIdCharset
);
153 // check if the given catalog is loaded
154 bool IsLoaded(const wxString
& domain
) const;
156 // access to translations
157 const wxString
& GetString(const wxString
& origString
,
158 const wxString
& domain
= wxEmptyString
) const;
159 const wxString
& GetString(const wxString
& origString
,
160 const wxString
& origString2
,
162 const wxString
& domain
= wxEmptyString
) const;
164 wxString
GetHeaderValue(const wxString
& header
,
165 const wxString
& domain
= wxEmptyString
) const;
167 // this is hack to work around a problem with wxGetTranslation() which
168 // returns const wxString& and not wxString, so when it returns untranslated
169 // string, it needs to have a copy of it somewhere
170 static const wxString
& GetUntranslatedString(const wxString
& str
);
173 // perform loading of the catalog via m_loader
174 bool LoadCatalog(const wxString
& domain
, const wxString
& lang
);
176 // find catalog by name in a linked list, return NULL if !found
177 wxMsgCatalog
*FindCatalog(const wxString
& domain
) const;
179 // same as Set(), without taking ownership; only for wxLocale
180 static void SetNonOwned(wxTranslations
*t
);
181 friend class wxLocale
;
185 wxTranslationsLoader
*m_loader
;
187 wxMsgCatalog
*m_pMsgCat
; // pointer to linked list of catalogs
191 // abstraction of translations discovery and loading
192 class WXDLLIMPEXP_BASE wxTranslationsLoader
195 wxTranslationsLoader() {}
196 virtual ~wxTranslationsLoader() {}
198 virtual wxMsgCatalog
*LoadCatalog(const wxString
& domain
,
199 const wxString
& lang
) = 0;
201 virtual wxArrayString
GetAvailableTranslations(const wxString
& domain
) const = 0;
205 // standard wxTranslationsLoader implementation, using filesystem
206 class WXDLLIMPEXP_BASE wxFileTranslationsLoader
207 : public wxTranslationsLoader
210 static void AddCatalogLookupPathPrefix(const wxString
& prefix
);
212 virtual wxMsgCatalog
*LoadCatalog(const wxString
& domain
,
213 const wxString
& lang
);
215 virtual wxArrayString
GetAvailableTranslations(const wxString
& domain
) const;
220 // loads translations from win32 resources
221 class WXDLLIMPEXP_BASE wxResourceTranslationsLoader
222 : public wxTranslationsLoader
225 virtual wxMsgCatalog
*LoadCatalog(const wxString
& domain
,
226 const wxString
& lang
);
228 virtual wxArrayString
GetAvailableTranslations(const wxString
& domain
) const;
231 // returns resource type to use for translations
232 virtual wxString
GetResourceType() const { return "MOFILE"; }
234 // returns module to load resources from
235 virtual WXHINSTANCE
GetModule() const { return 0; }
237 #endif // __WINDOWS__
240 // ----------------------------------------------------------------------------
242 // ----------------------------------------------------------------------------
244 // get the translation of the string in the current locale
245 inline const wxString
& wxGetTranslation(const wxString
& str
,
246 const wxString
& domain
= wxEmptyString
)
248 wxTranslations
*trans
= wxTranslations::Get();
250 return trans
->GetString(str
, domain
);
252 // NB: this function returns reference to a string, so we have to keep
253 // a copy of it somewhere
254 return wxTranslations::GetUntranslatedString(str
);
257 inline const wxString
& wxGetTranslation(const wxString
& str1
,
258 const wxString
& str2
,
260 const wxString
& domain
= wxEmptyString
)
262 wxTranslations
*trans
= wxTranslations::Get();
264 return trans
->GetString(str1
, str2
, n
, domain
);
266 // NB: this function returns reference to a string, so we have to keep
267 // a copy of it somewhere
269 ? wxTranslations::GetUntranslatedString(str1
)
270 : wxTranslations::GetUntranslatedString(str2
);
275 // the macros should still be defined - otherwise compilation would fail
277 #if !defined(WXINTL_NO_GETTEXT_MACRO)
281 #define wxPLURAL(sing, plur, n) ((n) == 1 ? (sing) : (plur))
284 #define wxTRANSLATE(str) str
286 // NB: we use a template here in order to avoid using
287 // wxLocale::GetUntranslatedString() above, which would be required if
288 // we returned const wxString&; this way, the compiler should be able to
289 // optimize wxGetTranslation() away
291 template<typename TString
>
292 inline TString
wxGetTranslation(TString str
)
295 template<typename TString
, typename TDomain
>
296 inline TString
wxGetTranslation(TString str
, TDomain
WXUNUSED(domain
))
299 template<typename TString
, typename TDomain
>
300 inline TString
wxGetTranslation(TString str1
, TString str2
, size_t n
)
301 { return n
== 1 ? str1
: str2
; }
303 template<typename TString
, typename TDomain
>
304 inline TString
wxGetTranslation(TString str1
, TString str2
, size_t n
,
305 TDomain
WXUNUSED(domain
))
306 { return n
== 1 ? str1
: str2
; }
308 #endif // wxUSE_INTL/!wxUSE_INTL
310 // define this one just in case it occurs somewhere (instead of preferred
312 #if !defined(WXINTL_NO_GETTEXT_MACRO)
313 #if !defined(gettext_noop)
314 #define gettext_noop(str) (str)
321 #endif // _WX_TRANSLATION_H_