#endif
#ifndef WX_PRECOMP
-#include "wx/wx.h"
+ #include "wx/wx.h"
#endif
#include "wx/intl.h"
#include "wx/file.h"
#include "wx/log.h"
+#include "wx/cmdline.h"
#if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__)
#include "mondrian.xpm"
class MyApp: public wxApp
{
public:
+ MyApp() { m_lang = wxLANGUAGE_UNKNOWN; }
+
+ virtual void OnInitCmdLine(wxCmdLineParser& parser);
+ virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
virtual bool OnInit();
protected:
- wxLocale m_locale; // locale we'll be using
+ wxLanguage m_lang; // language specified by user
+ wxLocale m_locale; // locale we'll be using
};
// Define a new frame type
// MyApp
// ----------------------------------------------------------------------------
-// `Main program' equivalent, creating windows and returning main app frame
-bool MyApp::OnInit()
+// command line arguments handling
+void MyApp::OnInitCmdLine(wxCmdLineParser& parser)
+{
+ parser.AddParam(_("locale"),
+ wxCMD_LINE_VAL_STRING,
+ wxCMD_LINE_PARAM_OPTIONAL);
+
+ wxApp::OnInitCmdLine(parser);
+}
+
+bool MyApp::OnCmdLineParsed(wxCmdLineParser& parser)
{
- long lng = -1;
+ if ( !wxApp::OnCmdLineParsed(parser) )
+ return false;
- if ( argc == 2 )
+ if ( parser.GetParamCount() )
{
- // the parameter must be the lang index
- wxString tmp(argv[1]);
- tmp.ToLong(&lng);
+ const wxString loc = parser.GetParam();
+ const wxLanguageInfo * const lang = wxLocale::FindLanguageInfo(loc);
+ if ( !lang )
+ {
+ wxLogError(_("Locale \"%s\" is unknown."), loc);
+ return false;
+ }
+
+ m_lang = wx_static_cast(wxLanguage, lang->Language);
}
- if ( lng == -1 )
+ return true;
+}
+
+// `Main program' equivalent, creating windows and returning main app frame
+bool MyApp::OnInit()
+{
+ if ( !wxApp::OnInit() )
+ return false;
+
+ if ( m_lang == wxLANGUAGE_UNKNOWN )
{
- lng = wxGetSingleChoiceIndex
- (
- _T("Please choose language:"),
- _T("Language"),
- WXSIZEOF(langNames),
- langNames
- );
+ int lng = wxGetSingleChoiceIndex
+ (
+ _("Please choose language:"),
+ _("Language"),
+ WXSIZEOF(langNames),
+ langNames
+ );
+ m_lang = lng == -1 ? wxLANGUAGE_DEFAULT : langIds[lng];
}
- if ( lng != -1 )
+ if ( m_lang != wxLANGUAGE_DEFAULT )
{
// don't use wxLOCALE_LOAD_DEFAULT flag so that Init() doesn't return
// false just because it failed to load wxstd catalog
- if ( !m_locale.Init(langIds[lng], wxLOCALE_CONV_ENCODING) )
+ if ( !m_locale.Init(m_lang, wxLOCALE_CONV_ENCODING) )
{
- wxLogError(_T("This language is not supported by the system."));
- return false;
+ wxLogWarning(_("This language is not supported by the system."));
+
+ // continue nevertheless
}
}
void MyFrame::OnTest1(wxCommandEvent& WXUNUSED(event))
{
- const wxChar* title = _("Testing _() (gettext)");
+ const wxString title = _("Testing _() (gettext)");
wxTextEntryDialog d(this, _("Please enter text to translate"),
title, wxTRANSLATE("default value"));
if (d.ShowModal() == wxID_OK)
void MyFrame::OnTest2(wxCommandEvent& WXUNUSED(event))
{
- const wxChar* title = _("Testing _N() (ngettext)");
+ const wxString title = _("Testing _N() (ngettext)");
wxTextEntryDialog d(this,
_("Please enter range for plural forms of \"n files deleted\" phrase"),
title, _T("0-10"));
void MyFrame::OnTest3(wxCommandEvent& WXUNUSED(event))
{
- const wxChar* lines[] =
+ const char* lines[] =
{
wxTRANSLATE("line 1"),
wxTRANSLATE("line 2"),