KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_view.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) 2013-2018 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * @author Tomasz Wlostowski <[email protected]>
8 * @author Maciej Suminski <[email protected]>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
24#include <core/typeinfo.h>
25#include <memory>
26#include <view/view.h>
27#include <view/view_rtree.h>
30#include <tool/tool_manager.h>
31#include <layer_ids.h>
32#include <sch_screen.h>
33#include <schematic.h>
35#include <text_var_dependency.h>
36#include <sch_base_frame.h>
37#include <sch_edit_frame.h>
38#include <string_utils.h>
39
40#include "sch_view.h"
41
42
43namespace KIGFX {
44
45
47 VIEW()
48{
49 m_frame = aFrame;
50}
51
52
57
58
71
72
73void SCH_VIEW::Update( const KIGFX::VIEW_ITEM* aItem, int aUpdateFlags ) const
74{
75 if( aItem->IsSCH_ITEM() )
76 {
77 // The equivalent function in PCB_VIEW doesn't need to do this, but
78 // that's only because RunOnChildren's constness is misleading in the PCB editor;
79 // it doesn't modify target item, but our uses of it modify its children.
80 SCH_ITEM* schItem = const_cast<SCH_ITEM*>( static_cast<const SCH_ITEM*>( aItem ) );
81
82 if( schItem->Type() == SCH_TABLECELL_T )
83 {
84 VIEW::Update( schItem->GetParent() );
85 }
86 else
87 {
88 schItem->RunOnChildren(
89 [this, aUpdateFlags]( SCH_ITEM* child )
90 {
91 VIEW::Update( child, aUpdateFlags );
92 },
94 }
95 }
96
97 VIEW::Update( aItem, aUpdateFlags );
98}
99
100
101void SCH_VIEW::Update( const KIGFX::VIEW_ITEM* aItem ) const
102{
104}
105
106
108{
109 Clear();
110 m_drawingSheet.reset();
111 m_preview.reset();
112}
113
114
115void SCH_VIEW::SetScale( double aScale, VECTOR2D aAnchor )
116{
117 VIEW::SetScale( aScale, aAnchor );
118
119 // Redraw items whose rendering is dependent on zoom
120 if( m_frame )
121 m_frame->RefreshZoomDependentItems();
122}
123
124
125void SCH_VIEW::DisplaySheet( const SCH_SCREEN *aScreen )
126{
127 for( SCH_ITEM* item : aScreen->Items() )
128 Add( item );
129
131 &aScreen->Schematic()->Project(),
132 &aScreen->GetTitleBlock(),
133 aScreen->Schematic()->GetProperties() ) );
134 m_drawingSheet->SetPageNumber( TO_UTF8( aScreen->GetPageNumber() ) );
135 m_drawingSheet->SetSheetCount( aScreen->GetPageCount() );
136 m_drawingSheet->SetFileName( TO_UTF8( aScreen->GetFileName() ) );
138 m_drawingSheet->SetPageBorderColorLayer( LAYER_SCHEMATIC_PAGE_LIMITS );
139
140 wxString currentVariant = aScreen->Schematic()->GetCurrentVariant();
141 wxString variantDesc = aScreen->Schematic()->GetVariantDescription( currentVariant );
142 m_drawingSheet->SetVariantName( TO_UTF8( currentVariant ) );
143 m_drawingSheet->SetVariantDesc( TO_UTF8( variantDesc ) );
144
145 if( m_frame && m_frame->IsType( FRAME_SCH ) )
146 {
147 SCH_EDIT_FRAME* editFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_frame );
148
149 wxCHECK( editFrame, /* void */ );
150
151 // The title block metadata (sheet name/path, first-page flag) is derived from the
152 // current sheet, so the screen being displayed must be the current sheet's screen.
153 wxCHECK( editFrame->GetCurrentSheet().LastScreen() == aScreen, /* void */ );
154
156 }
157 else
158 {
159 m_drawingSheet->SetIsFirstPage( aScreen->GetVirtualPageNumber() == 1 );
160 m_drawingSheet->SetSheetName( "" );
161 m_drawingSheet->SetSheetPath( "" );
162 }
163
164 Add( m_drawingSheet.get() );
165
166 // Reactive title-block repaint: register this proxy with the schematic's
167 // text-var tracker. The listener that routes invalidations to VIEW::Update
168 // is installed lazily here too; it outlives individual proxy instances
169 // since it re-reads the current drawing sheet on every fire.
170 if( aScreen->Schematic() )
171 {
172 if( SCHEMATIC_TEXT_VAR_ADAPTER* adapter = aScreen->Schematic()->GetTextVarAdapter() )
173 {
174 m_drawingSheet->AttachToTracker( &adapter->Tracker() );
175
176 TEXT_VAR_TRACKER* tracker = &adapter->Tracker();
177
178 if( m_textVarListenerTracker != tracker
180 {
181 m_textVarListenerTracker->RemoveInvalidateListener( m_textVarListenerHandle );
183 m_textVarListenerTracker = nullptr;
184 }
185
187 {
188 m_textVarListenerTracker = tracker;
190 [this]( EDA_ITEM* aDep, const TEXT_VAR_REF_KEY& )
191 {
192 if( !aDep )
193 return;
194
195 if( m_drawingSheet && aDep == m_drawingSheet.get() )
196 {
198 return;
199 }
200
201 if( aDep->IsSCH_ITEM() )
202 Update( aDep, KIGFX::REPAINT );
203 } );
204 }
205 }
206 }
207
208 InitPreview();
209
210 // Allow tools to add anything they require to the view (such as the selection VIEW_GROUP)
211 if( m_frame && m_frame->GetToolManager() )
212 m_frame->GetToolManager()->ResetTools( TOOL_BASE::REDRAW );
213}
214
215
217{
218 SCH_SCREEN* screen = aFrame->GetScreen();
219
220 wxCHECK( screen, /* void */ );
221
222 m_drawingSheet->SetPageNumber( TO_UTF8( screen->GetPageNumber() ) );
223 m_drawingSheet->SetSheetCount( screen->GetPageCount() );
224 m_drawingSheet->SetFileName( TO_UTF8( screen->GetFileName() ) );
225
226 // Use the sheet path's virtual page number rather than the screen's, because the screen's
227 // value can be stale after operations like save that temporarily overwrite all screen page
228 // numbers for serialization.
229 m_drawingSheet->SetIsFirstPage( aFrame->GetCurrentSheet().GetVirtualPageNumber() == 1 );
230 m_drawingSheet->SetSheetName( TO_UTF8( aFrame->GetScreenDesc() ) );
231 m_drawingSheet->SetSheetPath( TO_UTF8( aFrame->GetFullScreenDesc() ) );
232}
233
234
236{
237 if( !m_drawingSheet )
238 return;
239
240 if( m_frame && m_frame->IsType( FRAME_SCH ) )
241 {
242 SCH_EDIT_FRAME* editFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_frame );
243
244 if( !editFrame )
245 return;
246
249 }
250}
251
252
254{
255 Clear();
256
257 if( !aSymbol )
258 return;
259
260 // Draw the fields.
261 for( SCH_ITEM& item : aSymbol->GetDrawItems() )
262 {
263 if( item.Type() == SCH_FIELD_T )
264 Add( &item );
265 }
266
267 LIB_SYMBOL* drawnSymbol = aSymbol;
268
269 // Draw the parent items if the symbol is inherited from another symbol.
270 if( aSymbol->IsDerived() )
271 {
272 if( std::shared_ptr< LIB_SYMBOL > parent = aSymbol->GetRootSymbol() )
273 drawnSymbol = parent.get();
274 else
275 {
276 wxCHECK( false, /* void */ );
277 }
278 }
279
280 for( SCH_ITEM& item : drawnSymbol->GetDrawItems() )
281 {
282 // Fields already drawn above. (Besides, we don't want to show parent symbol fields as
283 // users may be confused by shown fields that can not be edited.)
284 if( item.Type() == SCH_FIELD_T )
285 continue;
286
287 Add( &item );
288 }
289
290 InitPreview();
291}
292
293
295{
296 for( VIEW_ITEM* item : *m_allItems )
297 {
298 if( !item )
299 continue;
300
301 Hide( item, false );
302 }
303}
304
305
307{
308 // SetVisible( m_drawingSheet.get(), false );
309}
310
311
312}; // namespace KIGFX
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:123
int GetPageCount() const
Definition base_screen.h:68
int GetVirtualPageNumber() const
Definition base_screen.h:71
const wxString & GetPageNumber() const
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:96
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:108
EDA_ITEM * GetParent() const
Definition eda_item.h:110
std::unique_ptr< DS_PROXY_VIEW_ITEM > m_drawingSheet
Definition sch_view.h:139
void syncDrawingSheetToCurrentSheet(SCH_EDIT_FRAME *aFrame)
Set the drawing-sheet proxy's page number, count and title-block fields from the frame's current shee...
Definition sch_view.cpp:216
void Update(const KIGFX::VIEW_ITEM *aItem, int aUpdateFlags) const override
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
Definition sch_view.cpp:73
SCH_VIEW(SCH_BASE_FRAME *aFrame)
Definition sch_view.cpp:46
std::size_t m_textVarListenerHandle
Reactive invalidation listener state.
Definition sch_view.h:152
void DisplaySymbol(LIB_SYMBOL *aSymbol)
Definition sch_view.cpp:253
void DisplaySheet(const SCH_SCREEN *aScreen)
Definition sch_view.cpp:125
void SetScale(double aScale, VECTOR2D aAnchor={ 0, 0 }) override
Set the scaling factor, zooming around a given anchor point.
Definition sch_view.cpp:115
void HideDrawingSheet()
Definition sch_view.cpp:306
void RefreshDrawingSheetPageInfo()
Update the drawing sheet proxy's page number and first-page flag from the current edit frame state.
Definition sch_view.cpp:235
void DetachTextVarTracker()
Drop every cached reference into the currently-attached SCHEMATIC's TEXT_VAR_TRACKER: unregister the ...
Definition sch_view.cpp:59
SCH_BASE_FRAME * m_frame
Definition sch_view.h:136
TEXT_VAR_TRACKER * m_textVarListenerTracker
Definition sch_view.h:153
void ClearHiddenFlags()
Clear the hide flag of all items in the view.
Definition sch_view.cpp:294
An abstract base class for deriving all objects that can be added to a VIEW.
Definition view_item.h:82
bool IsSCH_ITEM() const
Definition view_item.h:97
virtual void SetScale(double aScale, VECTOR2D aAnchor={ 0, 0 })
Set the scaling factor, zooming around a given anchor point.
Definition view.cpp:637
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
Definition view.cpp:300
std::shared_ptr< std::vector< VIEW_ITEM * > > m_allItems
Flat list of all items.
Definition view.h:896
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
Definition view.cpp:1835
void Clear()
Remove all items from the view.
Definition view.cpp:1218
void InitPreview()
Definition view.cpp:1873
std::unique_ptr< KIGFX::VIEW_GROUP > m_preview
Definition view.h:883
void Hide(VIEW_ITEM *aItem, bool aHide=true, bool aHideOverlay=false)
Temporarily hide the item in the view (e.g.
Definition view.cpp:1780
friend class VIEW_ITEM
Definition view.h:65
Define a library symbol object.
Definition lib_symbol.h:80
bool IsDerived() const
Definition lib_symbol.h:197
LIB_ITEMS_CONTAINER & GetDrawItems()
Return a reference to the draw item list.
Definition lib_symbol.h:759
std::shared_ptr< LIB_SYMBOL > GetRootSymbol() const
Get the parent symbol that does not have another parent.
Bridges SCHEMATIC's listener stream into the generic TEXT_VAR_TRACKER.
wxString GetVariantDescription(const wxString &aVariantName) const
Return the description for a variant.
class SCHEMATIC_TEXT_VAR_ADAPTER * GetTextVarAdapter() const
Definition schematic.h:644
PROJECT & Project() const
Return a reference to the project this schematic is part of.
Definition schematic.h:105
wxString GetCurrentVariant() const
Return the current variant being edited.
const std::map< wxString, wxString > * GetProperties()
Definition schematic.h:108
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
Schematic editor (Eeschema) main window.
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
SCH_SHEET_PATH & GetCurrentSheet() const
wxString GetFullScreenDesc() const override
wxString GetScreenDesc() const override
Return a human-readable description of the current screen.
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:162
virtual void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode)
Definition sch_item.h:628
const PAGE_INFO & GetPageSettings() const
Definition sch_screen.h:137
EE_RTREE & Items()
Get the full RTree, usually for iterating.
Definition sch_screen.h:115
const wxString & GetFileName() const
Definition sch_screen.h:150
SCHEMATIC * Schematic() const
TITLE_BLOCK & GetTitleBlock()
Definition sch_screen.h:161
SCH_SCREEN * LastScreen()
int GetVirtualPageNumber() const
Coordinates the dependency index with change notifications.
ListenerHandle AddInvalidateListener(InvalidateCallback aCallback)
Register a listener that fires for every invalidation.
static constexpr ListenerHandle INVALID_LISTENER
@ REDRAW
Full drawing refresh.
Definition tool_base.h:79
@ RECURSE
Definition eda_item.h:49
@ FRAME_SCH
Definition frame_type.h:30
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition layer_ids.h:494
@ LAYER_SCHEMATIC_PAGE_LIMITS
Definition layer_ids.h:495
The Cairo implementation of the graphics abstraction layer.
Definition eda_group.h:29
@ REPAINT
Item needs to be redrawn.
Definition view_item.h:54
@ ALL
All except INITIAL_ADD.
Definition view_item.h:55
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
Identifies a single resolvable source that a text item's ${...} reference depends on.
@ SCH_TABLECELL_T
Definition typeinfo.h:163
@ SCH_FIELD_T
Definition typeinfo.h:147
VECTOR2< double > VECTOR2D
Definition vector2d.h:682
WX_VIEW_CONTROLS class definition.