KiCad PCB EDA Suite
Loading...
Searching...
No Matches
symbol_viewer_frame.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) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2008 Wayne Stambaugh <[email protected]>
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26
27#ifndef LIB_VIEW_FRAME_H__
28#define LIB_VIEW_FRAME_H__
29
30#include <sch_base_frame.h>
31#include <sch_screen.h>
32#include <tool/selection.h>
33
34class WX_LISTBOX;
35class wxSearchCtrl;
37class LIB_SYMBOL;
38
39
44{
45public:
46
53 SYMBOL_VIEWER_FRAME( KIWAY* aKiway, wxWindow* aParent );
54
56
57 void OnSize( wxSizeEvent& event ) override;
58
65 bool ReCreateLibList();
66
73 bool ReCreateSymbolList();
74
75 void DisplayLibInfos();
76 void doCloseWindow() override;
77 void CloseLibraryViewer( wxCommandEvent& event );
78
79 void ClickOnLibList( wxCommandEvent& event );
80 void ClickOnSymbolList( wxCommandEvent& event );
81
82 void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
83 void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
84
86
87 void CommonSettingsChanged( int aFlags ) override;
88
92 void SetSelectedLibrary( const wxString& aLibName,
93 const wxString& aSubLibName = wxEmptyString );
94
98 void SetSelectedSymbol( const wxString& aSymbolName );
99
100 // Accessors:
107 void SetUnitAndBodyStyle( int aUnit, int aBodyStyle );
108 int GetUnit() const { return m_unit; }
109 int GetBodyStyle() const { return m_bodyStyle; }
110
112
113 const BOX2I GetDocumentExtents( bool aIncludeAllVisible = true ) const override;
114
115 SELECTION& GetCurrentSelection() override;
116
117 void KiwayMailIn( KIWAY_EXPRESS& mail ) override;
118
119protected:
120 void configureToolbars() override;
121
122 void setupUIConditions() override;
123
124 void doReCreateMenuBar() override;
125
126private:
127 // Set up the tool framework.
128 void setupTools();
129
134 void OnActivate( wxActivateEvent& event );
135
136 void DClickOnSymbolList( wxCommandEvent& event );
137
138 // Rebuild the wxChoice m_unitChoice widget. Must be called after changing the selected symbol
139 void updateUnitChoice();
140 // Rebuild the wxChoice m_bodyStyleChoice widget. Must be called after changing the selected symbol
142
143 void OnLibFilter( wxCommandEvent& aEvent );
144 void OnSymFilter( wxCommandEvent& aEvent );
145 void OnCharHook( wxKeyEvent& aEvent ) override;
146
147 void onSelectNextSymbol( wxCommandEvent& aEvent );
148 void onSelectPreviousSymbol( wxCommandEvent& aEvent );
149 void onSelectSymbolUnit( wxCommandEvent& aEvent );
150 void onSelectSymbolBodyStyle( wxCommandEvent& aEvent );
151
152 void updatePreviewSymbol();
153
154private:
155 wxChoice* m_unitChoice;
157
158 wxSearchCtrl* m_libFilter;
159 WX_LISTBOX* m_libList; // The list of libraries.
160 int m_libListWidth; // Last width of the window.
161
162 wxSearchCtrl* m_symbolFilter;
163 WX_LISTBOX* m_symbolList; // The list of symbols.
164 int m_symbolListWidth; // Last width of the window.
165
166 // Filters to build list of libs/list of symbols.
168 wxArrayString m_allowedLibs;
169
171
172 static int m_unit;
173 static int m_bodyStyle;
174 static bool m_show_progress;
175
181
182 std::unique_ptr<LIB_SYMBOL> m_previewItem;
183
184 DECLARE_EVENT_TABLE()
185};
186
187#endif // LIB_VIEW_FRAME_H__
188
BOX2< VECTOR2I > BOX2I
Definition box2.h:922
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Carry a payload from one KIWAY_PLAYER to another within a PROJECT.
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition kiway.h:292
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:49
Define a library symbol object.
Definition lib_symbol.h:85
SCH_BASE_FRAME(KIWAY *aKiway, wxWindow *aParent, FRAME_T aWindowType, const wxString &aTitle, const wxPoint &aPosition, const wxSize &aSize, long aStyle, const wxString &aFrameName)
Helper object to filter a list of libraries.
void OnLibFilter(wxCommandEvent &aEvent)
std::unique_ptr< LIB_SYMBOL > m_previewItem
void CloseLibraryViewer(wxCommandEvent &event)
void onSelectNextSymbol(wxCommandEvent &aEvent)
void SetSelectedLibrary(const wxString &aLibName, const wxString &aSubLibName=wxEmptyString)
Set the selected library in the library window.
void ClickOnLibList(wxCommandEvent &event)
SYMBOL_VIEWER_FRAME(KIWAY *aKiway, wxWindow *aParent)
void DClickOnSymbolList(wxCommandEvent &event)
void OnActivate(wxActivateEvent &event)
Called when the frame is activated to reload the libraries and symbol lists that can be changed by th...
void OnSymFilter(wxCommandEvent &aEvent)
void setupUIConditions() override
Setup the UI conditions for the various actions and their controls in this frame.
void SetSelectedSymbol(const wxString &aSymbolName)
Set the selected symbol.
void KiwayMailIn(KIWAY_EXPRESS &mail) override
Receive KIWAY_EXPRESS messages from other players.
bool ReCreateLibList()
Create o recreates a sorted list of currently loaded libraries.
SELECTION & GetCurrentSelection() override
Get the current selection from the canvas area.
void ClickOnSymbolList(wxCommandEvent &event)
const BOX2I GetDocumentExtents(bool aIncludeAllVisible=true) const override
Return bounding box of document with option to not include some items.
void SetUnitAndBodyStyle(int aUnit, int aBodyStyle)
Set unit and convert, and set flag preventing them from automatically resetting to 1.
wxSearchCtrl * m_symbolFilter
void LoadSettings(APP_SETTINGS_BASE *aCfg) override
Load common frame parameters from a configuration file.
WINDOW_SETTINGS * GetWindowSettings(APP_SETTINGS_BASE *aCfg) override
Return a pointer to the window settings for this frame.
void OnCharHook(wxKeyEvent &aEvent) override
Capture the key event before it is sent to the GUI.
LIB_SYMBOL * GetSelectedSymbol() const
void onSelectSymbolUnit(wxCommandEvent &aEvent)
void OnSize(wxSizeEvent &event) override
Recalculate the size of toolbars and display panel when the frame size changes.
void onSelectPreviousSymbol(wxCommandEvent &aEvent)
void SaveSettings(APP_SETTINGS_BASE *aCfg) override
Save common frame parameters to a configuration data file.
void onSelectSymbolBodyStyle(wxCommandEvent &aEvent)
bool m_selection_changed
Updated to true if a list rewrite on GUI activation resulted in the symbol selection changing,...
bool ReCreateSymbolList()
Create or recreate the list of symbols in the currently selected library.
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
Store the common settings that are saved and loaded for each window / frame.