mirror of https://github.com/BOINC/boinc.git
Improve consistency of control labels and accelerators
This commit is contained in:
parent
5c43e4bb1d
commit
76f58c1f76
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2022 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -368,12 +368,12 @@ bool CAdvancedFrame::CreateMenus() {
|
||||||
);
|
);
|
||||||
if (is_boinc_started_by_manager) {
|
if (is_boinc_started_by_manager) {
|
||||||
strMenuName.Printf(
|
strMenuName.Printf(
|
||||||
_("Exit %s"),
|
_("E&xit %s"),
|
||||||
pSkinAdvanced->GetApplicationShortName().c_str()
|
pSkinAdvanced->GetApplicationShortName().c_str()
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
strMenuName.Printf(
|
strMenuName.Printf(
|
||||||
_("Exit %s"),
|
_("E&xit %s"),
|
||||||
pSkinAdvanced->GetApplicationName().c_str()
|
pSkinAdvanced->GetApplicationName().c_str()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2022 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -185,15 +185,15 @@ CDlgAdvPreferencesBase::CDlgAdvPreferencesBase( wxWindow* parent, int id, wxStri
|
||||||
m_panelButtons = new wxPanel( this, ID_DEFAULT, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
|
m_panelButtons = new wxPanel( this, ID_DEFAULT, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
|
||||||
wxBoxSizer* buttonSizer = new wxBoxSizer( wxHORIZONTAL );
|
wxBoxSizer* buttonSizer = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
m_btnOK = new wxButton( m_panelButtons, wxID_OK, _("Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
m_btnOK = new wxButton( m_panelButtons, wxID_OK, _("&Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
m_btnOK->SetToolTip( _("Save all values and close the dialog.") );
|
m_btnOK->SetToolTip( _("Save all values and close the dialog") );
|
||||||
if (m_bUsingLocalPrefs) {
|
if (m_bUsingLocalPrefs) {
|
||||||
m_btnOK->SetDefault();
|
m_btnOK->SetDefault();
|
||||||
}
|
}
|
||||||
buttonSizer->Add( m_btnOK, 0, wxALL, 5 );
|
buttonSizer->Add( m_btnOK, 0, wxALL, 5 );
|
||||||
|
|
||||||
m_btnCancel = new wxButton( m_panelButtons, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
m_btnCancel = new wxButton( m_panelButtons, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
m_btnCancel->SetToolTip( _("Close the dialog without saving.") );
|
m_btnCancel->SetToolTip( _("Close the dialog without saving") );
|
||||||
if (!m_bUsingLocalPrefs) {
|
if (!m_bUsingLocalPrefs) {
|
||||||
m_btnCancel->SetDefault();
|
m_btnCancel->SetDefault();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2022 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -117,7 +117,7 @@ CDlgDiagnosticLogFlags::CDlgDiagnosticLogFlags(wxWindow* parent) :
|
||||||
|
|
||||||
wxBoxSizer* buttonSizer = new wxBoxSizer( wxHORIZONTAL );
|
wxBoxSizer* buttonSizer = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
wxButton* btnOK = new wxButton( this, wxID_OK, _("Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
wxButton* btnOK = new wxButton( this, wxID_OK, _("&Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
btnOK->SetToolTip( _("Save all values and close the dialog") );
|
btnOK->SetToolTip( _("Save all values and close the dialog") );
|
||||||
buttonSizer->Add( btnOK, 0, wxALL, 5 );
|
buttonSizer->Add( btnOK, 0, wxALL, 5 );
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2022 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -143,13 +143,13 @@ CDlgExclusiveApps::CDlgExclusiveApps(wxWindow* parent) :
|
||||||
m_panelButtons = new wxPanel( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 );
|
m_panelButtons = new wxPanel( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
wxBoxSizer* buttonSizer = new wxBoxSizer( wxHORIZONTAL );
|
wxBoxSizer* buttonSizer = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
m_btnOK = new wxButton( m_panelButtons, wxID_OK, _("Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
m_btnOK = new wxButton( m_panelButtons, wxID_OK, _("&Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
m_btnOK->SetToolTip( _("save all values and close the dialog") );
|
m_btnOK->SetToolTip( _("Save all values and close the dialog") );
|
||||||
|
|
||||||
buttonSizer->Add( m_btnOK, 0, wxALL, 5 );
|
buttonSizer->Add( m_btnOK, 0, wxALL, 5 );
|
||||||
|
|
||||||
m_btnCancel = new wxButton( m_panelButtons, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
m_btnCancel = new wxButton( m_panelButtons, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
m_btnCancel->SetToolTip( _("close the dialog without saving") );
|
m_btnCancel->SetToolTip( _("Close the dialog without saving") );
|
||||||
m_btnCancel->SetDefault();
|
m_btnCancel->SetDefault();
|
||||||
|
|
||||||
buttonSizer->Add( m_btnCancel, 0, wxALL, 5 );
|
buttonSizer->Add( m_btnCancel, 0, wxALL, 5 );
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2008 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -187,7 +187,7 @@ void CDlgExitMessage::CreateControls()
|
||||||
itemFlexGridSizer8->Add(itemButton9, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
itemFlexGridSizer8->Add(itemButton9, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
wxButton* itemButton10 = new wxButton;
|
wxButton* itemButton10 = new wxButton;
|
||||||
itemButton10->Create( itemDialog1, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
itemButton10->Create( itemDialog1, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
itemFlexGridSizer8->Add(itemButton10, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
itemFlexGridSizer8->Add(itemButton10, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
////@end CDlgExitMessage content construction
|
////@end CDlgExitMessage content construction
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2008 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -122,7 +122,7 @@ void CDlgGenericMessage::CreateControls()
|
||||||
itemFlexGridSizer8->Add(itemButton9, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
itemFlexGridSizer8->Add(itemButton9, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
wxButton* itemButton10 = new wxButton;
|
wxButton* itemButton10 = new wxButton;
|
||||||
itemButton10->Create( itemDialog1, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
itemButton10->Create( itemDialog1, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
itemFlexGridSizer8->Add(itemButton10, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
itemFlexGridSizer8->Add(itemButton10, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
////@end CDlgGenericMessage content construction
|
////@end CDlgGenericMessage content construction
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2022 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -97,7 +97,7 @@ CDlgHiddenColumns::CDlgHiddenColumns(wxWindow* parent) :
|
||||||
|
|
||||||
wxBoxSizer* buttonSizer = new wxBoxSizer( wxHORIZONTAL );
|
wxBoxSizer* buttonSizer = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
m_btnOK = new wxButton( this, wxID_OK, _("Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
m_btnOK = new wxButton( this, wxID_OK, _("&Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
m_btnOK->SetToolTip( _("Save all values and close the dialog") );
|
m_btnOK->SetToolTip( _("Save all values and close the dialog") );
|
||||||
buttonSizer->Add( m_btnOK, 0, wxALL, 5 );
|
buttonSizer->Add( m_btnOK, 0, wxALL, 5 );
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2008 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -432,14 +432,16 @@ void CDlgOptions::CreateControls() {
|
||||||
wxBoxSizer* itemBoxSizer59 = new wxBoxSizer(wxHORIZONTAL);
|
wxBoxSizer* itemBoxSizer59 = new wxBoxSizer(wxHORIZONTAL);
|
||||||
itemBoxSizer2->Add(itemBoxSizer59, 0, wxALIGN_RIGHT|wxALL, 5);
|
itemBoxSizer2->Add(itemBoxSizer59, 0, wxALIGN_RIGHT|wxALL, 5);
|
||||||
|
|
||||||
wxButton* itemButton60 = new wxButton;
|
wxButton* btnSave = new wxButton;
|
||||||
itemButton60->Create( itemDialog1, wxID_OK, _("&Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
btnSave->Create( itemDialog1, wxID_OK, _("&Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
itemBoxSizer59->Add(itemButton60, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
btnSave->SetToolTip( _("Save all values and close the dialog") );
|
||||||
|
itemBoxSizer59->Add(btnSave, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
wxButton* itemButton61 = new wxButton;
|
wxButton* btnCancel = new wxButton;
|
||||||
itemButton61->Create( itemDialog1, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
btnCancel->Create( itemDialog1, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
itemButton61->SetDefault();
|
btnCancel->SetToolTip( _("Close the dialog without saving") );
|
||||||
itemBoxSizer59->Add(itemButton61, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
btnCancel->SetDefault();
|
||||||
|
itemBoxSizer59->Add(btnCancel, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
// Set validators
|
// Set validators
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2008 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -165,7 +165,7 @@ void CDlgSelectComputer::CreateControls(bool required)
|
||||||
itemBoxSizer10->Add(itemButton11, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
itemBoxSizer10->Add(itemButton11, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
||||||
|
|
||||||
wxButton* itemButton12 = new wxButton;
|
wxButton* itemButton12 = new wxButton;
|
||||||
itemButton12->Create( itemDialog1, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
itemButton12->Create( itemDialog1, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
itemBoxSizer10->Add(itemButton12, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
itemBoxSizer10->Add(itemButton12, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
||||||
|
|
||||||
// Set validators
|
// Set validators
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2022 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -162,7 +162,7 @@ bool CSimpleFrame::CreateMenus() {
|
||||||
);
|
);
|
||||||
|
|
||||||
strMenuName.Printf(
|
strMenuName.Printf(
|
||||||
_("Exit %s"),
|
_("E&xit %s"),
|
||||||
pSkinAdvanced->GetApplicationName().c_str()
|
pSkinAdvanced->GetApplicationName().c_str()
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2022 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -143,7 +143,7 @@ void CPanelMessages::CreateControls()
|
||||||
|
|
||||||
wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxHORIZONTAL);
|
wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxHORIZONTAL);
|
||||||
|
|
||||||
wxButton* itemButton44 = new wxButton(itemDialog1, wxID_OK, _("Close"), wxDefaultPosition, wxDefaultSize);
|
wxButton* itemButton44 = new wxButton(itemDialog1, wxID_OK, _("&Close"), wxDefaultPosition, wxDefaultSize);
|
||||||
|
|
||||||
itemBoxSizer4->Add(itemButton44, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
itemBoxSizer4->Add(itemButton44, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// This file is part of BOINC.
|
// This file is part of BOINC.
|
||||||
// http://boinc.berkeley.edu
|
// http://boinc.berkeley.edu
|
||||||
// Copyright (C) 2022 University of California
|
// Copyright (C) 2023 University of California
|
||||||
//
|
//
|
||||||
// BOINC is free software; you can redistribute it and/or modify it
|
// BOINC is free software; you can redistribute it and/or modify it
|
||||||
// under the terms of the GNU Lesser General Public License
|
// under the terms of the GNU Lesser General Public License
|
||||||
|
@ -350,15 +350,15 @@ void CPanelPreferences::CreateControls()
|
||||||
wxBoxSizer* itemBoxSizer44 = new wxBoxSizer(wxHORIZONTAL);
|
wxBoxSizer* itemBoxSizer44 = new wxBoxSizer(wxHORIZONTAL);
|
||||||
itemBoxSizer2->Add(itemBoxSizer44, 0, wxALIGN_RIGHT|wxALL, 5);
|
itemBoxSizer2->Add(itemBoxSizer44, 0, wxALIGN_RIGHT|wxALL, 5);
|
||||||
|
|
||||||
wxButton* itemButton44 = new wxButton( itemDialog1, wxID_OK, _("Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
wxButton* itemButton44 = new wxButton( itemDialog1, wxID_OK, _("&Save"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
itemButton44->SetToolTip( _("Save all values and close the dialog.") );
|
itemButton44->SetToolTip( _("Save all values and close the dialog") );
|
||||||
if (m_bUsingLocalPrefs) {
|
if (m_bUsingLocalPrefs) {
|
||||||
itemButton44->SetDefault();
|
itemButton44->SetDefault();
|
||||||
}
|
}
|
||||||
itemBoxSizer44->Add(itemButton44, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
itemBoxSizer44->Add(itemButton44, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
wxButton* itemButton45 = new wxButton( itemDialog1, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
wxButton* itemButton45 = new wxButton( itemDialog1, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
itemButton45->SetToolTip( _("Close the dialog without saving.") );
|
itemButton45->SetToolTip( _("Close the dialog without saving") );
|
||||||
if (!m_bUsingLocalPrefs) {
|
if (!m_bUsingLocalPrefs) {
|
||||||
itemButton45->SetDefault();
|
itemButton45->SetDefault();
|
||||||
}
|
}
|
||||||
|
|
|
@ -384,7 +384,7 @@ void wxWizardEx::AddButtonRow(wxBoxSizer *mainColumn)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_btnNext = new wxButton(this, wxID_FORWARD, _("&Next >"));
|
m_btnNext = new wxButton(this, wxID_FORWARD, _("&Next >"));
|
||||||
m_btnCancel = new wxButton(this, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDefaultSize, buttonStyle);
|
m_btnCancel = new wxButton(this, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, buttonStyle);
|
||||||
#ifndef __WXMAC__
|
#ifndef __WXMAC__
|
||||||
if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON)
|
if (GetExtraStyle() & wxWIZARD_EX_HELPBUTTON)
|
||||||
btnHelp = new wxButton(this, wxID_HELP, _("&Help"), wxDefaultPosition, wxDefaultSize, buttonStyle);
|
btnHelp = new wxButton(this, wxID_HELP, _("&Help"), wxDefaultPosition, wxDefaultSize, buttonStyle);
|
||||||
|
|
Loading…
Reference in New Issue