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 (C) 2012-2019 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, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef DIALOG_SHIM_
26#define DIALOG_SHIM_
27
28#include <kicommon.h>
29#include <eda_units.h>
30#include <kiway_holder.h>
31#include <wx/dialog.h>
32#include <map>
33
34class EDA_BASE_FRAME;
35
36class wxGridEvent;
37class wxGUIEventLoop;
38
39
41{
42 WINDOW_THAWER( wxWindow* aWindow )
43 {
44 m_window = aWindow;
45 m_freezeCount = 0;
46
47 while( m_window->IsFrozen() )
48 {
49 m_window->Thaw();
51 }
52 }
53
55 {
56 while( m_freezeCount > 0 )
57 {
58 m_window->Freeze();
60 }
61 }
62
63protected:
64 wxWindow* m_window;
66};
67
68
70
71// These macros are for DIALOG_SHIM only, NOT for KIWAY_PLAYER. KIWAY_PLAYER
72// has its own support for quasi modal and its platform specific issues are different
73// than for a wxDialog.
74 #define SHOWQUASIMODAL ShowQuasiModal
75 #define ENDQUASIMODAL EndQuasiModal
76
87class KICOMMON_API DIALOG_SHIM : public wxDialog, public KIWAY_HOLDER
88{
89public:
90 DIALOG_SHIM( wxWindow* aParent, wxWindowID id, const wxString& title,
91 const wxPoint& pos = wxDefaultPosition,
92 const wxSize& size = wxDefaultSize,
93 long style = wxDEFAULT_FRAME_STYLE | wxRESIZE_BORDER,
94 const wxString& name = wxDialogNameStr );
95
97
102 void SetInitialFocus( wxWindow* aWindow )
103 {
104 m_initialFocusTarget = aWindow;
105 }
106
107 int ShowModal() override;
108
109 int ShowQuasiModal(); // disable only the parent window, otherwise modal.
110
111 void EndQuasiModal( int retCode ); // End quasi-modal mode
112
113 bool IsQuasiModal() const { return m_qmodal_showing; }
114
115 bool Show( bool show ) override;
116
117 bool Enable( bool enable ) override;
118
119 void OnPaint( wxPaintEvent &event );
120
121 void OnModify();
122 void ClearModify();
123
128 void SetPosition( const wxPoint& aNewPosition );
129
131 {
132 return m_units;
133 }
134
135 void SelectAllInTextCtrls( wxWindowList& children );
136
137 void SetupStandardButtons( std::map<int, wxString> aLabels = {} );
138
139 static bool IsCtrl( int aChar, const wxKeyEvent& e )
140 {
141 return e.GetKeyCode() == aChar && e.ControlDown() && !e.AltDown() &&
142 !e.ShiftDown() && !e.MetaDown();
143 }
144
145 static bool IsShiftCtrl( int aChar, const wxKeyEvent& e )
146 {
147 return e.GetKeyCode() == aChar && e.ControlDown() && !e.AltDown() &&
148 e.ShiftDown() && !e.MetaDown();
149 }
150
151protected:
162 void finishDialogSettings();
163
169 void setSizeInDU( int x, int y );
170
175 int horizPixelsFromDU( int x ) const;
176
181 int vertPixelsFromDU( int y ) const;
182
190 void resetSize();
191
192 virtual void OnCharHook( wxKeyEvent& aEvt );
193
194private:
199 void OnCloseWindow( wxCloseEvent& aEvent );
200
205 void OnButton( wxCommandEvent& aEvent );
206
207 void onChildSetFocus( wxFocusEvent& aEvent );
208
210
211protected:
212 EDA_UNITS m_units; // userUnits for display and parsing
213 std::string m_hash_key; // alternate for class_map when classname re-used
214
215 // The following disables the storing of a user size. It is used primarily for dialogs
216 // with conditional content which don't need user sizing.
218
219 // On MacOS (at least) SetFocus() calls made in the constructor will fail because a
220 // window that isn't yet visible will return false to AcceptsFocus(). So we must delay
221 // the initial-focus SetFocus() call to the first paint event.
225
226 wxGUIEventLoop* m_qmodal_loop; // points to nested event_loop, NULL means not qmodal
227 // and dismissed
230
232
233 std::vector<wxWindow*> m_tabOrder;
234
235 // The size asked by the caller, used the first time the dialog is created
237
238 // Used to support first-esc-cancels-edit logic
239 std::map<wxWindow*, wxString> m_beforeEditValues;
240};
241
242#endif // DIALOG_SHIM_
const char * name
Definition: DXF_plotter.cpp:57
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
Definition: dialog_shim.h:88
static bool IsShiftCtrl(int aChar, const wxKeyEvent &e)
Definition: dialog_shim.h:145
bool m_isClosing
Definition: dialog_shim.h:224
std::vector< wxWindow * > m_tabOrder
Definition: dialog_shim.h:233
bool m_qmodal_showing
Definition: dialog_shim.h:228
static bool IsCtrl(int aChar, const wxKeyEvent &e)
Definition: dialog_shim.h:139
wxGUIEventLoop * m_qmodal_loop
Definition: dialog_shim.h:226
EDA_UNITS m_units
Definition: dialog_shim.h:212
void SetInitialFocus(wxWindow *aWindow)
Sets the window (usually a wxTextCtrl) that should be focused when the dialog is shown.
Definition: dialog_shim.h:102
std::string m_hash_key
Definition: dialog_shim.h:213
bool m_firstPaintEvent
Definition: dialog_shim.h:222
std::map< wxWindow *, wxString > m_beforeEditValues
Definition: dialog_shim.h:239
bool IsQuasiModal() const
Definition: dialog_shim.h:113
WDO_ENABLE_DISABLE * m_qmodal_parent_disabler
Definition: dialog_shim.h:229
bool m_useCalculatedSize
Definition: dialog_shim.h:217
wxWindow * m_initialFocusTarget
Definition: dialog_shim.h:223
wxSize m_initialSize
Definition: dialog_shim.h:236
EDA_BASE_FRAME * m_parentFrame
Definition: dialog_shim.h:231
EDA_UNITS GetUserUnits() const
Definition: dialog_shim.h:130
The base frame for deriving all KiCad main window classes.
A mix in class which holds the location of a wxWindow's KIWAY.
Definition: kiway_holder.h:39
Toggle a window's "enable" status to disabled, then enabled on destruction.
Definition: dialog_shim.cpp:47
EDA_UNITS
Definition: eda_units.h:46
#define KICOMMON_API
Definition: kicommon.h:28
WINDOW_THAWER(wxWindow *aWindow)
Definition: dialog_shim.h:42
wxWindow * m_window
Definition: dialog_shim.h:64