KiCad PCB EDA Suite
Loading...
Searching...
No Matches
eda_view_switcher.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
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
25
26
27#ifdef __WXGTK__
28#define LIST_BOX_H_PADDING 20
29#define LIST_BOX_V_PADDING 8
30#else
31#define LIST_BOX_H_PADDING 10
32#define LIST_BOX_V_PADDING 5
33#endif
34
35
36EDA_VIEW_SWITCHER::EDA_VIEW_SWITCHER( wxWindow* aParent, const wxArrayString& aItems,
37 wxKeyCode aCtrlKey ) :
38 EDA_VIEW_SWITCHER_BASE( aParent ),
39 // Start with the tab marked as "up" so the initial ctrl-tab press advances selection.
40 m_tabState( false ),
41 m_receivingEvents( false ),
42 m_ctrlKey( aCtrlKey )
43{
44 m_listBox->InsertItems( aItems, 0 );
45 m_listBox->SetSelection( std::min( 0, (int) m_listBox->GetCount() - 1 ) );
46
47 int width = 0;
48 int height = 0;
49
50 for( const wxString& item : aItems )
51 {
52 wxSize extents = m_listBox->GetTextExtent( item );
53 width = std::max( width, extents.x );
54 height += extents.y + LIST_BOX_V_PADDING;
55 }
56
57 m_listBox->SetMinSize( wxSize( width + LIST_BOX_H_PADDING,
58 height + ( LIST_BOX_V_PADDING * 2 ) ) );
60
61 // this line fixes an issue on Linux Ubuntu using Unity (dialog not shown),
62 // and works fine on all systems
63 GetSizer()->Fit( this );
64
65 Centre();
66}
67
68
69bool EDA_VIEW_SWITCHER::Show( bool aShow )
70{
71 if( !aShow )
72 m_receivingEvents = false;
73
74 bool ret = DIALOG_SHIM::Show( aShow );
75
76 if( aShow )
77 {
78 m_receivingEvents = true;
79
80 // Force the dialog to always be centered over the window
81 Centre();
82 }
83
84 return ret;
85}
86
87
88// OK, this is *really* annoying, but wxWidgets doesn't give us key-down events while the
89// control key is being held down. So we can't use OnKeyDown() or OnCharHook() and instead
90// must rely on watching key states in TryBefore().
91//
92// Just checking the state of the tab key is tempting, but then we'll think it's been hit
93// several times when it's actually just a key-down followed by a redraw or idle event.
94//
95// So we have to keep a state machine of the tab key.
96//
97bool EDA_VIEW_SWITCHER::TryBefore( wxEvent& aEvent )
98{
100 {
101 return DIALOG_SHIM::TryBefore( aEvent );
102 }
103
104 // Check for tab key leading edge
105 if( !m_tabState && wxGetKeyState( WXK_TAB ) )
106 {
107 m_tabState = true;
108
109 int idx = m_listBox->GetSelection();
110
111 if( wxGetKeyState( WXK_SHIFT ) && m_ctrlKey != WXK_SHIFT )
112 {
113 if( --idx < 0 )
114 m_listBox->SetSelection( (int) m_listBox->GetCount() - 1 );
115 else
116 m_listBox->SetSelection( idx );
117 }
118 else
119 {
120 if( ++idx >= (int) m_listBox->GetCount() )
121 m_listBox->SetSelection( 0 );
122 else
123 m_listBox->SetSelection( idx );
124 }
125
126 return true;
127 }
128
129 // Check for tab key trailing edge
130 if( m_tabState && !wxGetKeyState( WXK_TAB ) )
131 {
132 m_tabState = false;
133 }
134
135 // Check for control key trailing edge
136 if( !wxGetKeyState( m_ctrlKey ) )
137 {
138 wxPostEvent( this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK ) );
139 }
140 else if( wxGetKeyState( WXK_ESCAPE ) )
141 {
142 wxPostEvent( this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL ) );
143 }
144
145 return DIALOG_SHIM::TryBefore( aEvent );
146}
bool Show(bool show) override
void SetInitialFocus(wxWindow *aWindow)
Sets the window (usually a wxTextCtrl) that should be focused when the dialog is shown.
Definition dialog_shim.h:82
EDA_VIEW_SWITCHER_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("View Preset Switcher"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxSTAY_ON_TOP)
EDA_VIEW_SWITCHER(wxWindow *aParent, const wxArrayString &aItems, wxKeyCode aCtrlKey)
bool Show(bool show) override
bool TryBefore(wxEvent &aEvent) override
#define LIST_BOX_V_PADDING
#define LIST_BOX_H_PADDING