KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
pcb_design_block_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 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 <board.h>
21#include <confirm.h>
22#include <pcb_view.h>
23#include <pcb_screen.h>
26#include <math/vector2wx.h>
28#include <design_block.h>
30#include <pgm_base.h>
31#include <pcb_painter.h>
32#include <pcb_edit_frame.h>
33#include <pcb_field.h>
34#include <pcb_io/pcb_io.h>
35#include <pcb_io/pcb_io_mgr.h>
36#include <project_pcb.h>
37#include <pcbnew_settings.h>
38//#include <pcb_helpers.h>
42#include <wx/log.h>
43#include <wx/stattext.h>
44#include <wx/panel.h>
45
46
48 DESIGN_BLOCK_PREVIEW_WIDGET( aParent ), m_preview( nullptr ), m_status( nullptr ), m_statusPanel( nullptr ),
49 m_statusSizer( nullptr ), m_previewItem( nullptr )
50{
52 COMMON_SETTINGS* common_settings = Pgm().GetCommonSettings();
53 PCBNEW_SETTINGS* app_settings = mgr.GetAppSettings<PCBNEW_SETTINGS>( "pcbnew" );
54
55 m_galDisplayOptions.ReadConfig( *common_settings, app_settings->m_Window, this );
57
58 m_preview = FOOTPRINT_PREVIEW_PANEL::New( &aFrame->Kiway(), this, aFrame );
59 m_preview->SetStealsFocus( false );
60 m_preview->ShowScrollbars( wxSHOW_SB_NEVER, wxSHOW_SB_NEVER );
61 m_preview->GetGAL()->SetAxesEnabled( false );
62
63 // Do not display the grid: the look is not good for a small canvas area.
64 // But mainly, due to some strange bug I (JPC) was unable to fix, the grid creates
65 // strange artifacts on Windows when Pcb is run from KiCad manager (but not in
66 // stand alone...).
68
69 // Early initialization of the canvas background color,
70 // before any OnPaint event is fired for the canvas using a wrong bg color
71 KIGFX::VIEW* view = m_preview->GetView();
72 auto settings = static_cast<KIGFX::PCB_RENDER_SETTINGS*>( view->GetPainter()->GetSettings() );
73
74 if( auto* theme = Pgm().GetSettingsManager().GetColorSettings( app_settings->m_ColorTheme ) )
75 settings->LoadColors( theme );
76
77 const COLOR4D& backgroundColor = settings->GetBackgroundColor();
78 const COLOR4D& foregroundColor = settings->GetCursorColor();
79
80 m_preview->GetGAL()->SetClearColor( backgroundColor );
81
82 m_outerSizer = new wxBoxSizer( wxVERTICAL );
83
84 m_statusPanel = new wxPanel( this );
85 m_statusPanel->SetBackgroundColour( backgroundColor.ToColour() );
86 m_status = new wxStaticText( m_statusPanel, wxID_ANY, wxEmptyString );
87 m_status->SetForegroundColour( settings->GetLayerColor( LAYER_REFERENCEPART ).ToColour() );
88 m_statusSizer = new wxBoxSizer( wxVERTICAL );
89 m_statusSizer->Add( 0, 0, 1 ); // add a spacer
90 m_statusSizer->Add( m_status, 0, wxALIGN_CENTER );
91 m_statusSizer->Add( 0, 0, 1 ); // add a spacer
92 m_statusPanel->SetSizer( m_statusSizer );
93
94 // Give the status panel the same color scheme as the canvas so it isn't jarring when
95 // switched to.
96 m_statusPanel->SetBackgroundColour( backgroundColor.ToColour() );
97 m_statusPanel->SetForegroundColour( foregroundColor.ToColour() );
98
99 // Give the preview panel a small top border to align its top with the status panel,
100 // and give the status panel a small bottom border to align its bottom with the preview
101 // panel.
102 m_outerSizer->Add( m_preview, 1, wxTOP | wxEXPAND, 5 );
103 m_outerSizer->Add( m_statusPanel, 1, wxBOTTOM | wxEXPAND, 5 );
104
105 // Hide the status panel to start
106 m_statusPanel->Hide();
107
108 SetSizer( m_outerSizer );
109 Layout();
110
111 Connect( wxEVT_SIZE, wxSizeEventHandler( PCB_DESIGN_BLOCK_PREVIEW_WIDGET::onSize ), nullptr, this );
112}
113
114
116{
117 if( m_previewItem )
119
120 delete m_previewItem;
121}
122
123
125{
126 wxCHECK( m_statusPanel, /* void */ );
127
128 m_status->SetLabel( aText );
129 m_preview->Hide();
130 m_statusPanel->Show();
131 Layout();
132}
133
134
136{
137 if( m_previewItem )
138 {
141 }
142
143 aEvent.Skip();
144}
145
146
148{
149 if( !m_previewItem )
150 return;
151
152 // set the view scale to fit the item on screen
153 KIGFX::VIEW* view = m_preview->GetView();
154
155 // Calculate the drawing area size, in internal units, for a scaling factor = 1.0
156 view->SetScale( 1.0 );
157 VECTOR2D clientSize = view->ToWorld( ToVECTOR2D( m_preview->GetClientSize() ), false );
158 // Calculate the draw scale to fit the drawing area
159 double scale =
160 std::min( fabs( clientSize.x / m_itemBBox.GetWidth() ), fabs( clientSize.y / m_itemBBox.GetHeight() ) );
161
162 // Above calculation will yield an exact fit; add a bit of whitespace around block
163 scale /= 1.2;
164
165 // Now fix the best scale
166 view->SetScale( scale );
167 view->SetCenter( m_itemBBox.Centre() );
168}
169
170
172{
173 KIGFX::VIEW* view = m_preview->GetView();
174
175 if( m_previewItem )
176 {
177 view->Clear();
178 delete m_previewItem;
179 m_previewItem = nullptr;
180 }
181
182 if( aDesignBlock && wxFileExists( aDesignBlock->GetBoardFile() ) )
183 {
184 try
185 {
187 WX_PROGRESS_REPORTER progressReporter( this, _( "Loading PCB" ), 1 );
188
189 pi->SetProgressReporter( &progressReporter );
190
191 m_previewItem = pi->LoadBoard( aDesignBlock->GetBoardFile(), nullptr );
192 }
193 catch( const IO_ERROR& ioe )
194 {
195 // You wouldn't think boardFn.GetFullPath() would throw, but we get a stack buffer
196 // underflow from ASAN. While it's probably an ASAN error, a second try/catch doesn't
197 // cost us much.
198 try
199 {
200 if( ioe.Problem() != wxT( "CANCEL" ) )
201 {
202 wxString msg =
203 wxString::Format( _( "Error loading board file:\n%s" ), aDesignBlock->GetBoardFile() );
204 DisplayErrorMessage( this, msg, ioe.What() );
205 }
206 }
207 catch( ... )
208 {
209 // That was already our best-efforts
210 }
211 }
212
213
214 BOX2I bBox;
215
216 if( m_previewItem )
217 {
218 for( BOARD_ITEM* item : m_previewItem->GetItemSet() )
219 {
220 view->Add( item );
221
222 if( item->Type() == PCB_FIELD_T )
223 {
224 if( !static_cast<const PCB_FIELD*>( item )->IsVisible() )
225 continue;
226 }
227
228 bBox.Merge( item->GetBoundingBox() );
229 }
230 }
231
232 m_itemBBox = bBox;
233
234 if( !m_preview->IsShownOnScreen() )
235 {
236 m_preview->Show();
237
238 if( m_statusPanel )
239 m_statusPanel->Hide();
240
241 Layout(); // Ensure panel size is up to date.
242 }
243
244 // Calculate the draw scale to fit the drawing area
246 }
247
249 m_preview->Show();
250}
WINDOW_SETTINGS m_Window
Definition: app_settings.h:213
wxString m_ColorTheme
Active color theme name.
Definition: app_settings.h:216
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:78
const BOARD_ITEM_SET GetItemSet()
Definition: board.cpp:3068
constexpr size_type GetWidth() const
Definition: box2.h:214
constexpr Vec Centre() const
Definition: box2.h:97
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
Definition: box2.h:658
constexpr size_type GetHeight() const
Definition: box2.h:215
const wxString & GetBoardFile() const
Definition: design_block.h:48
virtual KIGFX::VIEW * GetView() const
Return a pointer to the #VIEW instance used in the panel.
void ForceRefresh()
Force a redraw.
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).
static FOOTPRINT_PREVIEW_PANEL * New(KIWAY *aKiway, wxWindow *aParent, UNITS_PROVIDER *aUnitsProvider)
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
virtual const wxString Problem() const
what was the problem?
Definition: exceptions.cpp:46
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.
PCB specific render settings.
Definition: pcb_painter.h:79
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:67
virtual void SetScale(double aScale, VECTOR2D aAnchor={ 0, 0 })
Set the scaling factor, zooming around a given anchor point.
Definition: view.cpp:560
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
Definition: view.cpp:297
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
Definition: view.cpp:332
void Clear()
Remove all items from the view.
Definition: view.cpp:1131
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:457
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Definition: view.h:216
void SetCenter(const VECTOR2D &aCenter)
Set the center point of the VIEW (i.e.
Definition: view.cpp:586
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
Definition: kiway_holder.h:55
PCB_DESIGN_BLOCK_PREVIEW_WIDGET(wxWindow *aParent, PCB_EDIT_FRAME *aFrame)
Construct a schematic design block preview widget.
BOX2I m_itemBBox
The bounding box of the current item.
void SetStatusText(const wxString &aText) override
Set the contents of the status label and display it.
void DisplayDesignBlock(DESIGN_BLOCK *aDesignBlock) override
Set the currently displayed symbol.
The main frame for Pcbnew.
static PCB_IO * PluginFind(PCB_FILE_T aFileType)
Return a #PLUGIN which the caller can use to import, export, save, or load design documents.
Definition: pcb_io_mgr.cpp:69
@ KICAD_SEXP
S-expression Pcbnew file format.
Definition: pcb_io_mgr.h:58
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition: pgm_base.cpp:687
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:125
COLOR_SETTINGS * GetColorSettings(const wxString &aName="user")
Retrieve a color settings object that applications can read colors from.
T * GetAppSettings(const wxString &aFilename)
Return a handle to the a given settings by type.
Multi-thread safe progress reporter dialog, intended for use of tasks that parallel reporting back of...
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
Definition: confirm.cpp:194
This file is part of the common library.
#define _(s)
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
Definition: io_mgr.h:33
@ LAYER_REFERENCEPART
Definition: layer_ids.h:449
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
const int scale
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
Definition: typeinfo.h:90
VECTOR2D ToVECTOR2D(const wxPoint &aPoint)
Definition: vector2wx.h:40