1998-05-20 14:01:55 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Name: internat.cpp
|
1998-07-17 21:21:02 +00:00
|
|
|
|
// Purpose: Demonstrates internationalisation (i18n) support
|
1998-05-20 14:01:55 +00:00
|
|
|
|
// Author: Vadim Zeitlin/Julian Smart
|
|
|
|
|
// Modified by:
|
|
|
|
|
// Created: 04/01/98
|
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
|
// Copyright: (c) Julian Smart and Markus Holzem
|
1998-07-17 21:21:02 +00:00
|
|
|
|
// Licence: wxWindows license
|
1998-05-20 14:01:55 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma implementation
|
|
|
|
|
#pragma interface
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
|
#pragma hdrstop
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
|
#include "wx/wx.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "wx/intl.h"
|
1998-07-17 21:21:02 +00:00
|
|
|
|
#include "wx/file.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
#include "wx/log.h"
|
|
|
|
|
|
1999-01-01 19:13:35 +00:00
|
|
|
|
#if defined(__WXGTK__) || defined(__WXMOTIF__)
|
1998-07-31 20:04:04 +00:00
|
|
|
|
#include "mondrian.xpm"
|
|
|
|
|
#endif
|
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
|
// Define a new application type
|
|
|
|
|
class MyApp: public wxApp
|
|
|
|
|
{
|
|
|
|
|
public:
|
1998-07-17 21:21:02 +00:00
|
|
|
|
virtual bool OnInit();
|
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
|
protected:
|
1998-07-17 21:21:02 +00:00
|
|
|
|
wxLocale m_locale; // locale we'll be using
|
1998-05-20 14:01:55 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Define a new frame type
|
|
|
|
|
class MyFrame: public wxFrame
|
1998-07-17 21:21:02 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MyFrame(wxFrame *frame, const char *title, int x, int y, int w, int h);
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
|
void OnPlay(wxCommandEvent& event);
|
|
|
|
|
void OnOpen(wxCommandEvent& event);
|
1999-02-05 23:55:04 +00:00
|
|
|
|
|
1998-07-17 21:21:02 +00:00
|
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 14:01:55 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// ID for the menu commands
|
1998-07-17 21:21:02 +00:00
|
|
|
|
enum
|
|
|
|
|
{
|
1999-08-28 16:50:39 +00:00
|
|
|
|
MINIMAL_QUIT = 1,
|
1998-07-17 21:21:02 +00:00
|
|
|
|
MINIMAL_TEXT,
|
|
|
|
|
MINIMAL_ABOUT,
|
|
|
|
|
MINIMAL_TEST,
|
|
|
|
|
MINIMAL_OPEN
|
|
|
|
|
};
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
1998-07-17 21:21:02 +00:00
|
|
|
|
EVT_MENU(MINIMAL_QUIT, MyFrame::OnQuit)
|
|
|
|
|
EVT_MENU(MINIMAL_ABOUT, MyFrame::OnAbout)
|
|
|
|
|
EVT_MENU(MINIMAL_TEST, MyFrame::OnPlay)
|
|
|
|
|
EVT_MENU(MINIMAL_OPEN, MyFrame::OnOpen)
|
1998-05-20 14:01:55 +00:00
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
|
|
IMPLEMENT_APP(MyApp)
|
|
|
|
|
|
|
|
|
|
|
1998-08-03 23:03:59 +00:00
|
|
|
|
// `Main program' equivalent, creating windows and returning main app frame
|
1999-01-13 19:01:43 +00:00
|
|
|
|
bool MyApp::OnInit()
|
1998-05-20 14:01:55 +00:00
|
|
|
|
{
|
1999-01-13 19:01:43 +00:00
|
|
|
|
// set the language to use
|
|
|
|
|
const char *language = NULL;
|
|
|
|
|
const char *langid = NULL;
|
|
|
|
|
switch ( argc )
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
// ignore the other args, fall through
|
|
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
|
language = argv[1];
|
|
|
|
|
langid = argv[2];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
|
language = argv[1];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
language = "french";
|
|
|
|
|
langid = "fr";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// there are very few systems right now which support locales other than "C"
|
|
|
|
|
m_locale.Init(language, langid, "C");
|
1998-08-03 23:03:59 +00:00
|
|
|
|
|
1999-01-13 19:01:43 +00:00
|
|
|
|
// Initialize the catalogs we'll be using
|
1998-05-20 14:01:55 +00:00
|
|
|
|
/* not needed any more, done in wxLocale ctor
|
|
|
|
|
m_locale.AddCatalog("wxstd"); // 1) for library messages
|
|
|
|
|
*/
|
|
|
|
|
m_locale.AddCatalog("internat"); // 2) our private one
|
1998-07-17 21:21:02 +00:00
|
|
|
|
/* this catalog is installed in standard location on Linux systems,
|
1998-05-20 14:01:55 +00:00
|
|
|
|
it might not be installed on yours - just ignore the errrors
|
|
|
|
|
or comment out this line then */
|
1999-08-28 16:50:39 +00:00
|
|
|
|
// m_locale.AddCatalog("fileutils"); // 3) and another just for testing
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
|
|
// Create the main frame window
|
1999-01-13 19:01:43 +00:00
|
|
|
|
MyFrame *frame = new MyFrame((wxFrame *) NULL, _("International wxWindows App"),
|
1999-08-28 16:50:39 +00:00
|
|
|
|
50, 50, 350, 60);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
|
|
// Give it an icon
|
1999-01-01 19:13:35 +00:00
|
|
|
|
frame->SetIcon(wxICON(mondrian));
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
|
|
// Make a menubar
|
|
|
|
|
wxMenu *file_menu = new wxMenu;
|
1999-01-13 19:01:43 +00:00
|
|
|
|
file_menu->Append(MINIMAL_ABOUT, _("&About..."));
|
1998-07-17 21:21:02 +00:00
|
|
|
|
file_menu->AppendSeparator();
|
|
|
|
|
file_menu->Append(MINIMAL_QUIT, _("E&xit"));
|
|
|
|
|
|
|
|
|
|
wxMenu *test_menu = new wxMenu;
|
|
|
|
|
test_menu->Append(MINIMAL_OPEN, _("&Open bogus file"));
|
|
|
|
|
test_menu->Append(MINIMAL_TEST, _("&Play a game"));
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
|
|
wxMenuBar *menu_bar = new wxMenuBar;
|
1998-07-17 21:21:02 +00:00
|
|
|
|
menu_bar->Append(file_menu, _("&File"));
|
|
|
|
|
menu_bar->Append(test_menu, _("&Test"));
|
1998-05-20 14:01:55 +00:00
|
|
|
|
frame->SetMenuBar(menu_bar);
|
|
|
|
|
|
|
|
|
|
// Show the frame
|
|
|
|
|
frame->Show(TRUE);
|
|
|
|
|
SetTopWindow(frame);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// My frame constructor
|
1998-07-17 21:21:02 +00:00
|
|
|
|
MyFrame::MyFrame(wxFrame *frame, const char *title, int x, int y, int w, int h)
|
|
|
|
|
: wxFrame(frame, -1, title, wxPoint(x, y), wxSize(w, h))
|
|
|
|
|
{
|
|
|
|
|
}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
1998-07-25 08:31:39 +00:00
|
|
|
|
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event) )
|
1998-05-20 14:01:55 +00:00
|
|
|
|
{
|
|
|
|
|
Close(TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-25 08:31:39 +00:00
|
|
|
|
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
|
1998-05-20 14:01:55 +00:00
|
|
|
|
{
|
1999-01-13 19:01:43 +00:00
|
|
|
|
wxMessageDialog(this, _("I18n sample\n"
|
|
|
|
|
"<EFBFBD> 1998, 1999 Vadim Zeitlin and Julian Smart"),
|
1998-07-17 21:21:02 +00:00
|
|
|
|
_("About Internat"), wxOK | wxICON_INFORMATION).ShowModal();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-07-25 08:31:39 +00:00
|
|
|
|
void MyFrame::OnPlay(wxCommandEvent& WXUNUSED(event))
|
1998-07-17 21:21:02 +00:00
|
|
|
|
{
|
|
|
|
|
wxString str = wxGetTextFromUser(_("Enter your number:"),
|
|
|
|
|
_("Try to guess my number!"),
|
|
|
|
|
"", this);
|
1999-01-13 19:01:43 +00:00
|
|
|
|
if ( str.IsEmpty() )
|
|
|
|
|
return;
|
|
|
|
|
|
1998-07-17 21:21:02 +00:00
|
|
|
|
int num;
|
|
|
|
|
sscanf(str, "%d", &num);
|
|
|
|
|
if ( num == 0 )
|
1999-01-13 19:01:43 +00:00
|
|
|
|
str = _("You've probably entered an invalid number.");
|
1998-07-17 21:21:02 +00:00
|
|
|
|
else if ( num == 9 ) // this message is not translated (not in catalog)
|
1999-01-13 19:01:43 +00:00
|
|
|
|
str = "You've found a bug in this program!";
|
1998-07-17 21:21:02 +00:00
|
|
|
|
else if ( num != 17 ) // a more implicit way to write _()
|
1999-01-13 19:01:43 +00:00
|
|
|
|
str = wxGetTranslation("Bad luck! try again...");
|
1998-07-17 21:21:02 +00:00
|
|
|
|
else {
|
|
|
|
|
str.Empty();
|
|
|
|
|
// string must be split in two -- otherwise the translation won't be found
|
1999-01-13 19:01:43 +00:00
|
|
|
|
str << _("Congratulations! you've won. Here is the magic phrase:")
|
1998-07-17 21:21:02 +00:00
|
|
|
|
<< _("cannot create fifo `%s'");
|
|
|
|
|
}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
1998-07-17 21:21:02 +00:00
|
|
|
|
wxMessageBox(str, _("Result"), wxOK | wxICON_INFORMATION);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MyFrame::OnOpen(wxCommandEvent&)
|
|
|
|
|
{
|
|
|
|
|
// open a bogus file -- the error message should be also translated if you've
|
|
|
|
|
// got wxstd.mo somewhere in the search path
|
|
|
|
|
wxFile file("NOTEXIST.ING");
|
1998-08-03 23:03:59 +00:00
|
|
|
|
}
|