KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
search_pane.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 "widgets/search_pane.h"
21
22
23#include <tool/action_menu.h>
25#include <eda_draw_frame.h>
26#include <bitmaps.h>
27#include <kiway.h>
30
31
32#define ID_TOGGLE_ZOOM_TO_SELECTION 14000
33#define ID_TOGGLE_PAN_TO_SELECTION 14001
34
35
37{
38public:
40 ACTION_MENU( true, nullptr ),
41 m_frame( aFrame )
42 {
43 Add( _( "Zoom to Selection" ), _( "Toggle zooming to selections in the search pane" ),
44 ID_TOGGLE_ZOOM_TO_SELECTION, BITMAPS::zoom_fit_to_objects, true );
45 Add( _( "Pan to Selection" ), _( "Toggle panning to selections in the search pane" ),
46 ID_TOGGLE_PAN_TO_SELECTION, BITMAPS::zoom_center_on_screen, true );
47
49 }
50
51 OPT_TOOL_EVENT eventHandler( const wxMenuEvent& aEvent ) override
52 {
54 const int id = aEvent.GetId();
55 const wxMenuItem* item = FindItem( id );
56
57 switch( id )
58 {
63 break;
68 break;
69 }
70 return OPT_TOOL_EVENT();
71 }
72
73private:
75 {
77
78 wxMenuItem* zoomCb = FindItem( ID_TOGGLE_ZOOM_TO_SELECTION );
79 wxMenuItem* panCb = FindItem( ID_TOGGLE_PAN_TO_SELECTION );
80
83 }
84
85private:
87};
88
89
91 SEARCH_PANE_BASE( aFrame ),
92 m_frame( aFrame )
93{
94 m_frame->Bind( EDA_LANG_CHANGED, &SEARCH_PANE::OnLanguageChange, this );
95
97
98 m_menuButton->SetBitmap( KiBitmapBundle( BITMAPS::config ) );
99 m_menuButton->Bind( wxEVT_LEFT_DOWN,
100 [&]( wxMouseEvent& event )
101 {
102 PopupMenu( m_menu );
103 } );
104
105 m_frame->Bind( wxEVT_AUI_PANE_CLOSE, &SEARCH_PANE::OnClosed, this );
106}
107
108
110{
111 m_frame->Unbind( wxEVT_AUI_PANE_CLOSE, &SEARCH_PANE::OnClosed, this );
112 m_frame->Unbind( EDA_LANG_CHANGED, &SEARCH_PANE::OnLanguageChange, this );
113
114 delete m_menu;
115}
116
117
118void SEARCH_PANE::OnLanguageChange( wxCommandEvent& aEvent )
119{
120 m_searchCtrl1->SetDescriptiveText( _( "Search" ) );
121
122 for( size_t i = 0; i < m_notebook->GetPageCount(); ++i )
123 {
124 wxWindow* page = m_notebook->GetPage( i );
125 SEARCH_PANE_TAB* tab = dynamic_cast<SEARCH_PANE_TAB*>( page );
126
127 wxCHECK( tab, /* void */ );
128
129 tab->RefreshColumnNames();
130 m_notebook->SetPageText( i, wxGetTranslation( tab->GetSearchHandler()->GetName() ) );
131 }
132
133 aEvent.Skip();
134}
135
136
138{
139 SEARCH_PANE_TAB* tab = new SEARCH_PANE_TAB( aHandler, m_notebook );
140
141 m_notebook->AddPage( tab, wxGetTranslation( aHandler->GetName() ) );
142 m_handlers.push_back( aHandler );
143 m_tabs.push_back( tab );
144}
145
146
148{
150
151 if( tab )
152 tab->Search( m_lastQuery );
153}
154
155
157{
158 for( SEARCH_PANE_TAB* tab : m_tabs )
159 tab->Clear();
160}
161
162
163void SEARCH_PANE::OnSearchTextEntry( wxCommandEvent& aEvent )
164{
165 wxString query = m_searchCtrl1->GetValue();
166 m_lastQuery = query;
167
169}
170
171
173{
174 m_searchCtrl1->SetFocus();
175}
176
177
178void SEARCH_PANE::OnNotebookPageChanged( wxBookCtrlEvent& aEvent )
179{
181
182 if( tab )
183 tab->Search( m_lastQuery );
184}
185
186
187void SEARCH_PANE::OnClosed( wxAuiManagerEvent& aEvent )
188{
189 if( APP_SETTINGS_BASE* cfg = m_frame->config() )
190 m_frame->SaveSettings( cfg );
191
192 aEvent.Skip();
193}
194
195
197{
198 return dynamic_cast<SEARCH_PANE_TAB*>( m_notebook->GetCurrentPage() );
199}
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Definition: bitmap.cpp:110
Define the structure of a menu based on ACTIONs.
Definition: action_menu.h:49
wxMenuItem * Add(const wxString &aLabel, int aId, BITMAPS aIcon)
Add a wxWidgets-style entry to the menu.
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:92
SEARCH_PANE m_SearchPane
Definition: app_settings.h:207
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
The base class for create windows for drawing purpose.
void SaveSettings(APP_SETTINGS_BASE *aCfg) override
Save common frame parameters to a configuration data file.
wxString GetName() const
Definition: search_pane.h:45
Class SEARCH_PANE_BASE.
wxNotebook * m_notebook
wxSearchCtrl * m_searchCtrl1
STD_BITMAP_BUTTON * m_menuButton
EDA_DRAW_FRAME & m_frame
Definition: search_pane.cpp:86
SEARCH_PANE_MENU(EDA_DRAW_FRAME &aFrame)
Definition: search_pane.cpp:39
void updateZoomPanCheckboxes()
Definition: search_pane.cpp:74
OPT_TOOL_EVENT eventHandler(const wxMenuEvent &aEvent) override
Event handler stub.
Definition: search_pane.cpp:51
void Search(wxString &query)
SEARCH_HANDLER * GetSearchHandler() const
void RefreshSearch()
void AddSearcher(SEARCH_HANDLER *aHandler)
void OnSearchTextEntry(wxCommandEvent &aEvent) override
void OnNotebookPageChanged(wxBookCtrlEvent &aEvent) override
std::vector< SEARCH_PANE_TAB * > m_tabs
Definition: search_pane.h:86
void OnLanguageChange(wxCommandEvent &aEvent)
EDA_DRAW_FRAME * m_frame
Definition: search_pane.h:88
SEARCH_PANE(EDA_DRAW_FRAME *aFrame)
Definition: search_pane.cpp:90
SEARCH_PANE_TAB * GetCurrentTab() const
ACTION_MENU * m_menu
Definition: search_pane.h:89
virtual ~SEARCH_PANE()
std::vector< SEARCH_HANDLER * > m_handlers
Definition: search_pane.h:85
void ClearAllResults()
void FocusSearch()
wxString m_lastQuery
Definition: search_pane.h:87
void OnClosed(wxAuiManagerEvent &aEvent)
void SetBitmap(const wxBitmapBundle &aBmp)
#define _(s)
#define ID_TOGGLE_ZOOM_TO_SELECTION
Definition: search_pane.cpp:32
#define ID_TOGGLE_PAN_TO_SELECTION
Definition: search_pane.cpp:33
std::optional< TOOL_EVENT > OPT_TOOL_EVENT
Definition: tool_event.h:633