1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Demonstrates internationalisation (i18n) support
4 // Author: Vadim Zeitlin/Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
34 #include "wx/cmdline.h"
36 #if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__)
37 #include "mondrian.xpm"
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
44 // Define a new application type
45 class MyApp
: public wxApp
48 MyApp() { m_lang
= wxLANGUAGE_UNKNOWN
; }
50 virtual void OnInitCmdLine(wxCmdLineParser
& parser
);
51 virtual bool OnCmdLineParsed(wxCmdLineParser
& parser
);
52 virtual bool OnInit();
55 wxLanguage m_lang
; // language specified by user
56 wxLocale m_locale
; // locale we'll be using
59 // Define a new frame type
60 class MyFrame
: public wxFrame
63 MyFrame(wxLocale
& m_locale
);
66 void OnTestLocaleAvail(wxCommandEvent
& event
);
67 void OnAbout(wxCommandEvent
& event
);
68 void OnQuit(wxCommandEvent
& event
);
70 void OnPlay(wxCommandEvent
& event
);
71 void OnOpen(wxCommandEvent
& event
);
72 void OnTest1(wxCommandEvent
& event
);
73 void OnTest2(wxCommandEvent
& event
);
74 void OnTest3(wxCommandEvent
& event
);
81 // ----------------------------------------------------------------------------
83 // ----------------------------------------------------------------------------
85 // ID for the menu commands
88 INTERNAT_TEST
= wxID_HIGHEST
+ 1,
96 static const wxLanguage langIds
[] =
102 wxLANGUAGE_BULGARIAN
,
106 #if wxUSE_UNICODE || defined(__WXMOTIF__)
112 wxLANGUAGE_ENGLISH_US
,
114 wxLANGUAGE_ARABIC_EGYPT
118 // note that it makes no sense to translate these strings, they are
119 // shown before we set the locale anyhow
120 const wxString langNames
[] =
122 _T("System default"),
130 #if wxUSE_UNICODE || defined(__WXMOTIF__)
136 _T("English (U.S.)"),
142 // the arrays must be in sync
143 wxCOMPILE_TIME_ASSERT( WXSIZEOF(langNames
) == WXSIZEOF(langIds
),
144 LangArraysMismatch
);
146 // ----------------------------------------------------------------------------
148 // ----------------------------------------------------------------------------
150 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
151 EVT_MENU(INTERNAT_TEST
, MyFrame::OnTestLocaleAvail
)
152 EVT_MENU(wxID_ABOUT
, MyFrame::OnAbout
)
153 EVT_MENU(wxID_EXIT
, MyFrame::OnQuit
)
155 EVT_MENU(INTERNAT_PLAY
, MyFrame::OnPlay
)
156 EVT_MENU(wxID_OPEN
, MyFrame::OnOpen
)
157 EVT_MENU(INTERNAT_TEST_1
, MyFrame::OnTest1
)
158 EVT_MENU(INTERNAT_TEST_2
, MyFrame::OnTest2
)
159 EVT_MENU(INTERNAT_TEST_3
, MyFrame::OnTest3
)
164 // ============================================================================
166 // ============================================================================
168 // ----------------------------------------------------------------------------
170 // ----------------------------------------------------------------------------
172 // command line arguments handling
173 void MyApp::OnInitCmdLine(wxCmdLineParser
& parser
)
175 parser
.AddParam(_("locale"),
176 wxCMD_LINE_VAL_STRING
,
177 wxCMD_LINE_PARAM_OPTIONAL
);
179 wxApp::OnInitCmdLine(parser
);
182 bool MyApp::OnCmdLineParsed(wxCmdLineParser
& parser
)
184 if ( !wxApp::OnCmdLineParsed(parser
) )
187 if ( parser
.GetParamCount() )
189 const wxString loc
= parser
.GetParam();
190 const wxLanguageInfo
* const lang
= wxLocale::FindLanguageInfo(loc
);
193 wxLogError(_("Locale \"%s\" is unknown."), loc
);
197 m_lang
= wx_static_cast(wxLanguage
, lang
->Language
);
203 // `Main program' equivalent, creating windows and returning main app frame
206 if ( !wxApp::OnInit() )
209 if ( m_lang
== wxLANGUAGE_UNKNOWN
)
211 int lng
= wxGetSingleChoiceIndex
213 _("Please choose language:"),
218 m_lang
= lng
== -1 ? wxLANGUAGE_DEFAULT
: langIds
[lng
];
221 if ( m_lang
!= wxLANGUAGE_DEFAULT
)
223 // don't use wxLOCALE_LOAD_DEFAULT flag so that Init() doesn't return
224 // false just because it failed to load wxstd catalog
225 if ( !m_locale
.Init(m_lang
, wxLOCALE_CONV_ENCODING
) )
227 wxLogWarning(_("This language is not supported by the system."));
229 // continue nevertheless
233 // normally this wouldn't be necessary as the catalog files would be found
234 // in the default locations, but when the program is not installed the
235 // catalogs are in the build directory where we wouldn't find them by
237 wxLocale::AddCatalogLookupPathPrefix(wxT("."));
239 // Initialize the catalogs we'll be using
240 m_locale
.AddCatalog(wxT("internat"));
242 // this catalog is installed in standard location on Linux systems and
243 // shows that you may make use of the standard message catalogs as well
245 // if it's not installed on your system, it is just silently ignored
249 m_locale
.AddCatalog(_T("fileutils"));
253 // Create the main frame window
254 MyFrame
*frame
= new MyFrame(m_locale
);
257 frame
->SetIcon(wxICON(mondrian
));
260 wxMenu
*file_menu
= new wxMenu
;
261 file_menu
->Append(INTERNAT_TEST
, _("&Test locale availability...\tCtrl-T"));
262 file_menu
->AppendSeparator();
263 file_menu
->Append(wxID_ABOUT
, _("&About..."));
264 file_menu
->AppendSeparator();
265 file_menu
->Append(wxID_EXIT
, _("E&xit"));
267 wxMenu
*test_menu
= new wxMenu
;
268 test_menu
->Append(wxID_OPEN
, _("&Open bogus file"));
269 test_menu
->Append(INTERNAT_PLAY
, _("&Play a game"));
270 test_menu
->AppendSeparator();
271 test_menu
->Append(INTERNAT_TEST_1
, _("&1 _() (gettext)"));
272 test_menu
->Append(INTERNAT_TEST_2
, _("&2 _N() (ngettext)"));
273 test_menu
->Append(INTERNAT_TEST_3
, _("&3 wxTRANSLATE() (gettext_noop)"));
275 wxMenuBar
*menu_bar
= new wxMenuBar
;
276 menu_bar
->Append(file_menu
, _("&File"));
277 menu_bar
->Append(test_menu
, _("&Test"));
278 frame
->SetMenuBar(menu_bar
);
287 // ----------------------------------------------------------------------------
289 // ----------------------------------------------------------------------------
291 // main frame constructor
292 MyFrame::MyFrame(wxLocale
& locale
)
295 _("International wxWidgets App")),
298 // this demonstrates RTL layout mirroring for Arabic locales
299 wxSizer
*sizer
= new wxBoxSizer(wxHORIZONTAL
);
300 sizer
->Add(new wxStaticText(this, wxID_ANY
, _("First")),
301 wxSizerFlags().Border());
302 sizer
->Add(new wxStaticText(this, wxID_ANY
, _("Second")),
303 wxSizerFlags().Border());
307 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
) )
312 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
315 wxString locale
= m_locale
.GetLocale();
316 wxString sysname
= m_locale
.GetSysName();
317 wxString canname
= m_locale
.GetCanonicalName();
319 localeInfo
.Printf(_("Language: %s\nSystem locale name:\n%s\nCanonical locale name: %s\n"),
320 locale
.c_str(), sysname
.c_str(), canname
.c_str() );
324 wxString(_("I18n sample\n(c) 1998, 1999 Vadim Zeitlin and Julian Smart"))
328 wxOK
| wxICON_INFORMATION
333 void MyFrame::OnPlay(wxCommandEvent
& WXUNUSED(event
))
335 wxString str
= wxGetTextFromUser
337 _("Enter your number:"),
338 _("Try to guess my number!"),
350 if ( !str
.ToLong(&num
) || num
< 0 )
352 str
= _("You've probably entered an invalid number.");
356 // this message is not translated (not in catalog) because we used _T()
357 // and not _() around it
358 str
= _T("You've found a bug in this program!");
360 else if ( num
== 17 )
364 // string must be split in two -- otherwise the translation would't be
366 str
<< _("Congratulations! you've won. Here is the magic phrase:")
367 << _("cannot create fifo `%s'");
371 // this is a more implicit way to write _() but note that if you use it
372 // you must ensure that the strings get extracted in the message
373 // catalog as by default xgettext won't do it (it only knows of _(),
374 // not wxGetTranslation())
375 str
= wxGetTranslation(_T("Bad luck! try again..."));
378 wxMessageBox(str
, _("Result"), wxOK
| wxICON_INFORMATION
);
381 void MyFrame::OnTestLocaleAvail(wxCommandEvent
& WXUNUSED(event
))
383 static wxString s_locale
;
384 wxString locale
= wxGetTextFromUser
386 _("Enter the locale to test"),
387 wxGetTextFromUserPromptStr
,
391 if ( locale
.empty() )
395 const wxLanguageInfo
* const info
= wxLocale::FindLanguageInfo(s_locale
);
398 wxLogError(_("Locale \"%s\" is unknown."), s_locale
.c_str());
402 if ( wxLocale::IsAvailable(info
->Language
) )
403 wxLogMessage(_("Locale \"%s\" is available."), s_locale
.c_str());
405 wxLogWarning(_("Locale \"%s\" is not available."), s_locale
.c_str());
408 void MyFrame::OnOpen(wxCommandEvent
& WXUNUSED(event
))
410 // open a bogus file -- the error message should be also translated if
411 // you've got wxstd.mo somewhere in the search path
412 wxFile
file(wxT("NOTEXIST.ING"));
415 void MyFrame::OnTest1(wxCommandEvent
& WXUNUSED(event
))
417 const wxChar
* title
= _("Testing _() (gettext)");
418 wxTextEntryDialog
d(this, _("Please enter text to translate"),
419 title
, wxTRANSLATE("default value"));
420 if (d
.ShowModal() == wxID_OK
)
422 wxString v
= d
.GetValue();
424 s
<< _T("\n") << v
<< _T(" -> ")
425 << wxGetTranslation(v
.c_str()) << _T("\n");
430 void MyFrame::OnTest2(wxCommandEvent
& WXUNUSED(event
))
432 const wxChar
* title
= _("Testing _N() (ngettext)");
433 wxTextEntryDialog
d(this,
434 _("Please enter range for plural forms of \"n files deleted\" phrase"),
436 if (d
.ShowModal() == wxID_OK
)
439 wxSscanf(d
.GetValue(), _T("%d-%d"), &first
, &last
);
442 for (int n
= first
; n
<= last
; ++n
)
445 wxPLURAL("file deleted", "files deleted", n
) <<
452 void MyFrame::OnTest3(wxCommandEvent
& WXUNUSED(event
))
454 const char* lines
[] =
456 wxTRANSLATE("line 1"),
457 wxTRANSLATE("line 2"),
458 wxTRANSLATE("line 3"),
460 wxString
s(_("Testing wxTRANSLATE() (gettext_noop)"));
462 for (size_t i
= 0; i
< WXSIZEOF(lines
); ++i
)
464 s
<< lines
[i
] << _T(" -> ") << wxGetTranslation(lines
[i
]) << _T("\n");