]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/intl.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Internationalization and localisation for wxWindows
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "intl.h"
20 #include "wx/string.h"
22 // ============================================================================
24 // ============================================================================
26 // ----------------------------------------------------------------------------
28 // ----------------------------------------------------------------------------
30 // # adjust if necessary
31 typedef unsigned char uint8
;
32 typedef unsigned long uint32
;
34 // ----------------------------------------------------------------------------
36 // ----------------------------------------------------------------------------
38 // gettext() style macro
39 #define _(str) wxGetTranslation(str)
41 // ----------------------------------------------------------------------------
43 // ----------------------------------------------------------------------------
44 class WXDLLEXPORT wxLocale
;
45 class WXDLLEXPORT wxMsgCatalog
;
46 extern WXDLLEXPORT_DATA(wxLocale
*) g_pLocale
;
48 // ============================================================================
50 // ============================================================================
52 // ----------------------------------------------------------------------------
53 // wxLocale: encapsulates all language dependent settings, including current
54 // message catalogs, date, time and currency formats (#### to do) &c
55 // ----------------------------------------------------------------------------
56 class WXDLLEXPORT wxLocale
60 // the ctor has a side effect of changing current locale
61 wxLocale(const char *szName
, // name (for messages)
62 const char *szShort
= NULL
, // dir prefix (for msg files)
63 const char *szLocale
= NULL
, // locale (for setlocale)
64 bool bLoadDefault
= TRUE
); // preload wxstd.mo?
65 // restores old locale
68 // returns locale name
69 const char *GetLocale() const { return m_strLocale
; }
71 // add a catalog: it's searched for in standard places (current directory
72 // first, system one after). It will be used for message lookup by
75 // Returns 'true' if it was successfully loaded
76 bool AddCatalog(const char *szDomain
);
78 // check if the given catalog is loaded
79 bool IsLoaded(const char *szDomain
) const;
81 // retrieve the translation for a string in all loaded domains unless
82 // the szDomain parameter is specified (and then only this domain is
85 // return original string if translation is not available
86 // (in this case an error message is generated the first time
87 // a string is not found; use wxLogNull to suppress it)
89 // domains are searched in the last to first order, i.e. catalogs
90 // added later override those added before.
91 const char *GetString(const char *szOrigString
,
92 const char *szDomain
= NULL
) const;
95 // find catalog by name in a linked list, return NULL if !found
96 wxMsgCatalog
*FindCatalog(const char *szDomain
) const;
98 wxString m_strLocale
, // this locale name
99 m_strShort
; // short name for the locale
101 const char *m_pszOldLocale
; // previous locale from setlocale()
102 wxLocale
*m_pOldLocale
; // previous wxLocale
104 wxMsgCatalog
*m_pMsgCat
; // pointer to linked list of catalogs
107 // ----------------------------------------------------------------------------
109 // ----------------------------------------------------------------------------
110 inline WXDLLEXPORT wxLocale
* wxGetLocale() { return g_pLocale
; }
112 // get the translation of the string in the current locale
113 inline WXDLLEXPORT
const char *wxGetTranslation(const char *sz
)
115 wxLocale
*pLoc
= wxGetLocale();
116 return pLoc
== NULL
? sz
: pLoc
->GetString(sz
);