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 <sch_preview_panel.h>
27#include <pgm_base.h>
28#include <sch_painter.h>
29#include <eda_draw_frame.h>
30#include <project_sch.h>
31#include <eeschema_settings.h>
33#include <wx/log.h>
34#include <wx/stattext.h>
35
36
37SYMBOL_PREVIEW_WIDGET::SYMBOL_PREVIEW_WIDGET( wxWindow* aParent, KIWAY* aKiway, bool aIncludeStatus,
38 EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType ) :
39 wxPanel( aParent, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 ),
40 m_kiway( aKiway ),
41 m_preview( nullptr ),
42 m_status( nullptr ),
43 m_statusPanel( nullptr ),
44 m_statusSizer( nullptr ),
45 m_previewItem( nullptr )
46{
47 auto common_settings = Pgm().GetCommonSettings();
48 auto app_settings = Pgm().GetSettingsManager().GetAppSettings<EESCHEMA_SETTINGS>();
49
50 m_galDisplayOptions.ReadConfig( *common_settings, app_settings->m_Window, this );
52
53 EDA_DRAW_PANEL_GAL::GAL_TYPE canvasType = aCanvasType;
54
55 // Allows only a CAIRO or OPENGL canvas:
57 && canvasType != EDA_DRAW_PANEL_GAL::GAL_FALLBACK )
58 {
60 }
61
62 m_preview = new SCH_PREVIEW_PANEL( this, wxID_ANY, wxDefaultPosition, wxSize( -1, -1 ),
63 m_galDisplayOptions, canvasType );
64 m_preview->SetStealsFocus( false );
65 m_preview->ShowScrollbars( wxSHOW_SB_NEVER, wxSHOW_SB_NEVER );
66 m_preview->GetGAL()->SetAxesEnabled( false );
67
68 // Do not display the grid: the look is not good for a small canvas area.
69 // But mainly, due to some strange bug I (JPC) was unable to fix, the grid creates
70 // strange artifacts on Windows when Eeschema is run from KiCad manager (but not in
71 // stand alone...).
73
74 // Early initialization of the canvas background color,
75 // before any OnPaint event is fired for the canvas using a wrong bg color
76 KIGFX::VIEW* view = m_preview->GetView();
77 auto settings = static_cast<KIGFX::SCH_RENDER_SETTINGS*>( view->GetPainter()->GetSettings() );
78
79 if( auto* theme = Pgm().GetSettingsManager().GetColorSettings( app_settings->m_ColorTheme ) )
80 settings->LoadColors( theme );
81
82 const COLOR4D& backgroundColor = settings->GetBackgroundColor();
83 const COLOR4D& foregroundColor = settings->GetCursorColor();
84
85 m_preview->GetGAL()->SetClearColor( backgroundColor );
86
87 settings->m_ShowPinsElectricalType = app_settings->m_LibViewPanel.show_pin_electrical_type;
88 settings->m_ShowPinNumbers = app_settings->m_LibViewPanel.show_pin_numbers;
89
90 m_outerSizer = new wxBoxSizer( wxVERTICAL );
91
92 if( aIncludeStatus )
93 {
94 m_statusPanel = new wxPanel( this );
95 m_statusPanel->SetBackgroundColour( backgroundColor.ToColour() );
96 m_status = new wxStaticText( m_statusPanel, wxID_ANY, wxEmptyString );
97 m_status->SetForegroundColour( settings->GetLayerColor( LAYER_REFERENCEPART ).ToColour() );
98 m_statusSizer = new wxBoxSizer( wxVERTICAL );
99 m_statusSizer->Add( 0, 0, 1 ); // add a spacer
100 m_statusSizer->Add( m_status, 0, wxALIGN_CENTER );
101 m_statusSizer->Add( 0, 0, 1 ); // add a spacer
102 m_statusPanel->SetSizer( m_statusSizer );
103
104 // Give the status panel the same color scheme as the canvas so it isn't jarring when
105 // switched to.
106 m_statusPanel->SetBackgroundColour( backgroundColor.ToColour() );
107 m_statusPanel->SetForegroundColour( foregroundColor.ToColour() );
108
109 // Give the preview panel a small top border to align its top with the status panel,
110 // and give the status panel a small bottom border to align its bottom with the preview
111 // panel.
112 m_outerSizer->Add( m_preview, 1, wxTOP | wxEXPAND, 5 );
113 m_outerSizer->Add( m_statusPanel, 1, wxBOTTOM | wxEXPAND, 5 );
114
115 // Hide the status panel to start
116 m_statusPanel->Hide();
117 }
118 else
119 {
120 m_outerSizer->Add( m_preview, 1, wxEXPAND, 0 );
121 }
122
123 SetSizer( m_outerSizer );
124 Layout();
125
126 Connect( wxEVT_SIZE, wxSizeEventHandler( SYMBOL_PREVIEW_WIDGET::onSize ), nullptr, this );
127}
128
129
131{
132 if( m_previewItem )
134
135 delete m_previewItem;
136}
137
138
139void SYMBOL_PREVIEW_WIDGET::SetStatusText( wxString const& aText )
140{
141 wxCHECK( m_statusPanel, /* void */ );
142
143 m_status->SetLabel( aText );
144 m_preview->Hide();
145 m_statusPanel->Show();
146 Layout();
147}
148
149
150void SYMBOL_PREVIEW_WIDGET::onSize( wxSizeEvent& aEvent )
151{
152 if( m_previewItem )
153 {
156 }
157
158 aEvent.Skip();
159}
160
161
163{
164 if( !m_previewItem )
165 return;
166
167 // set the view scale to fit the item on screen
168 KIGFX::VIEW* view = m_preview->GetView();
169
170 // Calculate the drawing area size, in internal units, for a scaling factor = 1.0
171 view->SetScale( 1.0 );
172 VECTOR2D clientSize = view->ToWorld( ToVECTOR2D( m_preview->GetClientSize() ), false );
173 // Calculate the draw scale to fit the drawing area
174 double scale = std::min( fabs( clientSize.x / m_itemBBox.GetWidth() ),
175 fabs( clientSize.y / m_itemBBox.GetHeight() ) );
176
177 // Above calculation will yield an exact fit; add a bit of whitespace around symbol
178 scale /= 1.2;
179
180 // Now fix the best scale
181 view->SetScale( scale );
182 view->SetCenter( m_itemBBox.Centre() );
183}
184
185
186void SYMBOL_PREVIEW_WIDGET::DisplaySymbol( const LIB_ID& aSymbolID, int aUnit, int aConvert )
187{
188 KIGFX::VIEW* view = m_preview->GetView();
189 auto settings = static_cast<KIGFX::SCH_RENDER_SETTINGS*>( view->GetPainter()->GetSettings() );
190 std::unique_ptr< LIB_SYMBOL > symbol;
191
192 try
193 {
195
196 if( tmp )
197 symbol = tmp->Flatten();
198 }
199 catch( const IO_ERROR& ioe )
200 {
201 wxLogError( _( "Error loading symbol %s from library '%s'." ) + wxS( "\n%s" ),
202 aSymbolID.GetLibItemName().wx_str(),
203 aSymbolID.GetLibNickname().wx_str(),
204 ioe.What() );
205 }
206
207 if( m_previewItem )
208 {
209 view->Remove( m_previewItem );
210 delete m_previewItem;
211 m_previewItem = nullptr;
212 }
213
214 if( symbol )
215 {
216 // This will flatten derived parts so that the correct final symbol can be shown.
217 m_previewItem = symbol.release();
218
219 // Hide fields that were added automatically by the library (for example, when using
220 // database libraries) as they don't have a valid position yet, and we don't support
221 // autoplacing fields on library symbols yet.
222 std::vector<LIB_FIELD*> previewFields;
223 m_previewItem->GetFields( previewFields );
224
225 for( LIB_FIELD* field : previewFields )
226 {
227 if( field->IsAutoAdded() )
228 field->SetVisible( false );
229 }
230
231 // If unit isn't specified for a multi-unit part, pick the first. (Otherwise we'll
232 // draw all of them.)
233 settings->m_ShowUnit = ( m_previewItem->IsMulti() && aUnit == 0 ) ? 1 : aUnit;
234
235 // For symbols having a De Morgan body style, use the first style
236 settings->m_ShowConvert =
237 ( m_previewItem->HasConversion() && aConvert == 0 ) ? 1 : aConvert;
238
239 view->Add( m_previewItem );
240
241 // Get the symbol size, in internal units
242 m_itemBBox = m_previewItem->GetUnitBoundingBox( settings->m_ShowUnit,
243 settings->m_ShowConvert );
244
245 if( !m_preview->IsShown() )
246 {
247 m_preview->Show();
248
249 if( m_statusPanel )
250 m_statusPanel->Hide();
251
252 Layout(); // Ensure panel size is up to date.
253 }
254
255 // Calculate the draw scale to fit the drawing area
257 }
258
260}
261
262
263void SYMBOL_PREVIEW_WIDGET::DisplayPart( LIB_SYMBOL* aSymbol, int aUnit, int aConvert )
264{
265 KIGFX::VIEW* view = m_preview->GetView();
266
267 if( m_previewItem )
268 {
269 view->Remove( m_previewItem );
270 delete m_previewItem;
271 m_previewItem = nullptr;
272 }
273
274 if( aSymbol )
275 {
276 m_previewItem = new LIB_SYMBOL( *aSymbol );
277
278 // For symbols having a De Morgan body style, use the first style
279 auto settings =
280 static_cast<KIGFX::SCH_RENDER_SETTINGS*>( view->GetPainter()->GetSettings() );
281
282 // If unit isn't specified for a multi-unit part, pick the first. (Otherwise we'll
283 // draw all of them.)
284 settings->m_ShowUnit = ( m_previewItem->IsMulti() && aUnit == 0 ) ? 1 : aUnit;
285
286 settings->m_ShowConvert =
287 ( m_previewItem->HasConversion() && aConvert == 0 ) ? 1 : aConvert;
288
289 view->Add( m_previewItem );
290
291 // Get the symbol size, in internal units
292 m_itemBBox = aSymbol->GetUnitBoundingBox( settings->m_ShowUnit, settings->m_ShowConvert );
293
294 // Calculate the draw scale to fit the drawing area
296 }
297
299 m_preview->Show();
300
301 if( m_statusPanel )
302 m_statusPanel->Hide();
303
304 Layout();
305}
coord_type GetHeight() const
Definition: box2.h:189
coord_type GetWidth() const
Definition: box2.h:188
Vec Centre() const
Definition: box2.h:71
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).
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:76
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.
Store schematic specific render settings.
Definition: sch_painter.h:71
void LoadColors(const COLOR_SETTINGS *aSettings) override
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:547
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
Definition: view.cpp:313
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
Definition: view.cpp:350
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:444
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Definition: view.h:212
void SetCenter(const VECTOR2D &aCenter)
Set the center point of the VIEW (i.e.
Definition: view.cpp:573
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition: kiway.h:279
virtual PROJECT & Prj() const
Return the PROJECT associated with this KIWAY.
Definition: kiway.cpp:196
Field object used in symbol libraries.
Definition: lib_field.h:62
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:99
bool IsMulti() const
Definition: lib_symbol.h:601
void GetFields(std::vector< LIB_FIELD * > &aList)
Return a list of fields within this symbol.
const BOX2I GetUnitBoundingBox(int aUnit, int aConvert, bool aIgnoreHiddenFields=true) const
Get the bounding box for the symbol.
std::unique_ptr< LIB_SYMBOL > Flatten() const
Return a flattened symbol inheritance to the caller.
Definition: lib_symbol.cpp:615
bool HasConversion() const
Test if symbol has more than one body conversion type (DeMorgan).
static SYMBOL_LIB_TABLE * SchSymbolLibTable(PROJECT *aProject)
Accessor for project symbol library table.
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)
void DisplayPart(LIB_SYMBOL *aSymbol, int aUnit, int aConvert=0)
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 aConvert=0)
Set the currently displayed symbol.
wxString wx_str() const
Definition: utf8.cpp:45
#define _(s)
@ LAYER_REFERENCEPART
Definition: layer_ids.h:357
see class PGM_BASE
KIWAY Kiway & Pgm(), KFCTL_STANDALONE
The global Program "get" accessor.
Definition: single_top.cpp:115
const int scale
VECTOR2D ToVECTOR2D(const wxPoint &aPoint)
Definition: vector2wx.h:40