2018-05-14 17:34:18 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2021-06-03 15:41:26 +00:00
|
|
|
* Copyright (C) 2019-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-05-14 17:34:18 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <confirm.h>
|
2020-07-15 23:08:16 +00:00
|
|
|
#include <widgets/resettable_panel.h>
|
2021-06-03 01:19:20 +00:00
|
|
|
#include <wx/button.h>
|
2018-05-14 17:34:18 +00:00
|
|
|
#include <wx/grid.h>
|
2021-06-03 01:19:20 +00:00
|
|
|
#include <wx/sizer.h>
|
2018-05-14 17:34:18 +00:00
|
|
|
#include <wx/statline.h>
|
2021-06-03 01:19:20 +00:00
|
|
|
#include <wx/treebook.h>
|
|
|
|
#include <wx/treectrl.h>
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2020-08-25 02:17:21 +00:00
|
|
|
#include <widgets/infobar.h>
|
2018-05-14 17:34:18 +00:00
|
|
|
#include <widgets/paged_dialog.h>
|
2020-05-24 14:54:26 +00:00
|
|
|
#include <wx/stc/stc.h>
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2020-07-11 09:37:22 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
// Maps from dialogTitle <-> pageTitle for keeping track of last-selected pages.
|
|
|
|
// This is not a simple page index because some dialogs have dynamic page sets.
|
|
|
|
std::map<wxString, wxString> g_lastPage;
|
|
|
|
std::map<wxString, wxString> g_lastParentPage;
|
|
|
|
|
|
|
|
|
2021-03-16 14:28:01 +00:00
|
|
|
PAGED_DIALOG::PAGED_DIALOG( wxWindow* aParent, const wxString& aTitle, bool aShowReset,
|
2018-05-14 17:34:18 +00:00
|
|
|
const wxString& aAuxiliaryAction ) :
|
|
|
|
DIALOG_SHIM( aParent, wxID_ANY, aTitle, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ),
|
2021-06-03 17:08:29 +00:00
|
|
|
m_auxiliaryButton( nullptr ),
|
|
|
|
m_resetButton( nullptr ),
|
|
|
|
m_cancelButton( nullptr ),
|
2018-05-14 17:34:18 +00:00
|
|
|
m_title( aTitle ),
|
2020-09-16 10:27:46 +00:00
|
|
|
m_dirty( false ),
|
2018-05-14 17:34:18 +00:00
|
|
|
m_errorCtrl( nullptr ),
|
|
|
|
m_errorRow( 0 ),
|
2021-06-03 17:08:29 +00:00
|
|
|
m_errorCol( 0 )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
|
|
|
auto mainSizer = new wxBoxSizer( wxVERTICAL );
|
|
|
|
SetSizer( mainSizer );
|
|
|
|
|
2020-08-25 02:17:21 +00:00
|
|
|
m_infoBar = new WX_INFOBAR( this );
|
|
|
|
mainSizer->Add( m_infoBar, 0, wxEXPAND, 0 );
|
|
|
|
|
2020-08-29 19:52:39 +00:00
|
|
|
m_treebook = new wxTreebook( this, wxID_ANY );
|
2021-09-12 11:17:22 +00:00
|
|
|
m_treebook->SetFont( KIUI::GetControlFont( this ) );
|
2018-05-14 17:34:18 +00:00
|
|
|
mainSizer->Add( m_treebook, 1, wxEXPAND|wxLEFT|wxTOP, 10 );
|
|
|
|
|
2020-11-11 14:24:35 +00:00
|
|
|
auto line = new wxStaticLine( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxLI_HORIZONTAL );
|
2018-05-14 17:34:18 +00:00
|
|
|
mainSizer->Add( line, 0, wxEXPAND|wxLEFT|wxTOP|wxRIGHT, 10 );
|
|
|
|
|
2021-02-12 03:19:46 +00:00
|
|
|
m_buttonsSizer = new wxBoxSizer( wxHORIZONTAL );
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2021-03-16 14:28:01 +00:00
|
|
|
if( aShowReset )
|
2020-07-15 23:08:16 +00:00
|
|
|
{
|
|
|
|
m_resetButton = new wxButton( this, wxID_ANY, _( "Reset to Defaults" ) );
|
2021-03-20 00:01:02 +00:00
|
|
|
m_buttonsSizer->Add( m_resetButton, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 );
|
2020-07-15 23:08:16 +00:00
|
|
|
}
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
if( !aAuxiliaryAction.IsEmpty() )
|
|
|
|
{
|
|
|
|
m_auxiliaryButton = new wxButton( this, wxID_ANY, aAuxiliaryAction );
|
2021-03-16 14:28:01 +00:00
|
|
|
m_buttonsSizer->Add( m_auxiliaryButton, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 );
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 03:19:46 +00:00
|
|
|
m_buttonsSizer->AddStretchSpacer();
|
2020-07-15 23:08:16 +00:00
|
|
|
|
2021-03-16 14:28:01 +00:00
|
|
|
wxStdDialogButtonSizer* sdbSizer = new wxStdDialogButtonSizer();
|
2020-07-15 23:08:16 +00:00
|
|
|
wxButton* sdbSizerOK = new wxButton( this, wxID_OK );
|
2018-05-14 17:34:18 +00:00
|
|
|
sdbSizer->AddButton( sdbSizerOK );
|
2020-07-15 23:08:16 +00:00
|
|
|
wxButton* sdbSizerCancel = new wxButton( this, wxID_CANCEL );
|
2018-05-14 17:34:18 +00:00
|
|
|
sdbSizer->AddButton( sdbSizerCancel );
|
|
|
|
sdbSizer->Realize();
|
|
|
|
|
2021-02-12 03:19:46 +00:00
|
|
|
m_buttonsSizer->Add( sdbSizer, 1, 0, 5 );
|
|
|
|
mainSizer->Add( m_buttonsSizer, 0, wxALL|wxEXPAND, 5 );
|
2018-05-14 17:34:18 +00:00
|
|
|
|
|
|
|
sdbSizerOK->SetDefault();
|
|
|
|
|
|
|
|
// We normally save the dialog size and position based on its class-name. This class
|
|
|
|
// substitutes the title so that each distinctly-titled dialog can have its own saved
|
|
|
|
// size and position.
|
|
|
|
m_hash_key = aTitle;
|
|
|
|
|
|
|
|
if( m_auxiliaryButton )
|
2021-03-16 14:28:01 +00:00
|
|
|
{
|
2020-11-11 14:24:35 +00:00
|
|
|
m_auxiliaryButton->Connect( wxEVT_COMMAND_BUTTON_CLICKED,
|
|
|
|
wxCommandEventHandler( PAGED_DIALOG::OnAuxiliaryAction ),
|
|
|
|
nullptr, this );
|
2021-03-16 14:28:01 +00:00
|
|
|
}
|
2020-04-02 12:50:58 +00:00
|
|
|
|
2020-07-15 23:08:16 +00:00
|
|
|
if( m_resetButton )
|
2021-03-16 14:28:01 +00:00
|
|
|
{
|
2020-11-11 14:24:35 +00:00
|
|
|
m_resetButton->Connect( wxEVT_COMMAND_BUTTON_CLICKED,
|
2021-03-16 14:28:01 +00:00
|
|
|
wxCommandEventHandler( PAGED_DIALOG::OnResetButton ), nullptr,
|
|
|
|
this );
|
|
|
|
}
|
2020-07-15 23:08:16 +00:00
|
|
|
|
2020-11-11 14:24:35 +00:00
|
|
|
m_treebook->Connect( wxEVT_TREEBOOK_PAGE_CHANGED,
|
2021-07-15 19:26:35 +00:00
|
|
|
wxBookCtrlEventHandler( PAGED_DIALOG::OnPageChange ), nullptr, this );
|
2018-05-14 17:34:18 +00:00
|
|
|
Connect( wxEVT_UPDATE_UI, wxUpdateUIEventHandler( PAGED_DIALOG::OnUpdateUI ), nullptr, this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PAGED_DIALOG::finishInitialization()
|
|
|
|
{
|
2020-04-10 15:01:11 +00:00
|
|
|
for( size_t i = 0; i < m_treebook->GetPageCount(); ++i )
|
|
|
|
m_macHack.push_back( true );
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
// For some reason adding page labels to the treeCtrl doesn't invalidate its bestSize
|
|
|
|
// cache so we have to do it by hand
|
|
|
|
m_treebook->GetTreeCtrl()->InvalidateBestSize();
|
|
|
|
|
|
|
|
for( size_t i = 0; i < m_treebook->GetPageCount(); ++i )
|
|
|
|
{
|
|
|
|
m_treebook->ExpandNode( i );
|
|
|
|
m_treebook->GetPage( i )->Layout();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_treebook->Layout();
|
2021-12-14 13:14:49 +00:00
|
|
|
m_treebook->Fit();
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2020-11-16 11:16:44 +00:00
|
|
|
finishDialogSettings();
|
2021-12-13 14:17:25 +00:00
|
|
|
|
2021-12-14 13:14:49 +00:00
|
|
|
Centre( wxBOTH );
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-17 00:33:20 +00:00
|
|
|
void PAGED_DIALOG::SetInitialPage( const wxString& aPage, const wxString& aParentPage )
|
|
|
|
{
|
|
|
|
g_lastPage[ m_title ] = aPage;
|
|
|
|
g_lastParentPage[ m_title ] = aParentPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
PAGED_DIALOG::~PAGED_DIALOG()
|
|
|
|
{
|
|
|
|
// Store the current parentPageTitle/pageTitle hierarchy so we can re-select it
|
|
|
|
// next time.
|
|
|
|
wxString lastPage = wxEmptyString;
|
|
|
|
wxString lastParentPage = wxEmptyString;
|
|
|
|
|
|
|
|
int selected = m_treebook->GetSelection();
|
|
|
|
|
|
|
|
if( selected != wxNOT_FOUND )
|
|
|
|
{
|
|
|
|
lastPage = m_treebook->GetPageText( (unsigned) selected );
|
|
|
|
|
|
|
|
int parent = m_treebook->GetPageParent( (unsigned) selected );
|
|
|
|
|
|
|
|
if( parent != wxNOT_FOUND )
|
|
|
|
lastParentPage = m_treebook->GetPageText( (unsigned) parent );
|
|
|
|
}
|
|
|
|
|
|
|
|
g_lastPage[ m_title ] = lastPage;
|
|
|
|
g_lastParentPage[ m_title ] = lastParentPage;
|
|
|
|
|
|
|
|
if( m_auxiliaryButton )
|
2021-03-16 14:28:01 +00:00
|
|
|
{
|
2020-11-11 14:24:35 +00:00
|
|
|
m_auxiliaryButton->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED,
|
|
|
|
wxCommandEventHandler( PAGED_DIALOG::OnAuxiliaryAction ),
|
|
|
|
nullptr, this );
|
2021-03-16 14:28:01 +00:00
|
|
|
}
|
2020-04-02 12:50:58 +00:00
|
|
|
|
2020-07-15 23:08:16 +00:00
|
|
|
if( m_resetButton )
|
2021-03-16 14:28:01 +00:00
|
|
|
{
|
2020-11-11 14:24:35 +00:00
|
|
|
m_resetButton->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED,
|
2021-03-16 14:28:01 +00:00
|
|
|
wxCommandEventHandler( PAGED_DIALOG::OnResetButton ), nullptr,
|
|
|
|
this );
|
|
|
|
}
|
2020-11-11 14:24:35 +00:00
|
|
|
|
|
|
|
m_treebook->Disconnect( wxEVT_TREEBOOK_PAGE_CHANGED,
|
2021-07-15 19:26:35 +00:00
|
|
|
wxBookCtrlEventHandler( PAGED_DIALOG::OnPageChange ), nullptr, this );
|
2020-11-11 14:24:35 +00:00
|
|
|
Disconnect( wxEVT_UPDATE_UI, wxUpdateUIEventHandler( PAGED_DIALOG::OnUpdateUI ),
|
|
|
|
nullptr, this );
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PAGED_DIALOG::TransferDataToWindow()
|
|
|
|
{
|
|
|
|
finishInitialization();
|
|
|
|
|
2019-07-17 14:46:25 +00:00
|
|
|
// Call TransferDataToWindow() only once:
|
|
|
|
// this is enough on wxWidgets 3.1
|
2018-05-14 17:34:18 +00:00
|
|
|
if( !DIALOG_SHIM::TransferDataToWindow() )
|
|
|
|
return false;
|
2019-07-17 14:46:25 +00:00
|
|
|
|
|
|
|
// On wxWidgets 3.0, TransferDataFromWindow() is not called recursively
|
|
|
|
// so we have to call it for each page
|
|
|
|
#if !wxCHECK_VERSION( 3, 1, 0 )
|
2018-05-14 17:34:18 +00:00
|
|
|
for( size_t i = 0; i < m_treebook->GetPageCount(); ++i )
|
|
|
|
{
|
|
|
|
wxWindow* page = m_treebook->GetPage( i );
|
|
|
|
|
|
|
|
if( !page->TransferDataToWindow() )
|
|
|
|
return false;
|
|
|
|
}
|
2019-07-17 14:46:25 +00:00
|
|
|
#endif
|
2018-05-14 17:34:18 +00:00
|
|
|
|
|
|
|
// Search for a page matching the lastParentPageTitle/lastPageTitle hierarchy
|
|
|
|
wxString lastPage = g_lastPage[ m_title ];
|
|
|
|
wxString lastParentPage = g_lastParentPage[ m_title ];
|
|
|
|
int lastPageIndex = wxNOT_FOUND;
|
|
|
|
|
|
|
|
for( size_t i = 0; i < m_treebook->GetPageCount(); ++i )
|
|
|
|
{
|
|
|
|
if( m_treebook->GetPageText( i ) == lastPage )
|
|
|
|
{
|
2018-11-17 00:33:20 +00:00
|
|
|
if( lastParentPage.IsEmpty() )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
2018-11-17 00:33:20 +00:00
|
|
|
lastPageIndex = i;
|
|
|
|
break;
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
2018-11-17 00:33:20 +00:00
|
|
|
|
|
|
|
if( m_treebook->GetPageParent( i ) >= 0
|
|
|
|
&& m_treebook->GetPageText( (unsigned) m_treebook->GetPageParent( i ) ) == lastParentPage )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
2018-11-17 00:33:20 +00:00
|
|
|
lastPageIndex = i;
|
|
|
|
break;
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_treebook->SetSelection( (unsigned) std::max( 0, lastPageIndex ) );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PAGED_DIALOG::TransferDataFromWindow()
|
|
|
|
{
|
2021-02-24 05:07:17 +00:00
|
|
|
bool ret = true;
|
|
|
|
|
2019-07-17 14:46:25 +00:00
|
|
|
// Call TransferDataFromWindow() only once:
|
|
|
|
// this is enough on wxWidgets 3.1
|
2018-05-14 17:34:18 +00:00
|
|
|
if( !DIALOG_SHIM::TransferDataFromWindow() )
|
2021-02-24 05:07:17 +00:00
|
|
|
ret = false;
|
2019-07-17 14:46:25 +00:00
|
|
|
|
|
|
|
// On wxWidgets 3.0, TransferDataFromWindow() is not called recursively
|
|
|
|
// so we have to call it for each page
|
|
|
|
#if !wxCHECK_VERSION( 3, 1, 0 )
|
2018-05-14 17:34:18 +00:00
|
|
|
for( size_t i = 0; i < m_treebook->GetPageCount(); ++i )
|
|
|
|
{
|
|
|
|
wxWindow* page = m_treebook->GetPage( i );
|
|
|
|
|
|
|
|
if( !page->TransferDataFromWindow() )
|
2021-02-24 05:07:17 +00:00
|
|
|
{
|
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
2019-07-17 14:46:25 +00:00
|
|
|
#endif
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2021-02-24 05:07:17 +00:00
|
|
|
if( !ret && !m_errorMessage.IsEmpty() )
|
|
|
|
m_infoBar->ShowMessage( m_errorMessage, wxICON_WARNING );
|
|
|
|
|
|
|
|
return ret;
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-24 14:54:26 +00:00
|
|
|
void PAGED_DIALOG::SetError( const wxString& aMessage, const wxString& aPageName, int aCtrlId,
|
|
|
|
int aRow, int aCol )
|
|
|
|
{
|
|
|
|
SetError( aMessage, FindWindow( aPageName ), FindWindow( aCtrlId ), aRow, aCol );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PAGED_DIALOG::SetError( const wxString& aMessage, wxWindow* aPage, wxWindow* aCtrl,
|
2018-05-14 17:34:18 +00:00
|
|
|
int aRow, int aCol )
|
|
|
|
{
|
|
|
|
for( size_t i = 0; i < m_treebook->GetPageCount(); ++i )
|
|
|
|
{
|
|
|
|
if( m_treebook->GetPage( i ) == aPage )
|
|
|
|
{
|
|
|
|
m_treebook->SetSelection( i );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Once the page has been changed we want to wait for it to update before displaying
|
|
|
|
// the error dialog. So store the rest of the error info and wait for OnUpdateUI.
|
|
|
|
m_errorMessage = aMessage;
|
|
|
|
m_errorCtrl = aCtrl;
|
|
|
|
m_errorRow = aRow;
|
|
|
|
m_errorCol = aCol;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PAGED_DIALOG::OnUpdateUI( wxUpdateUIEvent& event )
|
|
|
|
{
|
|
|
|
// Handle an error. This is delayed to OnUpdateUI so that we can change the focus
|
|
|
|
// even when the original validation was triggered from a killFocus event, and so
|
|
|
|
// that the corresponding notebook page can be shown in the background when triggered
|
|
|
|
// from an OK.
|
|
|
|
if( m_errorCtrl )
|
|
|
|
{
|
|
|
|
// We will re-enter this routine when the error dialog is displayed, so make
|
|
|
|
// sure we don't keep putting up more dialogs.
|
2020-05-24 14:54:26 +00:00
|
|
|
wxWindow* ctrl = m_errorCtrl;
|
2018-05-14 17:34:18 +00:00
|
|
|
m_errorCtrl = nullptr;
|
|
|
|
|
2021-03-16 14:28:01 +00:00
|
|
|
m_infoBar->ShowMessageFor( m_errorMessage, 10000, wxICON_WARNING );
|
|
|
|
|
2020-05-24 14:54:26 +00:00
|
|
|
if( wxTextCtrl* textCtrl = dynamic_cast<wxTextCtrl*>( ctrl ) )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
2020-01-13 01:39:08 +00:00
|
|
|
textCtrl->SetSelection( -1, -1 );
|
2018-05-14 17:34:18 +00:00
|
|
|
textCtrl->SetFocus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-24 14:54:26 +00:00
|
|
|
if( wxStyledTextCtrl* scintilla = dynamic_cast<wxStyledTextCtrl*>( ctrl ) )
|
|
|
|
{
|
|
|
|
if( m_errorRow > 0 )
|
|
|
|
{
|
|
|
|
int pos = scintilla->PositionFromLine( m_errorRow - 1 ) + ( m_errorCol - 1 );
|
|
|
|
scintilla->GotoPos( pos );
|
|
|
|
}
|
|
|
|
|
|
|
|
scintilla->SetFocus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( wxGrid* grid = dynamic_cast<wxGrid*>( ctrl ) )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
|
|
|
grid->SetFocus();
|
|
|
|
grid->MakeCellVisible( m_errorRow, m_errorCol );
|
|
|
|
grid->SetGridCursor( m_errorRow, m_errorCol );
|
|
|
|
|
|
|
|
grid->EnableCellEditControl( true );
|
|
|
|
grid->ShowCellEditControl();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2020-08-29 19:52:39 +00:00
|
|
|
|
|
|
|
if( m_treebook->GetCurrentPage()->GetChildren().IsEmpty() )
|
|
|
|
{
|
|
|
|
unsigned next = m_treebook->GetSelection() + 1;
|
|
|
|
|
2021-12-13 20:46:13 +00:00
|
|
|
// Use ChangeSelection() here because SetSelection() generates page change events which
|
|
|
|
// creates an infinite wxUpdateUIEvent loop.
|
2020-08-29 19:52:39 +00:00
|
|
|
if( next < m_treebook->GetPageCount() )
|
2021-12-13 20:46:13 +00:00
|
|
|
m_treebook->ChangeSelection( next );
|
2020-08-29 19:52:39 +00:00
|
|
|
}
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
2020-04-02 12:50:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PAGED_DIALOG::OnPageChange( wxBookCtrlEvent& event )
|
|
|
|
{
|
2020-08-29 19:52:39 +00:00
|
|
|
size_t page = event.GetSelection();
|
2020-04-02 12:50:58 +00:00
|
|
|
|
2021-07-15 19:26:35 +00:00
|
|
|
// Enable the reset button only if the page is re-settable
|
2020-07-15 23:08:16 +00:00
|
|
|
if( m_resetButton )
|
|
|
|
{
|
|
|
|
if( auto panel = dynamic_cast<RESETTABLE_PANEL*>( m_treebook->GetPage( page ) ) )
|
|
|
|
{
|
2021-07-27 16:56:17 +00:00
|
|
|
m_resetButton->SetLabel( wxString::Format( _( "Reset %s to Defaults" ),
|
|
|
|
m_treebook->GetPageText( page ) ) );
|
2020-07-15 23:08:16 +00:00
|
|
|
m_resetButton->SetToolTip( panel->GetResetTooltip() );
|
|
|
|
m_resetButton->Enable( true );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-07-27 16:56:17 +00:00
|
|
|
m_resetButton->SetLabel( _( "Reset to Defaults" ) );
|
2020-07-15 23:08:16 +00:00
|
|
|
m_resetButton->SetToolTip( wxString() );
|
|
|
|
m_resetButton->Enable( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Work around an OSX bug where the wxGrid children don't get placed correctly until
|
|
|
|
// the first resize event
|
|
|
|
#ifdef __WXMAC__
|
2020-04-02 12:50:58 +00:00
|
|
|
if( page + 1 <= m_macHack.size() && m_macHack[ page ] )
|
|
|
|
{
|
|
|
|
wxSize pageSize = m_treebook->GetPage( page )->GetSize();
|
2020-10-25 12:01:26 +00:00
|
|
|
pageSize.x -= 5;
|
2020-04-02 12:50:58 +00:00
|
|
|
pageSize.y += 2;
|
|
|
|
|
|
|
|
m_treebook->GetPage( page )->SetSize( pageSize );
|
|
|
|
m_macHack[ page ] = false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-15 23:08:16 +00:00
|
|
|
void PAGED_DIALOG::OnResetButton( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
int sel = m_treebook->GetSelection();
|
|
|
|
|
|
|
|
if( sel == wxNOT_FOUND )
|
|
|
|
return;
|
|
|
|
|
|
|
|
RESETTABLE_PANEL* panel = dynamic_cast<RESETTABLE_PANEL*>( m_treebook->GetPage( sel ) );
|
|
|
|
|
|
|
|
if( panel )
|
|
|
|
panel->ResetPanel();
|
|
|
|
}
|