]>
git.saurik.com Git - wxWidgets.git/blob - samples/internat/internat.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Demonstrates internationalisation (i18n) support
4 // Author: Vadim Zeitlin/Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
17 // For compilers that support precompilation, includes "wx/wx.h".
18 #include "wx/wxprec.h"
32 #if defined(__WXGTK__) || defined(__WXMOTIF__)
33 #include "mondrian.xpm"
36 // Define a new application type
37 class MyApp
: public wxApp
40 virtual bool OnInit();
43 wxLocale m_locale
; // locale we'll be using
46 // Define a new frame type
47 class MyFrame
: public wxFrame
50 MyFrame(wxFrame
*frame
, const char *title
, int x
, int y
, int w
, int h
);
53 void OnQuit(wxCommandEvent
& event
);
54 void OnAbout(wxCommandEvent
& event
);
55 void OnPlay(wxCommandEvent
& event
);
56 void OnOpen(wxCommandEvent
& event
);
57 bool OnClose() { return TRUE
; }
62 // ID for the menu commands
72 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
73 EVT_MENU(MINIMAL_QUIT
, MyFrame::OnQuit
)
74 EVT_MENU(MINIMAL_ABOUT
, MyFrame::OnAbout
)
75 EVT_MENU(MINIMAL_TEST
, MyFrame::OnPlay
)
76 EVT_MENU(MINIMAL_OPEN
, MyFrame::OnOpen
)
82 // `Main program' equivalent, creating windows and returning main app frame
85 // set the language to use
86 const char *language
= NULL
;
87 const char *langid
= NULL
;
91 // ignore the other args, fall through
107 // there are very few systems right now which support locales other than "C"
108 m_locale
.Init(language
, langid
, "C");
110 // Initialize the catalogs we'll be using
111 /* not needed any more, done in wxLocale ctor
112 m_locale.AddCatalog("wxstd"); // 1) for library messages
114 m_locale
.AddCatalog("internat"); // 2) our private one
115 /* this catalog is installed in standard location on Linux systems,
116 it might not be installed on yours - just ignore the errrors
117 or comment out this line then */
118 m_locale
.AddCatalog("fileutils"); // 3) and another just for testing
120 // Create the main frame window
121 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, _("International wxWindows App"),
125 frame
->SetIcon(wxICON(mondrian
));
128 wxMenu
*file_menu
= new wxMenu
;
129 file_menu
->Append(MINIMAL_ABOUT
, _("&About..."));
130 file_menu
->AppendSeparator();
131 file_menu
->Append(MINIMAL_QUIT
, _("E&xit"));
133 wxMenu
*test_menu
= new wxMenu
;
134 test_menu
->Append(MINIMAL_OPEN
, _("&Open bogus file"));
135 test_menu
->Append(MINIMAL_TEST
, _("&Play a game"));
137 wxMenuBar
*menu_bar
= new wxMenuBar
;
138 menu_bar
->Append(file_menu
, _("&File"));
139 menu_bar
->Append(test_menu
, _("&Test"));
140 frame
->SetMenuBar(menu_bar
);
149 // My frame constructor
150 MyFrame::MyFrame(wxFrame
*frame
, const char *title
, int x
, int y
, int w
, int h
)
151 : wxFrame(frame
, -1, title
, wxPoint(x
, y
), wxSize(w
, h
))
155 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
) )
160 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
162 wxMessageDialog(this, _("I18n sample\n"
163 "© 1998, 1999 Vadim Zeitlin and Julian Smart"),
164 _("About Internat"), wxOK
| wxICON_INFORMATION
).ShowModal();
167 void MyFrame::OnPlay(wxCommandEvent
& WXUNUSED(event
))
169 wxString str
= wxGetTextFromUser(_("Enter your number:"),
170 _("Try to guess my number!"),
176 sscanf(str
, "%d", &num
);
178 str
= _("You've probably entered an invalid number.");
179 else if ( num
== 9 ) // this message is not translated (not in catalog)
180 str
= "You've found a bug in this program!";
181 else if ( num
!= 17 ) // a more implicit way to write _()
182 str
= wxGetTranslation("Bad luck! try again...");
185 // string must be split in two -- otherwise the translation won't be found
186 str
<< _("Congratulations! you've won. Here is the magic phrase:")
187 << _("cannot create fifo `%s'");
190 wxMessageBox(str
, _("Result"), wxOK
| wxICON_INFORMATION
);
193 void MyFrame::OnOpen(wxCommandEvent
&)
195 // open a bogus file -- the error message should be also translated if you've
196 // got wxstd.mo somewhere in the search path
197 wxFile
file("NOTEXIST.ING");