KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sch_commit.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
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#include <macros.h>
25#include <tool/tool_manager.h>
26#include <tools/sch_tool_base.h>
27
28#include <lib_symbol.h>
29
30#include <sch_screen.h>
31#include <schematic.h>
32
33#include <view/view.h>
34#include <sch_commit.h>
35#include <connection_graph.h>
36
37#include <functional>
38#include <wx/log.h>
39
40
42 m_toolMgr( aToolMgr ),
43 m_isLibEditor( false )
44{
45 SCH_BASE_FRAME* frame = static_cast<SCH_BASE_FRAME*>( m_toolMgr->GetToolHolder() );
46 m_isLibEditor = frame && frame->IsType( FRAME_SCH_SYMBOL_EDITOR );
47}
48
49
51{
52 m_toolMgr = aTool->GetManager();
54}
55
56
58{
59 m_toolMgr = aFrame->GetToolManager();
61}
62
63
65{
66}
67
68
69COMMIT& SCH_COMMIT::Stage( EDA_ITEM *aItem, CHANGE_TYPE aChangeType, BASE_SCREEN *aScreen )
70{
71 wxCHECK( aItem, *this );
72
73 // If aItem belongs a symbol, sheet or label, the full parent will be saved because undo/redo
74 // does not handle "sub items" modifications.
75 if( aItem->Type() != SCH_SHEET_T
76 && aItem->GetParent() && aItem->GetParent()->IsType( { SCH_SYMBOL_T, LIB_SYMBOL_T,
77 SCH_SHEET_T,
78 SCH_LABEL_LOCATE_ANY_T } ) )
79 {
80 aItem = aItem->GetParent();
81 aChangeType = CHT_MODIFY;
82 }
83
84 // IS_SELECTED flag should not be set on undo items which were added for
85 // a drag operation.
86 if( aItem->IsSelected() && aItem->HasFlag( SELECTED_BY_DRAG ) )
87 {
88 aItem->ClearSelected();
89 COMMIT::Stage( aItem, aChangeType, aScreen );
90 aItem->SetSelected();
91 }
92 else
93 {
94 COMMIT::Stage( aItem, aChangeType, aScreen );
95 }
96
97 return *this;
98}
99
100
101COMMIT& SCH_COMMIT::Stage( std::vector<EDA_ITEM*> &container, CHANGE_TYPE aChangeType,
102 BASE_SCREEN *aScreen )
103{
104 for( EDA_ITEM* item : container )
105 Stage( item, aChangeType, aScreen );
106
107 return *this;
108}
109
110
112 BASE_SCREEN *aScreen )
113{
114 return COMMIT::Stage( aItems, aModFlag, aScreen );
115}
116
117
118void SCH_COMMIT::pushLibEdit( const wxString& aMessage, int aCommitFlags )
119{
120 KIGFX::VIEW* view = m_toolMgr->GetView();
121 SYMBOL_EDIT_FRAME* frame = static_cast<SYMBOL_EDIT_FRAME*>( m_toolMgr->GetToolHolder() );
122
123 if( Empty() )
124 return;
125
126 // Symbol editor just saves copies of the whole symbol, so grab the first and discard the rest
127 LIB_SYMBOL* symbol = dynamic_cast<LIB_SYMBOL*>( m_changes.front().m_item );
128 LIB_SYMBOL* copy = dynamic_cast<LIB_SYMBOL*>( m_changes.front().m_copy );
129
130 if( symbol )
131 {
132 if( view )
133 {
134 view->Update( symbol );
135
136 symbol->RunOnChildren(
137 [&]( SCH_ITEM* aChild )
138 {
139 view->Update( aChild );
140 },
141 RECURSE_MODE::NO_RECURSE );
142 }
143
144 if( !( aCommitFlags & SKIP_UNDO ) )
145 {
146 if( frame && copy )
147 {
148 frame->PushSymbolToUndoList( aMessage, copy );
149 copy = nullptr; // we've transferred ownership to the undo stack
150 }
151 }
152
153 if( copy )
154 {
155 // if no undo entry was needed, the copy would create a memory leak
156 delete copy;
157 copy = nullptr;
158 }
159 }
160
163
164 if( !( aCommitFlags & SKIP_SET_DIRTY ) )
165 {
166 if( frame )
167 frame->OnModify();
168 }
169
170 for( size_t ii = 1; ii < m_changes.size(); ++ii )
171 delete m_changes[ii].m_copy;
172
173 clear();
174}
175
176
177void SCH_COMMIT::pushSchEdit( const wxString& aMessage, int aCommitFlags )
178{
179 // Objects potentially interested in changes:
180 PICKED_ITEMS_LIST undoList;
181 KIGFX::VIEW* view = m_toolMgr->GetView();
182
183 SCH_EDIT_FRAME* frame = static_cast<SCH_EDIT_FRAME*>( m_toolMgr->GetToolHolder() );
185 bool itemsDeselected = false;
186 bool selectedModified = false;
187 bool dirtyConnectivity = false;
188 bool refreshHierarchy = false;
189 SCH_CLEANUP_FLAGS connectivityCleanUp = NO_CLEANUP;
190
191 if( Empty() )
192 return;
193
194 undoList.SetDescription( aMessage );
195
196 SCHEMATIC* schematic = nullptr;
197 std::vector<SCH_ITEM*> bulkAddedItems;
198 std::vector<SCH_ITEM*> bulkRemovedItems;
199 std::vector<SCH_ITEM*> itemsChanged;
200
201 for( COMMIT_LINE& ent : m_changes )
202 {
203 int changeType = ent.m_type & CHT_TYPE;
204 int changeFlags = ent.m_type & CHT_FLAGS;
205 SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( ent.m_item );
206 SCH_SCREEN* screen = dynamic_cast<SCH_SCREEN*>( ent.m_screen );
207
208 wxCHECK2( schItem && screen, continue );
209
210 if( !schematic )
211 schematic = schItem->Schematic();
212
213 if( schItem->IsSelected() )
214 {
215 selectedModified = true;
216 }
217 else
218 {
219 schItem->RunOnChildren(
220 [&selectedModified]( SCH_ITEM* aChild )
221 {
222 if( aChild->IsSelected() )
223 selectedModified = true;
224 },
225 RECURSE_MODE::NO_RECURSE );
226 }
227
228 auto updateConnectivityFlag = [&]()
229 {
230 if( schItem->IsConnectable() || ( schItem->Type() == SCH_RULE_AREA_T ) )
231 {
232 dirtyConnectivity = true;
233
234 // Do a local clean up if there are any connectable objects in the commit.
235 if( connectivityCleanUp == NO_CLEANUP )
236 connectivityCleanUp = LOCAL_CLEANUP;
237
238 // Do a full rebuild of the connectivity if there is a sheet in the commit.
239 if( schItem->Type() == SCH_SHEET_T )
240 connectivityCleanUp = GLOBAL_CLEANUP;
241 }
242 };
243
244 switch( changeType )
245 {
246 case CHT_ADD:
247 {
248 updateConnectivityFlag();
249
250 if( !( aCommitFlags & SKIP_UNDO ) )
251 undoList.PushItem( ITEM_PICKER( screen, schItem, UNDO_REDO::NEWITEM ) );
252
253 if( !( changeFlags & CHT_DONE ) )
254 {
255 if( !screen->CheckIfOnDrawList( schItem ) ) // don't want a loop!
256 screen->Append( schItem );
257
258 if( view )
259 view->Add( schItem );
260 }
261
262 if( frame )
263 frame->UpdateItem( schItem, true, true );
264
265 bulkAddedItems.push_back( schItem );
266
267 if( schItem->Type() == SCH_SHEET_T )
268 refreshHierarchy = true;
269
270 break;
271 }
272
273 case CHT_REMOVE:
274 {
275 updateConnectivityFlag();
276
277 if( !( aCommitFlags & SKIP_UNDO ) )
278 undoList.PushItem( ITEM_PICKER( screen, schItem, UNDO_REDO::DELETED ) );
279
280 if( schItem->IsSelected() )
281 {
282 if( selTool )
283 selTool->RemoveItemFromSel( schItem, true /* quiet mode */ );
284
285 itemsDeselected = true;
286 }
287
288 if( schItem->Type() == SCH_FIELD_T )
289 {
290 static_cast<SCH_FIELD*>( schItem )->SetVisible( false );
291 break;
292 }
293
294 if( !( changeFlags & CHT_DONE ) )
295 {
296 screen->Remove( schItem );
297
298 if( view )
299 view->Remove( schItem );
300 }
301
302 if( frame )
303 frame->UpdateItem( schItem, true, true );
304
305 bulkRemovedItems.push_back( schItem );
306
307 if( schItem->Type() == SCH_SHEET_T )
308 refreshHierarchy = true;
309
310 break;
311 }
312
313 case CHT_MODIFY:
314 {
315 if( !( aCommitFlags & SKIP_UNDO ) )
316 {
317 ITEM_PICKER itemWrapper( screen, schItem, UNDO_REDO::CHANGED );
318 wxASSERT( ent.m_copy );
319 itemWrapper.SetLink( ent.m_copy );
320
321 const SCH_ITEM* itemCopy = static_cast<const SCH_ITEM*>( ent.m_copy );
322
323 wxCHECK2( itemCopy, continue );
324
325 SCH_SHEET_PATH currentSheet;
326
327 if( frame )
328 currentSheet = frame->GetCurrentSheet();
329
330 if( itemCopy->HasConnectivityChanges( schItem, &currentSheet )
331 || ( itemCopy->Type() == SCH_RULE_AREA_T ) )
332 {
333 updateConnectivityFlag();
334 }
335
336
337 if( schItem->Type() == SCH_SHEET_T )
338 {
339 const SCH_SHEET* modifiedSheet = static_cast<const SCH_SHEET*>( schItem );
340 const SCH_SHEET* originalSheet = static_cast<const SCH_SHEET*>( itemCopy );
341 wxCHECK2( modifiedSheet && originalSheet, continue );
342
343 if( originalSheet->HasPageNumberChanges( *modifiedSheet ) )
344 refreshHierarchy = true;
345 }
346
347 undoList.PushItem( itemWrapper );
348 ent.m_copy = nullptr; // We've transferred ownership to the undo list
349 }
350
351 if( frame )
352 frame->UpdateItem( schItem, false, true );
353
354 itemsChanged.push_back( schItem );
355
356 if( ent.m_copy )
357 {
358 // if no undo entry is needed, the copy would create a memory leak
359 delete ent.m_copy;
360 ent.m_copy = nullptr;
361 }
362
363 break;
364 }
365
366 default:
367 wxASSERT( false );
368 break;
369 }
370
371 // Clear all flags but SELECTED and others used to move and rotate commands,
372 // after edition (selected items must keep their selection flag).
373 const int selected_mask = ( SELECTED | STARTPOINT | ENDPOINT );
374 schItem->ClearFlags( EDA_ITEM_ALL_FLAGS - selected_mask );
375 }
376
377 if( schematic )
378 {
379 if( bulkAddedItems.size() > 0 )
380 schematic->OnItemsAdded( bulkAddedItems );
381
382 if( bulkRemovedItems.size() > 0 )
383 schematic->OnItemsRemoved( bulkRemovedItems );
384
385 if( itemsChanged.size() > 0 )
386 schematic->OnItemsChanged( itemsChanged );
387
388 if( refreshHierarchy )
389 {
390 schematic->RefreshHierarchy();
391
392 if( frame )
394 }
395 }
396
397 if( !( aCommitFlags & SKIP_UNDO ) )
398 {
399 if( frame )
400 {
401 frame->SaveCopyInUndoList( undoList, UNDO_REDO::UNSPECIFIED, false, dirtyConnectivity );
402
403 if( dirtyConnectivity )
404 {
405 wxLogTrace( wxS( "CONN_PROFILE" ),
406 wxS( "SCH_COMMIT::pushSchEdit() %s clean up connectivity rebuild." ),
407 ( connectivityCleanUp == LOCAL_CLEANUP ) ? wxS( "local" )
408 : wxS( "global" ) );
409 frame->RecalculateConnections( this, connectivityCleanUp );
410 }
411 }
412 }
413
415
416 if( itemsDeselected )
418
419 if( selectedModified )
421
422 if( frame && frame->GetCanvas() )
423 frame->GetCanvas()->Refresh();
424
425 if( !( aCommitFlags & SKIP_SET_DIRTY ) )
426 {
427 if( frame )
428 frame->OnModify();
429 }
430
431 clear();
432}
433
434
435void SCH_COMMIT::Push( const wxString& aMessage, int aCommitFlags )
436{
437 if( m_isLibEditor )
438 pushLibEdit( aMessage, aCommitFlags );
439 else
440 pushSchEdit( aMessage, aCommitFlags );
441}
442
443
445{
446 EDA_ITEM* parent = aItem->GetParent();
447
448 if( parent && ( parent->Type() == SCH_SYMBOL_T || parent->Type() == LIB_SYMBOL_T ) )
449 return parent;
450
451 if( m_isLibEditor )
452 return static_cast<SYMBOL_EDIT_FRAME*>( m_toolMgr->GetToolHolder() )->GetCurSymbol();
453
454 return aItem;
455}
456
457
459{
460 if( m_isLibEditor )
461 {
462 SYMBOL_EDIT_FRAME* frame = static_cast<SYMBOL_EDIT_FRAME*>( m_toolMgr->GetToolHolder() );
463 LIB_SYMBOL* symbol = frame->GetCurSymbol();
464 std::vector<KIID> selected;
465
466 for( const SCH_ITEM& item : symbol->GetDrawItems() )
467 {
468 if( item.IsSelected() )
469 selected.push_back( item.m_Uuid );
470 }
471
472 symbol = new LIB_SYMBOL( *symbol );
473
474 for( SCH_ITEM& item : symbol->GetDrawItems() )
475 {
476 if( alg::contains( selected, item.m_Uuid ) )
477 item.SetSelected();
478 }
479
480 return symbol;
481 }
482
483 return aItem->Clone();
484}
485
486
488{
489 if( Empty() )
490 return;
491
492 // Symbol editor just saves copies of the whole symbol, so grab the first and discard the rest
493 SYMBOL_EDIT_FRAME* frame = dynamic_cast<SYMBOL_EDIT_FRAME*>( m_toolMgr->GetToolHolder() );
494 LIB_SYMBOL* copy = dynamic_cast<LIB_SYMBOL*>( m_changes.front().m_copy );
496
497 if( frame && copy )
498 {
499 frame->SetCurSymbol( copy, false );
501 }
502
503 for( size_t ii = 1; ii < m_changes.size(); ++ii )
504 delete m_changes[ii].m_copy;
505
506 if( selTool )
507 selTool->RebuildSelection();
508
509 clear();
510}
511
512
514{
515 KIGFX::VIEW* view = m_toolMgr->GetView();
516 SCH_EDIT_FRAME* frame = dynamic_cast<SCH_EDIT_FRAME*>( m_toolMgr->GetToolHolder() );
518 SCH_SHEET_LIST sheets;
519
520 if( m_changes.empty() )
521 return;
522
523 if( m_isLibEditor )
524 {
526 return;
527 }
528
529 SCHEMATIC* schematic = nullptr;
530 std::vector<SCH_ITEM*> bulkAddedItems;
531 std::vector<SCH_ITEM*> bulkRemovedItems;
532 std::vector<SCH_ITEM*> itemsChanged;
533
534 for( COMMIT_LINE& ent : m_changes )
535 {
536 int changeType = ent.m_type & CHT_TYPE;
537 int changeFlags = ent.m_type & CHT_FLAGS;
538 SCH_ITEM* item = dynamic_cast<SCH_ITEM*>( ent.m_item );
539 SCH_ITEM* copy = dynamic_cast<SCH_ITEM*>( ent.m_copy );
540 SCH_SCREEN* screen = dynamic_cast<SCH_SCREEN*>( ent.m_screen );
541
542 wxCHECK2( item && screen, continue );
543
544 if( !schematic )
545 schematic = item->Schematic();
546
547 switch( changeType )
548 {
549 case CHT_ADD:
550 if( !( changeFlags & CHT_DONE ) )
551 break;
552
553 if( view )
554 view->Remove( item );
555
556 screen->Remove( item );
557 bulkRemovedItems.push_back( item );
558 break;
559
560 case CHT_REMOVE:
561 item->SetConnectivityDirty();
562
563 if( !( changeFlags & CHT_DONE ) )
564 break;
565
566 if( view )
567 view->Add( item );
568
569 screen->Append( item );
570 bulkAddedItems.push_back( item );
571 break;
572
573 case CHT_MODIFY:
574 {
575 if( view )
576 view->Remove( item );
577
578 bool unselect = !item->IsSelected();
579
580 item->SwapItemData( copy );
581
582 if( unselect )
583 {
584 item->ClearSelected();
585 item->RunOnChildren( []( SCH_ITEM* aChild ) { aChild->ClearSelected(); }, RECURSE_MODE::NO_RECURSE );
586 }
587
588 // Special cases for items which have instance data
589 if( item->GetParent() && item->GetParent()->Type() == SCH_SYMBOL_T
590 && item->Type() == SCH_FIELD_T )
591 {
592 SCH_FIELD* field = static_cast<SCH_FIELD*>( item );
593 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item->GetParent() );
594
595 if( field->GetId() == FIELD_T::REFERENCE )
596 {
597 // Lazy eval of sheet list; this is expensive even when unsorted
598 if( sheets.empty() )
599 sheets = schematic->Hierarchy();
600
601 SCH_SHEET_PATH sheet = sheets.FindSheetForScreen( screen );
602 symbol->SetRef( &sheet, field->GetText() );
603 }
604 }
605
606 // This must be called before any calls that require stable object pointers.
607 screen->Update( item );
608
609 // This hack is to prevent incorrectly parented symbol pins from breaking the
610 // connectivity algorithm.
611 if( item->Type() == SCH_SYMBOL_T )
612 {
613 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
614 symbol->UpdatePins();
615
616 CONNECTION_GRAPH* graph = schematic->ConnectionGraph();
617
618 SCH_SYMBOL* symbolCopy = static_cast<SCH_SYMBOL*>( copy );
619 graph->RemoveItem( symbolCopy );
620
621 for( SCH_PIN* pin : symbolCopy->GetPins() )
622 graph->RemoveItem( pin );
623 }
624
625 item->SetConnectivityDirty();
626
627 if( view )
628 view->Add( item );
629
630 delete copy;
631 break;
632 }
633
634 default:
635 wxASSERT( false );
636 break;
637 }
638 }
639
640 if( schematic )
641 {
642 if( bulkAddedItems.size() > 0 )
643 schematic->OnItemsAdded( bulkAddedItems );
644
645 if( bulkRemovedItems.size() > 0 )
646 schematic->OnItemsRemoved( bulkRemovedItems );
647
648 if( itemsChanged.size() > 0 )
649 schematic->OnItemsChanged( itemsChanged );
650 }
651
652 if( selTool )
653 selTool->RebuildSelection();
654
655 if( frame )
656 {
657 frame->RecalculateConnections( nullptr, NO_CLEANUP );
658 }
659
660 clear();
661}
662
Handles how to draw a screen (a board, a schematic ...)
Definition: base_screen.h:41
Represent a set of changes (additions, deletions or modifications) of a data model (e....
Definition: commit.h:74
virtual COMMIT & Stage(EDA_ITEM *aItem, CHANGE_TYPE aChangeType, BASE_SCREEN *aScreen=nullptr)
Add a change of the item aItem of type aChangeType to the change list.
Definition: commit.cpp:48
bool Empty() const
Definition: commit.h:150
void clear()
Should be called in Push() & Revert() methods.
Definition: commit.h:171
std::vector< COMMIT_LINE > m_changes
Definition: commit.h:201
Calculate the connectivity of a schematic and generates netlists.
void RemoveItem(SCH_ITEM *aItem)
bool IsType(FRAME_T aType) const
The base class for create windows for drawing purpose.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
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
void ClearSelected()
Definition: eda_item.h:130
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
Definition: eda_item.h:137
bool IsSelected() const
Definition: eda_item.h:120
void SetSelected()
Definition: eda_item.h:127
virtual bool IsType(const std::vector< KICAD_T > &aScanTypes) const
Check whether the item is one of the listed types.
Definition: eda_item.h:184
EDA_ITEM * GetParent() const
Definition: eda_item.h:110
virtual EDA_ITEM * Clone() const
Create a duplicate of this item with linked list members set to NULL.
Definition: eda_item.cpp:92
bool HasFlag(EDA_ITEM_FLAGS aFlag) const
Definition: eda_item.h:139
virtual const wxString & GetText() const
Return the string associated with the text object.
Definition: eda_text.h:98
static const TOOL_EVENT SelectedItemsModified
Selected items were moved, this can be very high frequency on the canvas, use with care.
Definition: actions.h:343
static const TOOL_EVENT UnselectedEvent
Definition: actions.h:337
void SetLink(EDA_ITEM *aItem)
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:67
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
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:1673
Define a library symbol object.
Definition: lib_symbol.h:85
LIB_ITEMS_CONTAINER & GetDrawItems()
Return a reference to the draw item list.
Definition: lib_symbol.h:519
void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode) override
A holder to handle information on schematic or board items.
void PushItem(const ITEM_PICKER &aItem)
Push aItem to the top of the list.
void SetDescription(const wxString &aDescription)
Holds all the data relating to one schematic.
Definition: schematic.h:69
void OnItemsAdded(std::vector< SCH_ITEM * > &aNewItems)
Must be used if Add() is used using a BULK_x ADD_MODE to generate a change event for listeners.
Definition: schematic.cpp:779
void OnItemsRemoved(std::vector< SCH_ITEM * > &aRemovedItems)
Must be used if Remove() is used using a BULK_x REMOVE_MODE to generate a change event for listeners.
Definition: schematic.cpp:785
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
Definition: schematic.cpp:208
CONNECTION_GRAPH * ConnectionGraph() const
Definition: schematic.h:158
void RefreshHierarchy()
Definition: schematic.cpp:216
void OnItemsChanged(std::vector< SCH_ITEM * > &aItems)
Notify the schematic and its listeners that an item on the schematic has been modified in some way.
Definition: schematic.cpp:791
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
bool m_isLibEditor
Definition: sch_commit.h:77
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Execute the changes.
Definition: sch_commit.cpp:435
COMMIT & Stage(EDA_ITEM *aItem, CHANGE_TYPE aChangeType, BASE_SCREEN *aScreen=nullptr) override
Add a change of the item aItem of type aChangeType to the change list.
Definition: sch_commit.cpp:69
virtual void Revert() override
Revert the commit by restoring the modified items state.
Definition: sch_commit.cpp:513
TOOL_MANAGER * m_toolMgr
Definition: sch_commit.h:76
SCH_COMMIT(TOOL_MANAGER *aToolMgr)
Definition: sch_commit.cpp:41
virtual ~SCH_COMMIT()
Definition: sch_commit.cpp:64
void pushLibEdit(const wxString &aMessage, int aCommitFlags)
Definition: sch_commit.cpp:118
void revertLibEdit()
Definition: sch_commit.cpp:487
EDA_ITEM * makeImage(EDA_ITEM *aItem) const override
Definition: sch_commit.cpp:458
EDA_ITEM * parentObject(EDA_ITEM *aItem) const override
Definition: sch_commit.cpp:444
void pushSchEdit(const wxString &aMessage, int aCommitFlags)
Definition: sch_commit.cpp:177
Schematic editor (Eeschema) main window.
void OnModify() override
Must be called after a schematic change in order to set the "modify" flag and update other data struc...
void SaveCopyInUndoList(SCH_SCREEN *aScreen, SCH_ITEM *aItemToCopy, UNDO_REDO aTypeCommand, bool aAppend, bool aDirtyConnectivity=true)
Create a copy of the current schematic item, and put it in the undo list.
SCH_SHEET_PATH & GetCurrentSheet() const
void UpdateHierarchyNavigator(bool aRefreshNetNavigator=true, bool aClear=false)
Update the hierarchy navigation tree and history.
void RecalculateConnections(SCH_COMMIT *aCommit, SCH_CLEANUP_FLAGS aCleanupFlags)
Generate the connection data for the entire schematic hierarchy.
void UpdateItem(EDA_ITEM *aItem, bool isAddOrDelete=false, bool aUpdateRtree=false) override
Mark an item for refresh.
FIELD_T GetId() const
Definition: sch_field.h:124
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:167
virtual bool IsConnectable() const
Definition: sch_item.h:462
virtual void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode)
Definition: sch_item.h:566
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
Definition: sch_item.cpp:151
void SetConnectivityDirty(bool aDirty=true)
Definition: sch_item.h:525
virtual bool HasConnectivityChanges(const SCH_ITEM *aItem, const SCH_SHEET_PATH *aInstance=nullptr) const
Check if aItem has connectivity changes against this object.
Definition: sch_item.h:542
void SwapItemData(SCH_ITEM *aImage)
Swap data between aItem and aImage.
Definition: sch_item.cpp:353
void Append(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Definition: sch_screen.cpp:155
bool Remove(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Remove aItem from the schematic associated with this screen.
Definition: sch_screen.cpp:325
void Update(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Update aItem's bounding box in the tree.
Definition: sch_screen.cpp:318
bool CheckIfOnDrawList(const SCH_ITEM *aItem) const
Definition: sch_screen.cpp:388
void RebuildSelection()
Rebuild the selection from the EDA_ITEMs' selection flags.
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition: sch_sheet.h:47
bool HasPageNumberChanges(const SCH_SHEET &aOther) const
Check if the instance data of this sheet has any changes compared to aOther.
Definition: sch_sheet.cpp:1477
Schematic symbol object.
Definition: sch_symbol.h:75
void UpdatePins()
Updates the cache of SCH_PIN objects for each pin.
Definition: sch_symbol.cpp:287
void SetRef(const SCH_SHEET_PATH *aSheet, const wxString &aReference)
Set the reference for the given sheet path for this symbol.
Definition: sch_symbol.cpp:653
std::vector< SCH_PIN * > GetPins(const SCH_SHEET_PATH *aSheet) const
Retrieve a list of the SCH_PINs for the given sheet path.
A foundation class for a tool operating on a schematic or symbol.
Definition: sch_tool_base.h:48
bool IsSymbolEditor() const
Returns true if the tool is running in the symbol editor.
Definition: sch_tool_base.h:99
int RemoveItemFromSel(const TOOL_EVENT &aEvent)
The symbol library editor main window.
void PushSymbolToUndoList(const wxString &aDescription, LIB_SYMBOL *aSymbolCopy, UNDO_REDO aUndoType=UNDO_REDO::LIBEDIT)
void SetCurSymbol(LIB_SYMBOL *aSymbol, bool aUpdateZoom)
Take ownership of aSymbol and notes that it is the one currently being edited.
LIB_SYMBOL * GetCurSymbol() const
Return the current symbol being edited or NULL if none selected.
void OnModify() override
Must be called after a schematic change in order to set the "modify" flag of the current symbol.
TOOL_MANAGER * GetToolManager() const
Return the MVC controller.
Definition: tools_holder.h:55
TOOL_MANAGER * GetManager() const
Return the instance of TOOL_MANAGER that takes care of the tool.
Definition: tool_base.h:146
@ MODEL_RELOAD
Model changes (the sheet for a schematic)
Definition: tool_base.h:80
Master controller class:
Definition: tool_manager.h:62
bool ProcessEvent(const TOOL_EVENT &aEvent)
Propagate an event to tools that requested events of matching type(s).
void PostEvent(const TOOL_EVENT &aEvent)
Put an event to the event queue to be processed at the end of event processing cycle.
TOOLS_HOLDER * GetToolHolder() const
Definition: tool_manager.h:406
void ResetTools(TOOL_BASE::RESET_REASON aReason)
Reset all tools (i.e.
KIGFX::VIEW * GetView() const
Definition: tool_manager.h:395
CHANGE_TYPE
Types of changes.
Definition: commit.h:41
@ CHT_MODIFY
Definition: commit.h:44
@ CHT_REMOVE
Definition: commit.h:43
@ CHT_DONE
Flag to indicate the change is already applied.
Definition: commit.h:49
@ CHT_TYPE
Definition: commit.h:47
@ CHT_ADD
Definition: commit.h:42
@ CHT_FLAGS
Definition: commit.h:50
#define SELECTED
Item was manually selected by the user.
#define SELECTED_BY_DRAG
Item was algorithmically selected as a dragged item.
#define EDA_ITEM_ALL_FLAGS
#define ENDPOINT
ends. (Used to support dragging.)
#define STARTPOINT
When a line is selected, these flags indicate which.
@ FRAME_SCH_SYMBOL_EDITOR
Definition: frame_type.h:35
This file contains miscellaneous commonly used macros and functions.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
Definition: kicad_algo.h:100
#define SKIP_SET_DIRTY
Definition: sch_commit.h:43
#define SKIP_UNDO
Definition: sch_commit.h:41
SCH_CLEANUP_FLAGS
@ LOCAL_CLEANUP
@ NO_CLEANUP
@ GLOBAL_CLEANUP
@ AS_GLOBAL
Global action (toolbar/main menu event, global shortcut)
Definition: tool_action.h:49
@ TA_MODEL_CHANGE
Model has changed (partial update).
Definition: tool_event.h:121
@ TC_MESSAGE
Definition: tool_event.h:58
@ LIB_SYMBOL_T
Definition: typeinfo.h:148
@ SCH_SYMBOL_T
Definition: typeinfo.h:172
@ SCH_FIELD_T
Definition: typeinfo.h:150
@ SCH_SHEET_T
Definition: typeinfo.h:175
@ SCH_RULE_AREA_T
Definition: typeinfo.h:170
UNDO_REDO
Undo Redo considerations: Basically we have 3 cases New item Deleted item Modified item there is also...