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 m_drawingSheet->SetIsFirstPage( aScreen->GetVirtualPageNumber() == 1 );
140
141 wxString currentVariant = aScreen->Schematic()->GetCurrentVariant();
142 wxString variantDesc = aScreen->Schematic()->GetVariantDescription( currentVariant );
143 m_drawingSheet->SetVariantName( TO_UTF8( currentVariant ) );
144 m_drawingSheet->SetVariantDesc( TO_UTF8( variantDesc ) );
145
146 if( m_frame && m_frame->IsType( FRAME_SCH ) )
147 {
148 SCH_EDIT_FRAME* editFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_frame );
149
150 wxCHECK( editFrame, /* void */ );
151
152 m_drawingSheet->SetSheetName( TO_UTF8( editFrame->GetScreenDesc() ) );
153 m_drawingSheet->SetSheetPath( TO_UTF8( editFrame->GetFullScreenDesc() ) );
154 }
155 else
156 {
157 m_drawingSheet->SetSheetName( "" );
158 m_drawingSheet->SetSheetPath( "" );
159 }
160
161 Add( m_drawingSheet.get() );
162
163 // Reactive title-block repaint: register this proxy with the schematic's
164 // text-var tracker. The listener that routes invalidations to VIEW::Update
165 // is installed lazily here too; it outlives individual proxy instances
166 // since it re-reads the current drawing sheet on every fire.
167 if( aScreen->Schematic() )
168 {
169 if( SCHEMATIC_TEXT_VAR_ADAPTER* adapter = aScreen->Schematic()->GetTextVarAdapter() )
170 {
171 m_drawingSheet->AttachToTracker( &adapter->Tracker() );
172
173 TEXT_VAR_TRACKER* tracker = &adapter->Tracker();
174
175 if( m_textVarListenerTracker != tracker
177 {
178 m_textVarListenerTracker->RemoveInvalidateListener( m_textVarListenerHandle );
180 m_textVarListenerTracker = nullptr;
181 }
182
184 {
185 m_textVarListenerTracker = tracker;
187 [this]( EDA_ITEM* aDep, const TEXT_VAR_REF_KEY& )
188 {
189 if( !aDep )
190 return;
191
192 if( m_drawingSheet && aDep == m_drawingSheet.get() )
193 {
195 return;
196 }
197
198 if( aDep->IsSCH_ITEM() )
199 Update( aDep, KIGFX::REPAINT );
200 } );
201 }
202 }
203 }
204
205 InitPreview();
206
207 // Allow tools to add anything they require to the view (such as the selection VIEW_GROUP)
208 if( m_frame && m_frame->GetToolManager() )
209 m_frame->GetToolManager()->ResetTools( TOOL_BASE::REDRAW );
210}
211
212
214{
215 Clear();
216
217 if( !aSymbol )
218 return;
219
220 // Draw the fields.
221 for( SCH_ITEM& item : aSymbol->GetDrawItems() )
222 {
223 if( item.Type() == SCH_FIELD_T )
224 Add( &item );
225 }
226
227 LIB_SYMBOL* drawnSymbol = aSymbol;
228
229 // Draw the parent items if the symbol is inherited from another symbol.
230 if( aSymbol->IsDerived() )
231 {
232 if( std::shared_ptr< LIB_SYMBOL > parent = aSymbol->GetRootSymbol() )
233 drawnSymbol = parent.get();
234 else
235 {
236 wxCHECK( false, /* void */ );
237 }
238 }
239
240 for( SCH_ITEM& item : drawnSymbol->GetDrawItems() )
241 {
242 // Fields already drawn above. (Besides, we don't want to show parent symbol fields as
243 // users may be confused by shown fields that can not be edited.)
244 if( item.Type() == SCH_FIELD_T )
245 continue;
246
247 Add( &item );
248 }
249
250 InitPreview();
251}
252
253
255{
256 for( VIEW_ITEM* item : *m_allItems )
257 {
258 if( !item )
259 continue;
260
261 Hide( item, false );
262 }
263}
264
265
267{
268 // SetVisible( m_drawingSheet.get(), false );
269}
270
271
272}; // 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:131
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:137
void DisplaySymbol(LIB_SYMBOL *aSymbol)
Definition sch_view.cpp:213
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:266
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:128
TEXT_VAR_TRACKER * m_textVarListenerTracker
Definition sch_view.h:138
void ClearHiddenFlags()
Clear the hide flag of all items in the view.
Definition sch_view.cpp:254
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:79
bool IsDerived() const
Definition lib_symbol.h:196
LIB_ITEMS_CONTAINER & GetDrawItems()
Return a reference to the draw item list.
Definition lib_symbol.h:709
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.
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
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.