KiCad PCB EDA Suite
Loading...
Searching...
No Matches
symbol_preview_widget.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 (C) 2018-2021 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
21#include <sch_view.h>
24#include <math/vector2wx.h>
25#include <symbol_lib_table.h>
26#include <lib_symbol.h>
27#include <sch_preview_panel.h>
28#include <pgm_base.h>
29#include <sch_painter.h>
30#include <eda_draw_frame.h>
31#include <project_sch.h>
32#include <eeschema_settings.h>
34#include <wx/log.h>
35#include <wx/stattext.h>
36
37
38SYMBOL_PREVIEW_WIDGET::SYMBOL_PREVIEW_WIDGET( wxWindow* aParent, KIWAY* aKiway, bool aIncludeStatus,
39 EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType ) :
40 wxPanel( aParent, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 ),
41 m_kiway( aKiway ),
42 m_preview( nullptr ),
43 m_status( nullptr ),
44 m_statusPanel( nullptr ),
45 m_statusSizer( nullptr ),
46 m_previewItem( nullptr )
47{
49 COMMON_SETTINGS* common_settings = Pgm().GetCommonSettings();
50 EESCHEMA_SETTINGS* app_settings = mgr.GetAppSettings<EESCHEMA_SETTINGS>( "eeschema" );
51
52 m_galDisplayOptions.ReadConfig( *common_settings, app_settings->m_Window, this );
54
55 EDA_DRAW_PANEL_GAL::GAL_TYPE canvasType = aCanvasType;
56
57 // Allows only a CAIRO or OPENGL canvas:
59 && canvasType != EDA_DRAW_PANEL_GAL::GAL_FALLBACK )
60 {
62 }
63
64 m_preview = new SCH_PREVIEW_PANEL( this, wxID_ANY, wxDefaultPosition, wxSize( -1, -1 ),
65 m_galDisplayOptions, canvasType );
66 m_preview->SetStealsFocus( false );
67 m_preview->ShowScrollbars( wxSHOW_SB_NEVER, wxSHOW_SB_NEVER );
68 m_preview->GetGAL()->SetAxesEnabled( false );
69
70 // Do not display the grid: the look is not good for a small canvas area.
71 // But mainly, due to some strange bug I (JPC) was unable to fix, the grid creates
72 // strange artifacts on Windows when Eeschema is run from KiCad manager (but not in
73 // stand alone...).
75
76 // Early initialization of the canvas background color,
77 // before any OnPaint event is fired for the canvas using a wrong bg color
78 KIGFX::VIEW* view = m_preview->GetView();
79 auto settings = static_cast<SCH_RENDER_SETTINGS*>( view->GetPainter()->GetSettings() );
80
81 if( auto* theme = Pgm().GetSettingsManager().GetColorSettings( app_settings->m_ColorTheme ) )
82 settings->LoadColors( theme );
83
84 const COLOR4D& backgroundColor = settings->GetBackgroundColor();
85 const COLOR4D& foregroundColor = settings->GetCursorColor();
86
87 m_preview->GetGAL()->SetClearColor( backgroundColor );
88
89 settings->m_ShowPinsElectricalType = app_settings->m_LibViewPanel.show_pin_electrical_type;
90 settings->m_ShowPinNumbers = app_settings->m_LibViewPanel.show_pin_numbers;
91 settings->m_ShowHiddenPins = false;
92 settings->m_ShowHiddenFields = false;
93 settings->m_ShowPinAltIcons = false;
94
95 m_outerSizer = new wxBoxSizer( wxVERTICAL );
96
97 if( aIncludeStatus )
98 {
99 m_statusPanel = new wxPanel( this );
100 m_statusPanel->SetBackgroundColour( backgroundColor.ToColour() );
101 m_status = new wxStaticText( m_statusPanel, wxID_ANY, wxEmptyString );
102 m_status->SetForegroundColour( settings->GetLayerColor( LAYER_REFERENCEPART ).ToColour() );
103 m_statusSizer = new wxBoxSizer( wxVERTICAL );
104 m_statusSizer->Add( 0, 0, 1 ); // add a spacer
105 m_statusSizer->Add( m_status, 0, wxALIGN_CENTER );
106 m_statusSizer->Add( 0, 0, 1 ); // add a spacer
107 m_statusPanel->SetSizer( m_statusSizer );
108
109 // Give the status panel the same color scheme as the canvas so it isn't jarring when
110 // switched to.
111 m_statusPanel->SetBackgroundColour( backgroundColor.ToColour() );
112 m_statusPanel->SetForegroundColour( foregroundColor.ToColour() );
113
114 // Give the preview panel a small top border to align its top with the status panel,
115 // and give the status panel a small bottom border to align its bottom with the preview
116 // panel.
117 m_outerSizer->Add( m_preview, 1, wxTOP | wxEXPAND, 5 );
118 m_outerSizer->Add( m_statusPanel, 1, wxBOTTOM | wxEXPAND, 5 );
119
120 // Hide the status panel to start
121 m_statusPanel->Hide();
122 }
123 else
124 {
125 m_outerSizer->Add( m_preview, 1, wxEXPAND, 0 );
126 }
127
128 SetSizer( m_outerSizer );
129 Layout();
130
131 Connect( wxEVT_SIZE, wxSizeEventHandler( SYMBOL_PREVIEW_WIDGET::onSize ), nullptr, this );
132}
133
134
136{
137 if( m_previewItem )
139
140 delete m_previewItem;
141}
142
143
144void SYMBOL_PREVIEW_WIDGET::SetStatusText( wxString const& aText )
145{
146 wxCHECK( m_statusPanel, /* void */ );
147
148 m_status->SetLabel( aText );
149 m_preview->Hide();
150 m_statusPanel->Show();
151 Layout();
152}
153
154
155void SYMBOL_PREVIEW_WIDGET::onSize( wxSizeEvent& aEvent )
156{
157 if( m_previewItem )
158 {
161 }
162
163 aEvent.Skip();
164}
165
166
168{
169 if( !m_previewItem )
170 return;
171
172 // set the view scale to fit the item on screen
173 KIGFX::VIEW* view = m_preview->GetView();
174
175 // Calculate the drawing area size, in internal units, for a scaling factor = 1.0
176 view->SetScale( 1.0 );
177 VECTOR2D clientSize = view->ToWorld( ToVECTOR2D( m_preview->GetClientSize() ), false );
178 // Calculate the draw scale to fit the drawing area
179 double scale = std::min( fabs( clientSize.x / m_itemBBox.GetWidth() ),
180 fabs( clientSize.y / m_itemBBox.GetHeight() ) );
181
182 // Above calculation will yield an exact fit; add a bit of whitespace around symbol
183 scale /= 1.2;
184
185 // Now fix the best scale
186 view->SetScale( scale );
187 view->SetCenter( m_itemBBox.Centre() );
188}
189
190
191void SYMBOL_PREVIEW_WIDGET::DisplaySymbol( const LIB_ID& aSymbolID, int aUnit, int aBodyStyle )
192{
193 KIGFX::VIEW* view = m_preview->GetView();
194 auto settings = static_cast<SCH_RENDER_SETTINGS*>( view->GetPainter()->GetSettings() );
195 std::unique_ptr< LIB_SYMBOL > symbol;
196
197 try
198 {
200
201 if( tmp )
202 symbol = tmp->Flatten();
203 }
204 catch( const IO_ERROR& ioe )
205 {
206 wxLogError( _( "Error loading symbol %s from library '%s'." ) + wxS( "\n%s" ),
207 aSymbolID.GetLibItemName().wx_str(),
208 aSymbolID.GetLibNickname().wx_str(),
209 ioe.What() );
210 }
211
212 if( m_previewItem )
213 {
214 view->Remove( m_previewItem );
215 delete m_previewItem;
216 m_previewItem = nullptr;
217 }
218
219 if( symbol )
220 {
221 // This will flatten derived parts so that the correct final symbol can be shown.
222 m_previewItem = symbol.release();
223
224 // Hide fields that were added automatically by the library (for example, when using
225 // database libraries) as they don't have a valid position yet, and we don't support
226 // autoplacing fields on library symbols yet.
227 std::vector<SCH_FIELD*> previewFields;
228 m_previewItem->GetFields( previewFields );
229
230 for( SCH_FIELD* field : previewFields )
231 {
232 if( field->IsAutoAdded() )
233 field->SetVisible( false );
234 }
235
236 // If unit isn't specified for a multi-unit part, pick the first. (Otherwise we'll
237 // draw all of them.)
238 settings->m_ShowUnit = ( m_previewItem->IsMulti() && aUnit == 0 ) ? 1 : aUnit;
239
240 // For symbols having a De Morgan body style, use the first style
241 settings->m_ShowBodyStyle =
242 ( m_previewItem->HasAlternateBodyStyle() && aBodyStyle == 0 ) ? 1 : aBodyStyle;
243
244 view->Add( m_previewItem );
245
246 // Get the symbol size, in internal units
247 m_itemBBox = m_previewItem->GetUnitBoundingBox( settings->m_ShowUnit,
248 settings->m_ShowBodyStyle );
249
250 if( !m_preview->IsShownOnScreen() )
251 {
252 m_preview->Show();
253
254 if( m_statusPanel )
255 m_statusPanel->Hide();
256
257 Layout(); // Ensure panel size is up to date.
258 }
259
260 // Calculate the draw scale to fit the drawing area
262 }
263
265}
266
267
268void SYMBOL_PREVIEW_WIDGET::DisplayPart( LIB_SYMBOL* aSymbol, int aUnit, int aBodyStyle )
269{
270 KIGFX::VIEW* view = m_preview->GetView();
271
272 if( m_previewItem )
273 {
274 view->Remove( m_previewItem );
275 delete m_previewItem;
276 m_previewItem = nullptr;
277 }
278
279 if( aSymbol )
280 {
281 m_previewItem = new LIB_SYMBOL( *aSymbol );
282
283 // For symbols having a De Morgan body style, use the first style
284 auto settings = static_cast<SCH_RENDER_SETTINGS*>( view->GetPainter()->GetSettings() );
285
286 // If unit isn't specified for a multi-unit part, pick the first. (Otherwise we'll
287 // draw all of them.)
288 settings->m_ShowUnit = ( m_previewItem->IsMulti() && aUnit == 0 ) ? 1 : aUnit;
289
290 settings->m_ShowBodyStyle =
291 ( m_previewItem->HasAlternateBodyStyle() && aBodyStyle == 0 ) ? 1 : aBodyStyle;
292
293 view->Add( m_previewItem );
294
295 // Get the symbol size, in internal units
296 m_itemBBox = aSymbol->GetUnitBoundingBox( settings->m_ShowUnit, settings->m_ShowBodyStyle );
297
298 // Calculate the draw scale to fit the drawing area
300 }
301
303 m_preview->Show();
304
305 if( m_statusPanel )
306 m_statusPanel->Hide();
307
308 Layout();
309}
WINDOW_SETTINGS m_Window
Definition: app_settings.h:194
wxString m_ColorTheme
Active color theme name.
Definition: app_settings.h:197
constexpr size_type GetWidth() const
Definition: box2.h:214
constexpr Vec Centre() const
Definition: box2.h:97
constexpr size_type GetHeight() const
Definition: box2.h:215
static constexpr GAL_TYPE GAL_FALLBACK
virtual KIGFX::VIEW * GetView() const
Return a pointer to the #VIEW instance used in the panel.
void ForceRefresh()
Force a redraw.
@ GAL_TYPE_OPENGL
OpenGL implementation.
KIGFX::GAL * GetGAL() const
Return a pointer to the GAL instance used in the panel.
void SetStealsFocus(bool aStealsFocus)
Set whether focus is taken on certain events (mouseover, keys, etc).
PANEL_LIB_VIEW m_LibViewPanel
void ReadConfig(COMMON_SETTINGS &aCommonConfig, WINDOW_SETTINGS &aWindowConfig, wxWindow *aWindow)
Read application and common configs.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
virtual const wxString What() const
A composite of Problem() and Where()
Definition: exceptions.cpp:30
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
wxColour ToColour() const
Definition: color4d.cpp:220
bool m_forceDisplayCursor
The pixel scale factor (>1 for hi-DPI scaled displays)
void SetAxesEnabled(bool aAxesEnabled)
Enable drawing the axes.
void SetClearColor(const COLOR4D &aColor)
void SetGridVisibility(bool aVisibility)
Set the visibility setting of the grid.
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
virtual void SetScale(double aScale, VECTOR2D aAnchor={ 0, 0 })
Set the scaling factor, zooming around a given anchor point.
Definition: view.cpp:562
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
Definition: view.cpp:299
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
Definition: view.cpp:334
VECTOR2D ToWorld(const VECTOR2D &aCoord, bool aAbsolute=true) const
Converts a screen space point/vector to a point/vector in world space coordinates.
Definition: view.cpp:459
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Definition: view.h:217
void SetCenter(const VECTOR2D &aCenter)
Set the center point of the VIEW (i.e.
Definition: view.cpp:588
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition: kiway.h:284
virtual PROJECT & Prj() const
Return the PROJECT associated with this KIWAY.
Definition: kiway.cpp:196
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49
const UTF8 & GetLibItemName() const
Definition: lib_id.h:102
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
Definition: lib_id.h:87
Define a library symbol object.
Definition: lib_symbol.h:78
bool IsMulti() const override
Definition: lib_symbol.h:554
const BOX2I GetUnitBoundingBox(int aUnit, int aBodyStyle, bool aIgnoreHiddenFields=true) const
Get the bounding box for the symbol.
Definition: lib_symbol.cpp:943
void GetFields(std::vector< SCH_FIELD * > &aList)
Return a list of fields within this symbol.
bool HasAlternateBodyStyle() const override
Test if symbol has more than one body conversion type (DeMorgan).
std::unique_ptr< LIB_SYMBOL > Flatten() const
Return a flattened symbol inheritance to the caller.
Definition: lib_symbol.cpp:304
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition: pgm_base.cpp:679
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:142
static SYMBOL_LIB_TABLE * SchSymbolLibTable(PROJECT *aProject)
Accessor for project symbol library table.
Instances are attached to a symbol or sheet and provide a place for the symbol's value,...
Definition: sch_field.h:51
void LoadColors(const COLOR_SETTINGS *aSettings) override
COLOR_SETTINGS * GetColorSettings(const wxString &aName="user")
Retrieves a color settings object that applications can read colors from.
T * GetAppSettings(const wxString &aFilename)
Returns a handle to the a given settings by type If the settings have already been loaded,...
LIB_SYMBOL * LoadSymbol(const wxString &aNickname, const wxString &aName)
Load a LIB_SYMBOL having aName from the library given by aNickname.
LIB_SYMBOL * m_previewItem
A local copy of the LIB_SYMBOL to display on the canvas.
SYMBOL_PREVIEW_WIDGET(wxWindow *aParent, KIWAY *aKiway, bool aIncludeStatus, EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType)
Construct a symbol preview widget.
void SetStatusText(const wxString &aText)
Set the contents of the status label and display it.
EDA_DRAW_PANEL_GAL * m_preview
void onSize(wxSizeEvent &aEvent)
BOX2I m_itemBBox
The bounding box of the current item.
GAL_DISPLAY_OPTIONS_IMPL m_galDisplayOptions
void DisplaySymbol(const LIB_ID &aSymbolID, int aUnit, int aBodyStyle=0)
Set the currently displayed symbol.
void DisplayPart(LIB_SYMBOL *aSymbol, int aUnit, int aBodyStyle=0)
wxString wx_str() const
Definition: utf8.cpp:45
#define _(s)
@ LAYER_REFERENCEPART
Definition: layer_ids.h:364
PGM_BASE & Pgm()
The global Program "get" accessor.
Definition: pgm_base.cpp:1060
see class PGM_BASE
const int scale
VECTOR2D ToVECTOR2D(const wxPoint &aPoint)
Definition: vector2wx.h:40