]> git.saurik.com Git - wxWidgets.git/blame - samples/internat/internat.cpp
Committing in .
[wxWidgets.git] / samples / internat / internat.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: internat.cpp
c7f3b78b 3// Purpose: Demonstrates internationalisation (i18n) support
c801d85f
KB
4// Author: Vadim Zeitlin/Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6aa89a22 8// Copyright: (c) Julian Smart
c7f3b78b 9// Licence: wxWindows license
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
017fcf32
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
c801d85f
KB
19
20// For compilers that support precompilation, includes "wx/wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24#pragma hdrstop
25#endif
26
27#ifndef WX_PRECOMP
28#include "wx/wx.h"
29#endif
30
31#include "wx/intl.h"
c7f3b78b 32#include "wx/file.h"
c801d85f
KB
33#include "wx/log.h"
34
618f2efa 35#if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__)
47908e25
RR
36#include "mondrian.xpm"
37#endif
38
017fcf32
VZ
39// ----------------------------------------------------------------------------
40// private classes
41// ----------------------------------------------------------------------------
42
c801d85f
KB
43// Define a new application type
44class MyApp: public wxApp
45{
46public:
aec18ff7 47 virtual bool OnInit();
c7f3b78b 48
c801d85f 49protected:
aec18ff7 50 wxLocale m_locale; // locale we'll be using
c801d85f
KB
51};
52
53// Define a new frame type
54class MyFrame: public wxFrame
aec18ff7 55{
c7f3b78b 56public:
017fcf32 57 MyFrame(wxLocale& m_locale);
c7f3b78b
VZ
58
59public:
aec18ff7
MB
60 void OnQuit(wxCommandEvent& event);
61 void OnAbout(wxCommandEvent& event);
62 void OnPlay(wxCommandEvent& event);
63 void OnOpen(wxCommandEvent& event);
64
65 DECLARE_EVENT_TABLE()
66
67 wxLocale& m_locale;
c801d85f
KB
68};
69
017fcf32
VZ
70// ----------------------------------------------------------------------------
71// constants
72// ----------------------------------------------------------------------------
73
c801d85f 74// ID for the menu commands
c7f3b78b
VZ
75enum
76{
017fcf32
VZ
77 INTERNAT_QUIT = 1,
78 INTERNAT_TEXT,
79 INTERNAT_TEST,
80 INTERNAT_OPEN
c7f3b78b 81};
c801d85f 82
017fcf32
VZ
83// ----------------------------------------------------------------------------
84// wxWindows macros
85// ----------------------------------------------------------------------------
86
c801d85f 87BEGIN_EVENT_TABLE(MyFrame, wxFrame)
017fcf32 88 EVT_MENU(INTERNAT_QUIT, MyFrame::OnQuit)
aec18ff7 89 EVT_MENU(wxID_ABOUT, MyFrame::OnAbout)
017fcf32
VZ
90 EVT_MENU(INTERNAT_TEST, MyFrame::OnPlay)
91 EVT_MENU(INTERNAT_OPEN, MyFrame::OnOpen)
c801d85f
KB
92END_EVENT_TABLE()
93
94IMPLEMENT_APP(MyApp)
95
017fcf32
VZ
96// ============================================================================
97// implementation
98// ============================================================================
99
100// ----------------------------------------------------------------------------
101// MyApp
102// ----------------------------------------------------------------------------
c801d85f 103
071cc2be 104// `Main program' equivalent, creating windows and returning main app frame
fd323a5e 105bool MyApp::OnInit()
c801d85f 106{
017fcf32
VZ
107 long lng = -1;
108
109 if ( argc == 2 )
aec18ff7 110 {
017fcf32 111 // the parameter must be the lang index
5c0ee4a8
MB
112 wxString tmp(argv[1]);
113 tmp.ToLong(&lng);
017fcf32
VZ
114 }
115
a2f26963
VZ
116 static const wxLanguage langIds[] =
117 {
118 wxLANGUAGE_DEFAULT,
119 wxLANGUAGE_FRENCH,
120 wxLANGUAGE_GERMAN,
121 wxLANGUAGE_RUSSIAN,
65dc921d 122#if wxUSE_UNICODE
a2f26963 123 wxLANGUAGE_JAPANESE,
65dc921d
VS
124 wxLANGUAGE_GEORGIAN,
125#endif
a2f26963 126 wxLANGUAGE_ENGLISH,
65dc921d 127 wxLANGUAGE_ENGLISH_US
a2f26963
VZ
128 };
129
017fcf32
VZ
130 if ( lng == -1 )
131 {
a2f26963
VZ
132 // note that it makes no sense to translate these strings, they are
133 // shown before we set the locale anyhow
134 const wxString langNames[] =
017fcf32 135 {
a2f26963 136 _T("System default"),
017fcf32
VZ
137 _T("French"),
138 _T("German"),
139 _T("Russian"),
65dc921d
VS
140#if wxUSE_UNICODE
141 _T("Japanese"),
96c0a516 142 _T("Georgian"),
65dc921d 143#endif
017fcf32
VZ
144 _T("English"),
145 _T("English (U.S.)")
146 };
147
a2f26963
VZ
148 // the arrays should be in sync
149 wxCOMPILE_TIME_ASSERT( WXSIZEOF(langNames) == WXSIZEOF(langIds),
150 LangArraysMismatch );
151
017fcf32
VZ
152 lng = wxGetSingleChoiceIndex
153 (
154 _T("Please choose language:"),
155 _T("Language"),
a2f26963
VZ
156 WXSIZEOF(langNames),
157 langNames
017fcf32
VZ
158 );
159 }
160
a2f26963
VZ
161 if ( lng != -1 )
162 m_locale.Init(langIds[lng]);
aec18ff7 163
017fcf32 164
aec18ff7 165 // Initialize the catalogs we'll be using
017fcf32
VZ
166 m_locale.AddCatalog(wxT("internat"));
167
168 // this catalog is installed in standard location on Linux systems and
169 // shows that you may make use of the standard message catalogs as well
170 //
171 // if it's not installed on your system, it is just silently ignored
8e97b17b 172#ifdef __LINUX__
aec18ff7 173 {
017fcf32
VZ
174 wxLogNull noLog;
175 m_locale.AddCatalog(_T("fileutils"));
aec18ff7 176 }
8e97b17b 177#endif
aec18ff7
MB
178
179 // Create the main frame window
017fcf32 180 MyFrame *frame = new MyFrame(m_locale);
aec18ff7
MB
181
182 // Give it an icon
183 frame->SetIcon(wxICON(mondrian));
184
185 // Make a menubar
186 wxMenu *file_menu = new wxMenu;
187 file_menu->Append(wxID_ABOUT, _("&About..."));
188 file_menu->AppendSeparator();
017fcf32 189 file_menu->Append(INTERNAT_QUIT, _("E&xit"));
aec18ff7
MB
190
191 wxMenu *test_menu = new wxMenu;
017fcf32
VZ
192 test_menu->Append(INTERNAT_OPEN, _("&Open bogus file"));
193 test_menu->Append(INTERNAT_TEST, _("&Play a game"));
aec18ff7
MB
194
195 wxMenuBar *menu_bar = new wxMenuBar;
196 menu_bar->Append(file_menu, _("&File"));
197 menu_bar->Append(test_menu, _("&Test"));
198 frame->SetMenuBar(menu_bar);
199
200 // Show the frame
201 frame->Show(TRUE);
202 SetTopWindow(frame);
203
204 return TRUE;
c801d85f
KB
205}
206
017fcf32
VZ
207// ----------------------------------------------------------------------------
208// MyFrame
209// ----------------------------------------------------------------------------
210
211// main frame constructor
212MyFrame::MyFrame(wxLocale& locale)
213 : wxFrame(NULL,
214 -1,
215 _("International wxWindows App"),
216 wxPoint(50, 50),
217 wxSize(350, 60)),
218 m_locale(locale)
c7f3b78b 219{
aec18ff7 220 // Empty
c7f3b78b 221}
c801d85f 222
bd7d06f2 223void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event) )
c801d85f 224{
aec18ff7 225 Close(TRUE);
c801d85f
KB
226}
227
bd7d06f2 228void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
c801d85f 229{
aec18ff7 230 wxString localeInfo;
2b5f62a0
VZ
231 wxString locale = m_locale.GetLocale();
232 wxString sysname = m_locale.GetSysName();
233 wxString canname = m_locale.GetCanonicalName();
234
085c26ac 235 localeInfo.Printf(_("Language: %s\nSystem locale name: %s\nCanonical locale name: %s\n"),
2b5f62a0 236 locale.c_str(), sysname.c_str(), canname.c_str() );
aec18ff7 237
085c26ac
VZ
238 wxMessageDialog
239 (
240 this,
241 wxString(_("I18n sample\n(c) 1998, 1999 Vadim Zeitlin and Julian Smart"))
242 + wxT("\n\n")
243 + localeInfo,
244 _("About Internat"),
245 wxOK | wxICON_INFORMATION
246 ).ShowModal();
c801d85f
KB
247}
248
bd7d06f2 249void MyFrame::OnPlay(wxCommandEvent& WXUNUSED(event))
c7f3b78b 250{
085c26ac
VZ
251 wxString str = wxGetTextFromUser
252 (
253 _("Enter your number:"),
254 _("Try to guess my number!"),
255 wxEmptyString,
256 this
257 );
258
259 if ( str.empty() )
260 {
261 // cancelled
262 return;
263 }
aec18ff7 264
085c26ac
VZ
265 long num;
266 if ( !str.ToLong(&num) || num < 0 )
267 {
aec18ff7 268 str = _("You've probably entered an invalid number.");
085c26ac
VZ
269 }
270 else if ( num == 9 )
271 {
272 // this message is not translated (not in catalog) because we used _T()
273 // and not _() around it
2b5f62a0 274 str = _T("You've found a bug in this program!");
085c26ac
VZ
275 }
276 else if ( num == 17 )
aec18ff7 277 {
085c26ac
VZ
278 str.clear();
279
280 // string must be split in two -- otherwise the translation would't be
281 // found
aec18ff7
MB
282 str << _("Congratulations! you've won. Here is the magic phrase:")
283 << _("cannot create fifo `%s'");
284 }
085c26ac
VZ
285 else
286 {
287 // this is a more implicit way to write _() but note that if you use it
288 // you must ensure that the strings get extracted in the message
289 // catalog as by default xgettext won't do it (it only knows of _(),
290 // not wxGetTranslation())
291 str = wxGetTranslation(_T("Bad luck! try again..."));
292 }
aec18ff7
MB
293
294 wxMessageBox(str, _("Result"), wxOK | wxICON_INFORMATION);
c7f3b78b
VZ
295}
296
297void MyFrame::OnOpen(wxCommandEvent&)
298{
aec18ff7
MB
299 // open a bogus file -- the error message should be also translated if you've
300 // got wxstd.mo somewhere in the search path
301 wxFile file(wxT("NOTEXIST.ING"));
071cc2be 302}
085c26ac 303