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, see <https://www.gnu.org/licenses/>.
18 */
19
21
22
23#ifdef __WXGTK__
24#define LIST_BOX_H_PADDING 20
25#define LIST_BOX_V_PADDING 8
26#else
27#define LIST_BOX_H_PADDING 10
28#define LIST_BOX_V_PADDING 5
29#endif
30
31
32EDA_VIEW_SWITCHER::EDA_VIEW_SWITCHER( wxWindow* aParent, const wxArrayString& aItems,
33 wxKeyCode aCtrlKey ) :
34 EDA_VIEW_SWITCHER_BASE( aParent ),
35 // Start with the tab marked as "up" so the initial ctrl-tab press advances selection.
36 m_tabState( false ),
37 m_receivingEvents( false ),
38 m_ctrlKey( aCtrlKey )
39{
40 m_listBox->InsertItems( aItems, 0 );
41 m_listBox->SetSelection( std::min( 0, (int) m_listBox->GetCount() - 1 ) );
42
43 int width = 0;
44 int height = 0;
45
46 for( const wxString& item : aItems )
47 {
48 wxSize extents = m_listBox->GetTextExtent( item );
49 width = std::max( width, extents.x );
50 height += extents.y + LIST_BOX_V_PADDING;
51 }
52
53 m_listBox->SetMinSize( wxSize( width + LIST_BOX_H_PADDING,
54 height + ( LIST_BOX_V_PADDING * 2 ) ) );
56
57 // this line fixes an issue on Linux Ubuntu using Unity (dialog not shown),
58 // and works fine on all systems
59 GetSizer()->Fit( this );
60
61 Centre();
62}
63
64
65bool EDA_VIEW_SWITCHER::Show( bool aShow )
66{
67 if( !aShow )
68 m_receivingEvents = false;
69
70 bool ret = DIALOG_SHIM::Show( aShow );
71
72 if( aShow )
73 {
74 m_receivingEvents = true;
75
76 // Force the dialog to always be centered over the window
77 Centre();
78 }
79
80 return ret;
81}
82
83
84// OK, this is *really* annoying, but wxWidgets doesn't give us key-down events while the
85// control key is being held down. So we can't use OnKeyDown() or OnCharHook() and instead
86// must rely on watching key states in TryBefore().
87//
88// Just checking the state of the tab key is tempting, but then we'll think it's been hit
89// several times when it's actually just a key-down followed by a redraw or idle event.
90//
91// So we have to keep a state machine of the tab key.
92//
93bool EDA_VIEW_SWITCHER::TryBefore( wxEvent& aEvent )
94{
96 {
97 return DIALOG_SHIM::TryBefore( aEvent );
98 }
99
100 // Check for tab key leading edge
101 if( !m_tabState && wxGetKeyState( WXK_TAB ) )
102 {
103 m_tabState = true;
104
105 int idx = m_listBox->GetSelection();
106
107 if( wxGetKeyState( WXK_SHIFT ) && m_ctrlKey != WXK_SHIFT )
108 {
109 if( --idx < 0 )
110 m_listBox->SetSelection( (int) m_listBox->GetCount() - 1 );
111 else
112 m_listBox->SetSelection( idx );
113 }
114 else
115 {
116 if( ++idx >= (int) m_listBox->GetCount() )
117 m_listBox->SetSelection( 0 );
118 else
119 m_listBox->SetSelection( idx );
120 }
121
122 return true;
123 }
124
125 // Check for tab key trailing edge
126 if( m_tabState && !wxGetKeyState( WXK_TAB ) )
127 {
128 m_tabState = false;
129 }
130
131 // Check for control key trailing edge
132 if( !wxGetKeyState( m_ctrlKey ) )
133 {
134 wxPostEvent( this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK ) );
135 }
136 else if( wxGetKeyState( WXK_ESCAPE ) )
137 {
138 wxPostEvent( this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL ) );
139 }
140
141 return DIALOG_SHIM::TryBefore( aEvent );
142}
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:79
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