KiCad PCB EDA Suite
Loading...
Searching...
No Matches
undo_redo_container.h
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) 2009 [email protected]
5 * Copyright (C) 2011 Wayne Stambaugh <[email protected]>
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22#ifndef _CLASS_UNDOREDO_CONTAINER_H
23#define _CLASS_UNDOREDO_CONTAINER_H
24
25#include <core/typeinfo.h>
26#include <eda_item_flags.h>
27#include <functional>
28#include <kiid.h>
29#include <vector>
30#include <wx/string.h>
31
32class EDA_ITEM;
34class BASE_SCREEN;
35
36
48
49
55enum class UNDO_REDO {
56 UNSPECIFIED = 0, // illegal
57 CHANGED, // params of items have a value changed: undo is made by exchange
58 // values with a copy of these values
59 NEWITEM, // new item, undo by changing in deleted
60 DELETED, // deleted item, undo by changing in deleted
61 LIBEDIT, // Specific to the component editor (symbol_editor creates a full copy
62 // of the current component when changed)
63 LIB_RENAME, // As LIBEDIT, but old copy should be removed from library
64 DRILLORIGIN, // origin changed (like CHANGED, contains the origin and a copy)
65 GRIDORIGIN, // origin changed (like CHANGED, contains the origin and a copy)
66 PAGESETTINGS, // page settings or title block changes
67 REPEAT_ITEM // storage entry for the editor's global repeatItems list
68};
69
70
72{
73public:
75 ITEM_PICKER( BASE_SCREEN* aScreen, EDA_ITEM* aItem,
77
78 EDA_ITEM* GetItem() const { return m_pickedItem; }
79 void SetItem( EDA_ITEM* aItem );
80
81 void SetStatus( UNDO_REDO aStatus ) { m_undoRedoStatus = aStatus; }
83
84 void SetFlags( EDA_ITEM_FLAGS aFlags ) { m_pickerFlags = aFlags; }
86
87 void SetLink( EDA_ITEM* aItem );
88 EDA_ITEM* GetLink() const { return m_link; }
89
90 KIID GetGroupId() const { return m_groupId; }
91 std::vector<KIID> GetGroupMembers() const { return m_groupMembers; }
92
93 BASE_SCREEN* GetScreen() const { return m_screen; }
94
95private:
96 EDA_ITEM_FLAGS m_pickerFlags; /* A copy of m_flags member. Currently used only to flag
97 * transient items. */
98 UNDO_REDO m_undoRedoStatus; /* type of operation to undo/redo for this item */
99 EDA_ITEM* m_pickedItem; /* Pointer on the schematic or board item that is concerned
100 * (picked), or in undo redo commands, the copy of an
101 * edited item. */
102 KICAD_T m_pickedItemType; /* type of schematic or board item that is concerned */
103
104 EDA_ITEM* m_link; /* Pointer on another item. Used in undo redo command
105 * used when a duplicate exists i.e. when an item is
106 * modified, and the copy of initial item exists (the
107 * duplicate) m_Item points the duplicate (i.e the old
108 * copy of an active item) and m_Link points the active
109 * item in schematic */
110 KIID m_groupId; /* Id of the parent group */
111 std::vector<KIID> m_groupMembers; /* Ids of the members of a group */
112
113 BASE_SCREEN* m_screen; /* For new and deleted items the screen the item should
114 * be added to/removed from. */
115
116};
117
118
125{
126public:
129
135 void PushItem( const ITEM_PICKER& aItem );
136
141
145 bool ContainsItem( const EDA_ITEM* aItem ) const;
146
151 int FindItem( const EDA_ITEM* aItem ) const;
152
156 void ClearItemsList();
157
162 void ClearListAndDeleteItems( std::function<void(EDA_ITEM*)> aItemDeleter );
163
167 unsigned GetCount() const
168 {
169 return m_ItemsList.size();
170 }
171
180
186 const ITEM_PICKER& GetItemWrapper( unsigned int aIdx ) const;
187 ITEM_PICKER& GetItemWrapper( unsigned int aIdx );
188
193 EDA_ITEM* GetPickedItem( unsigned int aIdx ) const;
194
199 BASE_SCREEN* GetScreenForItem( unsigned int aIdx ) const;
200
205 EDA_ITEM* GetPickedItemLink( unsigned int aIdx ) const;
206
212 UNDO_REDO GetPickedItemStatus( unsigned int aIdx ) const;
213
220 EDA_ITEM_FLAGS GetPickerFlags( unsigned aIdx ) const;
221
227 bool SetPickedItem( EDA_ITEM* aItem, unsigned aIdx );
228
236 bool SetPickedItemLink( EDA_ITEM* aLink, unsigned aIdx );
237
245 bool SetPickedItemStatus( UNDO_REDO aStatus, unsigned aIdx );
246
254 bool SetPickerFlags( EDA_ITEM_FLAGS aFlags, unsigned aIdx );
255
262 bool RemovePicker( unsigned aIdx );
263
271 void CopyList( const PICKED_ITEMS_LIST& aSource );
272
273 wxString GetDescription() const { return m_description; }
274 void SetDescription( const wxString& aDescription ) { m_description = aDescription; }
275
276private:
278 std::vector<ITEM_PICKER> m_ItemsList;
279};
280
281
286{
287public:
290
291 // We own at least one list of raw pointers. Don't let the compiler fill in copy c'tors that
292 // will only land us in trouble.
295
296 void PushCommand( PICKED_ITEMS_LIST* aCommand );
297
299
300 void ClearCommandList();
301
302 std::vector <PICKED_ITEMS_LIST*> m_CommandsList; // the list of possible undo/redo commands
303};
304
305
306#endif // _CLASS_UNDOREDO_CONTAINER_H
Handles how to draw a screen (a board, a schematic ...)
Definition base_screen.h:37
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:96
std::vector< KIID > m_groupMembers
void SetItem(EDA_ITEM *aItem)
void SetLink(EDA_ITEM *aItem)
BASE_SCREEN * m_screen
EDA_ITEM * GetItem() const
void SetStatus(UNDO_REDO aStatus)
BASE_SCREEN * GetScreen() const
EDA_ITEM * GetLink() const
EDA_ITEM_FLAGS GetFlags() const
EDA_ITEM_FLAGS m_pickerFlags
EDA_ITEM * m_pickedItem
KIID GetGroupId() const
UNDO_REDO m_undoRedoStatus
UNDO_REDO GetStatus() const
void SetFlags(EDA_ITEM_FLAGS aFlags)
std::vector< KIID > GetGroupMembers() const
Definition kiid.h:44
A holder to handle information on schematic or board items.
bool SetPickedItemStatus(UNDO_REDO aStatus, unsigned aIdx)
Set the type of undo/redo operation for a given picked item.
EDA_ITEM_FLAGS GetPickerFlags(unsigned aIdx) const
Return the value of the picker flag.
void PushItem(const ITEM_PICKER &aItem)
Push aItem to the top of the list.
void SetDescription(const wxString &aDescription)
int FindItem(const EDA_ITEM *aItem) const
UNDO_REDO GetPickedItemStatus(unsigned int aIdx) const
EDA_ITEM * GetPickedItemLink(unsigned int aIdx) const
wxString GetDescription() const
std::vector< ITEM_PICKER > m_ItemsList
bool RemovePicker(unsigned aIdx)
Remove one entry (one picker) from the list of picked items.
const ITEM_PICKER & GetItemWrapper(unsigned int aIdx) const
bool ContainsItem(const EDA_ITEM *aItem) const
unsigned GetCount() const
bool SetPickedItem(EDA_ITEM *aItem, unsigned aIdx)
void CopyList(const PICKED_ITEMS_LIST &aSource)
Copy all data from aSource to the list.
void ReversePickersListOrder()
Reverse the order of pickers stored in this list.
void ClearItemsList()
Delete only the list of pickers NOT the picked data itself.
bool SetPickedItemLink(EDA_ITEM *aLink, unsigned aIdx)
Set the link associated to a given picked item.
void ClearListAndDeleteItems(std::function< void(EDA_ITEM *)> aItemDeleter)
Delete the list of pickers AND the data pointed by #m_PickedItem or #m_PickedItemLink according to th...
BASE_SCREEN * GetScreenForItem(unsigned int aIdx) const
EDA_ITEM * GetPickedItem(unsigned int aIdx) const
bool SetPickerFlags(EDA_ITEM_FLAGS aFlags, unsigned aIdx)
Set the flags of the picker (usually to the picked item m_flags value).
UNDO_REDO_CONTAINER(const UNDO_REDO_CONTAINER &)=delete
UNDO_REDO_CONTAINER & operator=(const UNDO_REDO_CONTAINER &)=delete
void PushCommand(PICKED_ITEMS_LIST *aCommand)
PICKED_ITEMS_LIST * PopCommand()
std::vector< PICKED_ITEMS_LIST * > m_CommandsList
std::uint32_t EDA_ITEM_FLAGS
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition typeinfo.h:71
UNDO_REDO
Undo Redo considerations: Basically we have 3 cases New item Deleted item Modified item there is also...