KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_shim.h
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 (C) 2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#ifndef DIALOG_SHIM_
22#define DIALOG_SHIM_
23
24#include <kicommon.h>
25#include <eda_units.h>
26#include <kiway_holder.h>
27#include <wx/dialog.h>
28#include <map>
29#include <set>
30#include <vector>
31#include <wx/variant.h>
32#include <core/raii.h>
33
34class EDA_BASE_FRAME;
35class UNIT_BINDER;
36
37class wxGridEvent;
38class wxGUIEventLoop;
39class wxInitDialogEvent;
40class wxSpinEvent;
41class wxSpinDoubleEvent;
42class wxStyledTextEvent;
43class wxPropertyGridEvent;
44class wxDataViewEvent;
45
46
64class KICOMMON_API DIALOG_SHIM : public wxDialog, public KIWAY_HOLDER
65{
66public:
67 DIALOG_SHIM( wxWindow* aParent, wxWindowID id, const wxString& title,
68 const wxPoint& pos = wxDefaultPosition,
69 const wxSize& size = wxDefaultSize,
70 long style = wxDEFAULT_FRAME_STYLE | wxRESIZE_BORDER,
71 const wxString& name = wxDialogNameStr );
72
74
79 void SetInitialFocus( wxWindow* aWindow )
80 {
81 m_initialFocusTarget = aWindow;
82 }
83
84 int ShowModal() override;
85
86 int ShowQuasiModal(); // disable only the parent window, otherwise modal.
87
88 void EndQuasiModal( int retCode ); // End quasi-modal mode
89
90 bool IsQuasiModal() const { return m_qmodal_showing; }
91
92 // A quasi-modal dialog disables its parent window. Sadly this disabling is more extreme
93 // than wxWidgets' normal modal dialog disabling, and prevents things like hotkey Cut/Copy/
94 // Paste from working in search controls in standard file dialogs. So when we put up a modal
95 // dialog in front of a quasi-modal, we suspend the quasi-modal dialog parent window
96 // disabling, causing us to fall back to the normal modal dialog parent window disabling.
97 void PrepareForModalSubDialog();
98 void CleanupAfterModalSubDialog();
99
100 bool Show( bool show ) override;
101
102 bool Enable( bool enable ) override;
103
104 void OnPaint( wxPaintEvent &event );
105
106 void OnModify();
107 void ClearModify();
108
113 void SetPosition( const wxPoint& aNewPosition );
114
116 {
117 return m_units;
118 }
119
120 void SelectAllInTextCtrls( wxWindowList& children );
121
122 void SetupStandardButtons( std::map<int, wxString> aLabels = {} );
123
124 static bool IsCtrl( int aChar, const wxKeyEvent& e )
125 {
126 return e.GetKeyCode() == aChar && e.ControlDown() && !e.AltDown() &&
127 !e.ShiftDown() && !e.MetaDown();
128 }
129
130 static bool IsShiftCtrl( int aChar, const wxKeyEvent& e )
131 {
132 return e.GetKeyCode() == aChar && e.ControlDown() && !e.AltDown() &&
133 e.ShiftDown() && !e.MetaDown();
134 }
135
141 void LoadControlState();
142
146 void SaveControlState();
147
152 void OptOut( wxWindow* aWindow );
153
161 void ExcludeFromControlUndoRedo( wxWindow* aWindow );
162
169 void RegisterUnitBinder( UNIT_BINDER* aUnitBinder, wxWindow* aWindow );
170
180 void UnregisterUnitBinder( UNIT_BINDER* aUnitBinder );
181
182protected:
193 void finishDialogSettings();
194
200 void setSizeInDU( int x, int y );
201
206 int horizPixelsFromDU( int x ) const;
207
212 int vertPixelsFromDU( int y ) const;
213
221 void resetSize();
222
223 virtual void OnCharHook( wxKeyEvent& aEvt );
224
232 virtual void TearDownQuasiModal() {}
233
242 void resetUndoRedoForNewContent( wxWindowList& aChildren );
243
251 void unregisterUnitBinders( wxWindow* aWindow );
252
253private:
258 void OnCloseWindow( wxCloseEvent& aEvent );
259
260 void OnSize( wxSizeEvent& aEvent );
261 void OnMove( wxMoveEvent& aEvent );
262
267 void OnButton( wxCommandEvent& aEvent );
268
269 void onChildSetFocus( wxFocusEvent& aEvent );
270
271 void onInitDialog( wxInitDialogEvent& aEvent );
272
282 void focusParentCanvas( bool aDeferUntilFrameActive = false );
283
284 std::string generateKey( const wxWindow* aWin ) const;
285
286 void registerUndoRedoHandlers( wxWindowList& aChildren );
287 void recordControlChange( wxWindow* aCtrl );
288 void onCommandEvent( wxCommandEvent& aEvent );
289 void onSpinEvent( wxSpinEvent& aEvent );
290 void onSpinDoubleEvent( wxSpinDoubleEvent& aEvent );
291 void onStyledTextChanged( wxStyledTextEvent& aEvent );
292 void onGridCellChanged( wxGridEvent& aEvent );
293 void onPropertyGridChanged( wxPropertyGridEvent& aEvent );
294 void onDataViewListChanged( wxDataViewEvent& aEvent );
295 void doUndo();
296 void doRedo();
297 wxVariant getControlValue( wxWindow* aCtrl );
298 void setControlValue( wxWindow* aCtrl, const wxVariant& aValue );
299
301
302protected:
303 EDA_UNITS m_units; // userUnits for display and parsing
304 std::string m_hash_key; // optional custom key for persistence
305
306 // The following disables the storing of a user size. It is used primarily for dialogs
307 // with conditional content which don't need user sizing.
309
310 // On MacOS (at least) SetFocus() calls made in the constructor will fail because a
311 // window that isn't yet visible will return false to AcceptsFocus(). So we must delay
312 // the initial-focus SetFocus() call to the first paint event.
316
317 wxGUIEventLoop* m_qmodal_loop; // points to nested event_loop, NULL means not qmodal
318 // and dismissed
321
323
324 std::vector<wxWindow*> m_tabOrder;
325
326 // The size asked by the caller, used the first time the dialog is created
330
331 // Used to support first-esc-cancels-edit logic
332 std::map<wxWindow*, wxString> m_beforeEditValues;
333 std::map<wxWindow*, UNIT_BINDER*> m_unitBinders;
334
336 {
337 wxWindow* ctrl;
338 wxVariant before;
339 wxVariant after;
340 };
341
342 std::vector<UNDO_STEP> m_undoStack;
343 std::vector<UNDO_STEP> m_redoStack;
344 std::map<wxWindow*, wxVariant> m_currentValues;
345 std::set<wxWindow*> m_noControlUndoRedo;
348};
349
350#endif // DIALOG_SHIM_
const char * name
static bool IsShiftCtrl(int aChar, const wxKeyEvent &e)
bool m_handlingUndoRedo
std::set< wxWindow * > m_noControlUndoRedo
std::vector< wxWindow * > m_tabOrder
bool m_qmodal_showing
virtual void TearDownQuasiModal()
Override this method to perform dialog tear down actions not suitable for object dtor.
static bool IsCtrl(int aChar, const wxKeyEvent &e)
std::vector< UNDO_STEP > m_redoStack
wxGUIEventLoop * m_qmodal_loop
EDA_UNITS m_units
void SetInitialFocus(wxWindow *aWindow)
Sets the window (usually a wxTextCtrl) that should be focused when the dialog is shown.
Definition dialog_shim.h:79
WINDOW_DISABLER * m_qmodal_parent_disabler
std::string m_hash_key
bool m_firstPaintEvent
bool m_userResized
std::map< wxWindow *, wxString > m_beforeEditValues
bool IsQuasiModal() const
Definition dialog_shim.h:90
bool m_useCalculatedSize
std::map< wxWindow *, UNIT_BINDER * > m_unitBinders
bool m_childReleased
wxWindow * m_initialFocusTarget
DIALOG_SHIM(wxWindow *aParent, wxWindowID id, const wxString &title, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxRESIZE_BORDER, const wxString &name=wxDialogNameStr)
bool m_userPositioned
std::map< wxWindow *, wxVariant > m_currentValues
wxSize m_initialSize
EDA_BASE_FRAME * m_parentFrame
std::vector< UNDO_STEP > m_undoStack
EDA_UNITS GetUserUnits() const
The base frame for deriving all KiCad main window classes.
KIWAY_HOLDER(KIWAY *aKiway, HOLDER_TYPE aType)
Temporarily disable a window, and then re-enable on destruction.
Definition raii.h:83
EDA_UNITS
Definition eda_units.h:44
#define KICOMMON_API
Definition kicommon.h:27