KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
paged_dialog.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <confirm.h>
22#include <widgets/wx_infobar.h>
23#include <widgets/wx_panel.h>
25#include <widgets/wx_treebook.h>
26#include <widgets/ui_common.h>
27
28#include <wx/button.h>
29#include <wx/grid.h>
30#include <wx/sizer.h>
31#include <wx/treebook.h>
32#include <wx/treectrl.h>
33#include <wx/listctrl.h>
34#include <wx/stc/stc.h>
35
36#include <paths.h>
37
38#include <launch_ext.h>
39
40#include <algorithm>
41
42// Maps from dialogTitle <-> pageTitle for keeping track of last-selected pages.
43// This is not a simple page index because some dialogs have dynamic page sets.
44std::map<wxString, wxString> g_lastPage;
45std::map<wxString, wxString> g_lastParentPage;
46
47
48PAGED_DIALOG::PAGED_DIALOG( wxWindow* aParent, const wxString& aTitle, bool aShowReset,
49 bool aShowOpenFolder, const wxString& aAuxiliaryAction,
50 const wxSize& aInitialSize ) :
51 DIALOG_SHIM( aParent, wxID_ANY, aTitle, wxDefaultPosition, aInitialSize,
52 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ),
53 m_auxiliaryButton( nullptr ),
54 m_resetButton( nullptr ),
55 m_openPrefsDirButton( nullptr ),
56 m_title( aTitle )
57{
58 wxBoxSizer* mainSizer = new wxBoxSizer( wxVERTICAL );
59 SetSizer( mainSizer );
60
61 m_infoBar = new WX_INFOBAR( this );
62 mainSizer->Add( m_infoBar, 0, wxEXPAND, 0 );
63
64 WX_PANEL* treebookPanel = new WX_PANEL( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
65 wxBORDER_NONE | wxTAB_TRAVERSAL );
66 treebookPanel->SetBorders( false, false, false, true );
67 wxBoxSizer* treebookSizer = new wxBoxSizer( wxVERTICAL );
68 treebookPanel->SetSizer( treebookSizer );
69
70 m_treebook = new WX_TREEBOOK( treebookPanel, wxID_ANY );
71 m_treebook->SetFont( KIUI::GetControlFont( this ) );
72 m_treebook->SetFitToCurrentPage( true );
73
74 long treeCtrlFlags = m_treebook->GetTreeCtrl()->GetWindowStyleFlag();
75 treeCtrlFlags = ( treeCtrlFlags & ~wxBORDER_MASK ) | wxBORDER_NONE;
76 m_treebook->GetTreeCtrl()->SetWindowStyleFlag( treeCtrlFlags );
77
78 treebookSizer->Add( m_treebook, 1, wxEXPAND|wxBOTTOM, 2 );
79 mainSizer->Add( treebookPanel, 1, wxEXPAND, 0 );
80
81 m_buttonsSizer = new wxBoxSizer( wxHORIZONTAL );
82
83 if( aShowReset )
84 {
85 m_resetButton = new wxButton( this, wxID_ANY, _( "Reset to Defaults" ) );
86 m_buttonsSizer->Add( m_resetButton, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 );
87 }
88
89 if( aShowOpenFolder )
90 {
91#ifdef __WXMAC__
92 m_openPrefsDirButton = new wxButton( this, wxID_ANY, _( "Reveal Preferences in Finder" ) );
93#else
94 m_openPrefsDirButton = new wxButton( this, wxID_ANY, _( "Open Preferences Directory" ) );
95#endif
97 wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT, 5 );
98 }
99
100 if( !aAuxiliaryAction.IsEmpty() )
101 {
102 m_auxiliaryButton = new wxButton( this, wxID_ANY, aAuxiliaryAction );
103 m_buttonsSizer->Add( m_auxiliaryButton, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 );
104 }
105
106 m_buttonsSizer->AddStretchSpacer();
107
108 wxStdDialogButtonSizer* sdbSizer = new wxStdDialogButtonSizer();
109 wxButton* sdbSizerOK = new wxButton( this, wxID_OK );
110 sdbSizer->AddButton( sdbSizerOK );
111 wxButton* sdbSizerCancel = new wxButton( this, wxID_CANCEL );
112 sdbSizer->AddButton( sdbSizerCancel );
113 sdbSizer->Realize();
114
115 m_buttonsSizer->Add( sdbSizer, 1, 0, 5 );
116 mainSizer->Add( m_buttonsSizer, 0, wxALL|wxEXPAND, 5 );
117
119
120 // We normally save the dialog size and position based on its class-name. This class
121 // substitutes the title so that each distinctly-titled dialog can have its own saved
122 // size and position.
123 m_hash_key = aTitle;
124
126 m_auxiliaryButton->Bind( wxEVT_COMMAND_BUTTON_CLICKED, &PAGED_DIALOG::onAuxiliaryAction, this );
127
128 if( m_resetButton )
129 m_resetButton->Bind( wxEVT_COMMAND_BUTTON_CLICKED, &PAGED_DIALOG::onResetButton, this );
130
132 m_openPrefsDirButton->Bind( wxEVT_COMMAND_BUTTON_CLICKED, &PAGED_DIALOG::onOpenPrefsDir, this );
133
134 m_treebook->Bind( wxEVT_CHAR_HOOK, &PAGED_DIALOG::onCharHook, this );
135 m_treebook->Bind( wxEVT_TREEBOOK_PAGE_CHANGED, &PAGED_DIALOG::onPageChanged, this );
136 m_treebook->Bind( wxEVT_TREEBOOK_PAGE_CHANGING, &PAGED_DIALOG::onPageChanging, this );
137}
138
139
141{
142 for( size_t i = 1; i < m_treebook->GetPageCount(); ++i )
143 m_macHack.push_back( true );
144
145 // For some reason adding page labels to the treeCtrl doesn't invalidate its bestSize
146 // cache so we have to do it by hand
147 m_treebook->GetTreeCtrl()->InvalidateBestSize();
148
149 for( size_t i = 0; i < m_treebook->GetPageCount(); ++i )
150 m_treebook->GetPage( i )->Layout();
151
152 m_treebook->Layout();
153 m_treebook->Fit();
154
155 // Add a bit of width to the treeCtrl for scrollbars
156 wxSize ctrlSize = m_treebook->GetTreeCtrl()->GetSize();
157 ctrlSize.x += 20;
158 m_treebook->GetTreeCtrl()->SetMinSize( ctrlSize );
159 m_treebook->Layout();
160
162}
163
164
165void PAGED_DIALOG::SetInitialPage( const wxString& aPage, const wxString& aParentPage )
166{
167 g_lastPage[ m_title ] = aPage;
168 g_lastParentPage[ m_title ] = aParentPage;
169}
170
171
173{
174 // Store the current parentPageTitle/pageTitle hierarchy so we can re-select it
175 // next time.
176 wxString lastPage = wxEmptyString;
177 wxString lastParentPage = wxEmptyString;
178
179 int selected = m_treebook->GetSelection();
180
181 if( selected != wxNOT_FOUND )
182 {
183 lastPage = m_treebook->GetPageText( (unsigned) selected );
184
185 int parent = m_treebook->GetPageParent( (unsigned) selected );
186
187 if( parent != wxNOT_FOUND )
188 lastParentPage = m_treebook->GetPageText( (unsigned) parent );
189 }
190
191 g_lastPage[ m_title ] = lastPage;
192 g_lastParentPage[ m_title ] = lastParentPage;
193
195 m_auxiliaryButton->Unbind( wxEVT_COMMAND_BUTTON_CLICKED, &PAGED_DIALOG::onAuxiliaryAction, this );
196
197 if( m_resetButton )
198 m_resetButton->Unbind( wxEVT_COMMAND_BUTTON_CLICKED, &PAGED_DIALOG::onResetButton, this );
199
201 m_openPrefsDirButton->Unbind( wxEVT_COMMAND_BUTTON_CLICKED, &PAGED_DIALOG::onOpenPrefsDir, this );
202
203 m_treebook->Unbind( wxEVT_CHAR_HOOK, &PAGED_DIALOG::onCharHook, this );
204 m_treebook->Unbind( wxEVT_TREEBOOK_PAGE_CHANGED, &PAGED_DIALOG::onPageChanged, this );
205 m_treebook->Unbind( wxEVT_TREEBOOK_PAGE_CHANGING, &PAGED_DIALOG::onPageChanging, this );
206}
207
208
210{
212
213 // Call TransferDataToWindow() only once:
214 // this is enough on wxWidgets 3.1
215 if( !DIALOG_SHIM::TransferDataToWindow() )
216 return false;
217
218 // Search for a page matching the lastParentPageTitle/lastPageTitle hierarchy
219 wxString lastPage = g_lastPage[ m_title ];
220 wxString lastParentPage = g_lastParentPage[ m_title ];
221 int lastPageIndex = wxNOT_FOUND;
222
223 for( size_t i = 0; i < m_treebook->GetPageCount(); ++i )
224 {
225 if( m_treebook->GetPageText( i ) == lastPage )
226 {
227 if( lastParentPage.IsEmpty() )
228 {
229 lastPageIndex = i;
230 break;
231 }
232
233 if( m_treebook->GetPageParent( i ) >= 0
234 && m_treebook->GetPageText( (unsigned) m_treebook->GetPageParent( i ) ) == lastParentPage )
235 {
236 lastPageIndex = i;
237 break;
238 }
239 }
240 }
241
242 lastPageIndex = std::max( 0, lastPageIndex );
243 m_treebook->SetSelection( lastPageIndex );
244 UpdateResetButton( lastPageIndex );
245
246 return true;
247}
248
249
251{
252 bool ret = true;
253
254 // Call TransferDataFromWindow() only once:
255 // this is enough on wxWidgets 3.1
256 if( !DIALOG_SHIM::TransferDataFromWindow() )
257 ret = false;
258
259 return ret;
260}
261
262
264{
265 while( aParent )
266 {
267 if( PAGED_DIALOG* parentDialog = dynamic_cast<PAGED_DIALOG*>( aParent ) )
268 return parentDialog;
269
270 aParent = aParent->GetParent();
271 }
272
273 return nullptr;
274}
275
276
277void PAGED_DIALOG::SetError( const wxString& aMessage, const wxString& aPageName, int aCtrlId,
278 int aRow, int aCol )
279{
280 SetError( aMessage, FindWindow( aPageName ), FindWindow( aCtrlId ), aRow, aCol );
281}
282
283
284void PAGED_DIALOG::SetError( const wxString& aMessage, wxWindow* aPage, wxWindow* aCtrl,
285 int aRow, int aCol )
286{
287 m_infoBar->ShowMessageFor( aMessage, 10000, wxICON_WARNING );
288
289 if( wxTextCtrl* textCtrl = dynamic_cast<wxTextCtrl*>( aCtrl ) )
290 {
291 textCtrl->SetSelection( -1, -1 );
292 textCtrl->SetFocus();
293 return;
294 }
295
296 if( wxStyledTextCtrl* scintilla = dynamic_cast<wxStyledTextCtrl*>( aCtrl ) )
297 {
298 if( aRow > 0 )
299 {
300 int pos = scintilla->PositionFromLine( aRow - 1 ) + ( aCol - 1 );
301 scintilla->GotoPos( pos );
302 }
303
304 scintilla->SetFocus();
305 return;
306 }
307
308 if( wxGrid* grid = dynamic_cast<wxGrid*>( aCtrl ) )
309 {
310 grid->SetFocus();
311 grid->MakeCellVisible( aRow, aCol );
312 grid->SetGridCursor( aRow, aCol );
313
314 grid->EnableCellEditControl( true );
315 grid->ShowCellEditControl();
316 return;
317 }
318}
319
320
322{
323 wxWindow* panel = m_treebook->ResolvePage( aPage );
324
325 // Enable the reset button only if the page is re-settable
326 if( m_resetButton )
327 {
328 if( panel && ( panel->GetWindowStyle() & wxRESETTABLE ) )
329 {
330 wxString name = m_treebook->GetPageText( aPage );
331 name.Replace( wxT( "&" ), wxT( "&&" ) );
332
333 m_resetButton->SetLabel( wxString::Format( _( "Reset %s to Defaults" ), name ) );
334 m_resetButton->SetToolTip( panel->GetHelpTextAtPoint( wxPoint( -INT_MAX, INT_MAX ),
335 wxHelpEvent::Origin_Unknown ) );
336 m_resetButton->Enable( true );
337 }
338 else
339 {
340 m_resetButton->SetLabel( _( "Reset to Defaults" ) );
341 m_resetButton->SetToolTip( wxString() );
342 m_resetButton->Enable( false );
343 }
344
345 m_resetButton->GetParent()->Layout();
346 }
347}
348
349
350void PAGED_DIALOG::onCharHook( wxKeyEvent& aEvent )
351{
352 if( dynamic_cast<wxTextEntry*>( aEvent.GetEventObject() )
353 || dynamic_cast<wxStyledTextCtrl*>( aEvent.GetEventObject() )
354 || dynamic_cast<wxListView*>( aEvent.GetEventObject() )
355 || dynamic_cast<wxGrid*>( FindFocus() ) )
356 {
357 aEvent.Skip();
358 return;
359 }
360
361 if( aEvent.GetKeyCode() == WXK_UP )
362 {
363 int page = m_treebook->GetSelection();
364
365 if( page >= 1 )
366 {
367 if( m_treebook->GetPage( page - 1 )->GetChildren().IsEmpty() )
368 m_treebook->SetSelection( std::max( page - 2, 0 ) );
369 else
370 m_treebook->SetSelection( page - 1 );
371 }
372
373 m_treebook->GetTreeCtrl()->SetFocus(); // Don't allow preview canvas to steal gridFocus
374 }
375 else if( aEvent.GetKeyCode() == WXK_DOWN )
376 {
377 int page = m_treebook->GetSelection();
378
379 m_treebook->SetSelection( std::min<int>( page + 1, m_treebook->GetPageCount() - 1 ) );
380
381 m_treebook->GetTreeCtrl()->SetFocus(); // Don't allow preview canvas to steal gridFocus
382 }
383 else
384 {
385 aEvent.Skip();
386 }
387}
388
389
390void PAGED_DIALOG::onPageChanged( wxBookCtrlEvent& event )
391{
392 size_t page = event.GetSelection();
393
394 // Use the first sub-page when a tree level node is selected.
395 if( m_treebook->GetCurrentPage()->GetChildren().IsEmpty()
396 && page + 1 < m_treebook->GetPageCount() )
397 {
398 m_treebook->ChangeSelection( ++page );
399 }
400
401 UpdateResetButton( page );
402
403 // Make sure the dialog size is enough to fit the page content.
404 m_treebook->InvalidateBestSize();
405
406 SetMinSize( wxDefaultSize );
407 wxSize minSize = GetBestSize();
408 minSize.IncTo( FromDIP( wxSize( 600, 500 ) ) );
409 minSize.DecTo( FromDIP( wxSize( 1500, 900 ) ) ); // Failsafe
410 SetMinSize( minSize );
411
412 wxSize currentSize = GetSize();
413 wxSize newSize = currentSize;
414 newSize.IncTo( minSize );
415
416 if( newSize != currentSize )
417 SetSize( newSize );
418
419#ifdef __WXMAC__
420 // Work around an OSX wxWidgets issue where the wxGrid children don't get placed correctly
421 // until the first resize event
422 if( page < m_macHack.size() && m_macHack[ page ] )
423 {
424 wxSize pageSize = m_treebook->GetPage( page )->GetSize();
425 pageSize.x += 1;
426 pageSize.y += 2;
427
428 m_treebook->GetPage( page )->SetSize( pageSize );
429 m_macHack[ page ] = false;
430 }
431#else
432 wxSizeEvent evt( wxDefaultSize );
433 wxQueueEvent( m_treebook, evt.Clone() );
434#endif
435}
436
437
438void PAGED_DIALOG::onPageChanging( wxBookCtrlEvent& aEvent )
439{
440 int currentPage = aEvent.GetOldSelection();
441
442 if( currentPage == wxNOT_FOUND )
443 return;
444
445 wxWindow* page = m_treebook->GetPage( currentPage );
446
447 wxCHECK( page, /* void */ );
448
449 // If there is a validation error on the current page, don't allow the page change.
450 if( !page->Validate() || !page->TransferDataFromWindow() )
451 {
452 aEvent.Veto();
453 return;
454 }
455}
456
457
458void PAGED_DIALOG::onResetButton( wxCommandEvent& aEvent )
459{
460 int sel = m_treebook->GetSelection();
461
462 if( sel == wxNOT_FOUND )
463 return;
464
465 // NB: dynamic_cast doesn't work over Kiway
466 wxWindow* panel = m_treebook->ResolvePage( sel );
467
468 if( panel )
469 {
470 wxCommandEvent resetCommand( wxEVT_COMMAND_BUTTON_CLICKED, ID_RESET_PANEL );
471 panel->ProcessWindowEvent( resetCommand );
472 }
473}
474
475void PAGED_DIALOG::onOpenPrefsDir( wxCommandEvent& aEvent )
476{
477 wxString dir( PATHS::GetUserSettingsPath() );
478 LaunchExternal( dir );
479}
const char * name
Definition: DXF_plotter.cpp:59
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
Definition: dialog_shim.h:52
void SetupStandardButtons(std::map< int, wxString > aLabels={})
std::string m_hash_key
Definition: dialog_shim.h:194
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
virtual void onOpenPrefsDir(wxCommandEvent &aEvent)
WX_INFOBAR * m_infoBar
Definition: paged_dialog.h:72
bool TransferDataToWindow() override
~PAGED_DIALOG() override
PAGED_DIALOG(wxWindow *aParent, const wxString &aTitle, bool aShowReset, bool aShowOpenFolder, const wxString &aAuxiliaryAction=wxEmptyString, const wxSize &aInitialSize=wxDefaultSize)
wxButton * m_auxiliaryButton
Definition: paged_dialog.h:69
std::vector< bool > m_macHack
Definition: paged_dialog.h:79
wxButton * m_openPrefsDirButton
Definition: paged_dialog.h:71
bool TransferDataFromWindow() override
void finishInitialization()
void UpdateResetButton(int aPage)
void SetInitialPage(const wxString &aPage, const wxString &aParentPage=wxEmptyString)
virtual void onPageChanging(wxBookCtrlEvent &aEvent)
virtual void onCharHook(wxKeyEvent &aEvent)
virtual void onAuxiliaryAction(wxCommandEvent &aEvent)
Definition: paged_dialog.h:61
wxString m_title
Definition: paged_dialog.h:75
static PAGED_DIALOG * GetDialog(wxWindow *aWindow)
virtual void onResetButton(wxCommandEvent &aEvent)
WX_TREEBOOK * m_treebook
Definition: paged_dialog.h:68
virtual void onPageChanged(wxBookCtrlEvent &aEvent)
wxBoxSizer * m_buttonsSizer
Definition: paged_dialog.h:77
void SetError(const wxString &aMessage, const wxString &aPageName, int aCtrlId, int aRow=-1, int aCol=-1)
wxButton * m_resetButton
Definition: paged_dialog.h:70
static wxString GetUserSettingsPath()
Return the user configuration path used to store KiCad's configuration files.
Definition: paths.cpp:597
A modified version of the wxInfoBar class that allows us to:
Definition: wx_infobar.h:76
void ShowMessageFor(const wxString &aMessage, int aTime, int aFlags=wxICON_INFORMATION, MESSAGE_TYPE aType=WX_INFOBAR::MESSAGE_TYPE::GENERIC)
Show the infobar with the provided message and icon for a specific period of time.
Definition: wx_infobar.cpp:140
void SetBorders(bool aLeft, bool aRight, bool aTop, bool aBottom)
Definition: wx_panel.h:39
wxWindow * ResolvePage(size_t aPage)
This file is part of the common library.
const int minSize
Push and Shove router track width and via size dialog.
#define _(s)
bool LaunchExternal(const wxString &aPath)
Launches the given file or folder in the host OS.
Definition: launch_ext.cpp:25
KICOMMON_API wxFont GetControlFont(wxWindow *aWindow)
Definition: ui_common.cpp:162
std::map< wxString, wxString > g_lastPage
std::map< wxString, wxString > g_lastParentPage
#define wxRESETTABLE
#define ID_RESET_PANEL
Functions to provide common constants and other functions to assist in making a consistent UI.