]>
Commit | Line | Data |
---|---|---|
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$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
c7f3b78b | 9 | // Licence: wxWindows license |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation | |
14 | #pragma interface | |
15 | #endif | |
16 | ||
17 | // For compilers that support precompilation, includes "wx/wx.h". | |
18 | #include "wx/wxprec.h" | |
19 | ||
20 | #ifdef __BORLANDC__ | |
21 | #pragma hdrstop | |
22 | #endif | |
23 | ||
24 | #ifndef WX_PRECOMP | |
25 | #include "wx/wx.h" | |
26 | #endif | |
27 | ||
28 | #include "wx/intl.h" | |
c7f3b78b | 29 | #include "wx/file.h" |
c801d85f KB |
30 | #include "wx/log.h" |
31 | ||
b412f9be | 32 | #if defined(__WXGTK__) || defined(__WXMOTIF__) |
47908e25 RR |
33 | #include "mondrian.xpm" |
34 | #endif | |
35 | ||
c801d85f KB |
36 | // Define a new application type |
37 | class MyApp: public wxApp | |
38 | { | |
39 | public: | |
c7f3b78b VZ |
40 | virtual bool OnInit(); |
41 | ||
c801d85f | 42 | protected: |
c7f3b78b | 43 | wxLocale m_locale; // locale we'll be using |
c801d85f KB |
44 | }; |
45 | ||
46 | // Define a new frame type | |
47 | class MyFrame: public wxFrame | |
c7f3b78b VZ |
48 | { |
49 | public: | |
50 | MyFrame(wxFrame *frame, const char *title, int x, int y, int w, int h); | |
51 | ||
52 | public: | |
53 | void OnQuit(wxCommandEvent& event); | |
54 | void OnAbout(wxCommandEvent& event); | |
55 | void OnPlay(wxCommandEvent& event); | |
56 | void OnOpen(wxCommandEvent& event); | |
fd323a5e | 57 | bool OnClose() { return TRUE; } |
c7f3b78b VZ |
58 | |
59 | DECLARE_EVENT_TABLE() | |
c801d85f KB |
60 | }; |
61 | ||
62 | // ID for the menu commands | |
c7f3b78b VZ |
63 | enum |
64 | { | |
65 | MINIMAL_QUIT, | |
66 | MINIMAL_TEXT, | |
67 | MINIMAL_ABOUT, | |
68 | MINIMAL_TEST, | |
69 | MINIMAL_OPEN | |
70 | }; | |
c801d85f KB |
71 | |
72 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
c7f3b78b VZ |
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) | |
c801d85f KB |
77 | END_EVENT_TABLE() |
78 | ||
79 | IMPLEMENT_APP(MyApp) | |
80 | ||
81 | ||
071cc2be | 82 | // `Main program' equivalent, creating windows and returning main app frame |
fd323a5e | 83 | bool MyApp::OnInit() |
c801d85f | 84 | { |
fd323a5e VZ |
85 | // set the language to use |
86 | const char *language = NULL; | |
87 | const char *langid = NULL; | |
88 | switch ( argc ) | |
89 | { | |
90 | default: | |
91 | // ignore the other args, fall through | |
92 | ||
93 | case 3: | |
94 | language = argv[1]; | |
95 | langid = argv[2]; | |
96 | break; | |
97 | ||
98 | case 2: | |
99 | language = argv[1]; | |
100 | break; | |
101 | ||
102 | case 1: | |
103 | language = "french"; | |
104 | langid = "fr"; | |
105 | }; | |
106 | ||
107 | // there are very few systems right now which support locales other than "C" | |
108 | m_locale.Init(language, langid, "C"); | |
071cc2be | 109 | |
fd323a5e | 110 | // Initialize the catalogs we'll be using |
c801d85f KB |
111 | /* not needed any more, done in wxLocale ctor |
112 | m_locale.AddCatalog("wxstd"); // 1) for library messages | |
113 | */ | |
114 | m_locale.AddCatalog("internat"); // 2) our private one | |
c7f3b78b | 115 | /* this catalog is installed in standard location on Linux systems, |
c801d85f KB |
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 | |
119 | ||
c801d85f | 120 | // Create the main frame window |
fd323a5e VZ |
121 | MyFrame *frame = new MyFrame((wxFrame *) NULL, _("International wxWindows App"), |
122 | 50, 50, 250, 40); | |
c801d85f KB |
123 | |
124 | // Give it an icon | |
b412f9be | 125 | frame->SetIcon(wxICON(mondrian)); |
c801d85f KB |
126 | |
127 | // Make a menubar | |
128 | wxMenu *file_menu = new wxMenu; | |
fd323a5e | 129 | file_menu->Append(MINIMAL_ABOUT, _("&About...")); |
c7f3b78b VZ |
130 | file_menu->AppendSeparator(); |
131 | file_menu->Append(MINIMAL_QUIT, _("E&xit")); | |
132 | ||
133 | wxMenu *test_menu = new wxMenu; | |
134 | test_menu->Append(MINIMAL_OPEN, _("&Open bogus file")); | |
135 | test_menu->Append(MINIMAL_TEST, _("&Play a game")); | |
c801d85f | 136 | |
c801d85f | 137 | wxMenuBar *menu_bar = new wxMenuBar; |
c7f3b78b VZ |
138 | menu_bar->Append(file_menu, _("&File")); |
139 | menu_bar->Append(test_menu, _("&Test")); | |
c801d85f KB |
140 | frame->SetMenuBar(menu_bar); |
141 | ||
c801d85f KB |
142 | // Show the frame |
143 | frame->Show(TRUE); | |
c801d85f KB |
144 | SetTopWindow(frame); |
145 | ||
146 | return TRUE; | |
147 | } | |
148 | ||
149 | // My frame constructor | |
c7f3b78b VZ |
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)) | |
152 | { | |
153 | } | |
c801d85f | 154 | |
bd7d06f2 | 155 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event) ) |
c801d85f KB |
156 | { |
157 | Close(TRUE); | |
158 | } | |
159 | ||
bd7d06f2 | 160 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) |
c801d85f | 161 | { |
fd323a5e VZ |
162 | wxMessageDialog(this, _("I18n sample\n" |
163 |