2011-10-19 20:32:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
2019-04-26 10:42:36 +00:00
|
|
|
* Copyright (C) 2004-2019 KiCad Developers, see change_log.txt for contributors.
|
2011-10-19 20:32:21 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2019-04-26 10:42:36 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <sch_bus_entry.h>
|
|
|
|
#include <sch_marker.h>
|
|
|
|
#include <sch_junction.h>
|
|
|
|
#include <sch_line.h>
|
|
|
|
#include <sch_no_connect.h>
|
|
|
|
#include <sch_component.h>
|
|
|
|
#include <sch_sheet.h>
|
|
|
|
#include <sch_bitmap.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_view.h>
|
2019-05-11 10:06:28 +00:00
|
|
|
#include <tools/ee_selection_tool.h>
|
2019-05-26 15:36:40 +00:00
|
|
|
#include <ws_proxy_undo_item.h>
|
|
|
|
#include <tool/actions.h>
|
2009-07-26 17:16:42 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/* Functions to undo and redo edit commands.
|
2009-12-02 21:44:03 +00:00
|
|
|
* commands to undo are stored in CurrentScreen->m_UndoList
|
|
|
|
* commands to redo are stored in CurrentScreen->m_RedoList
|
2008-02-26 19:19:54 +00:00
|
|
|
*
|
2009-07-25 04:53:39 +00:00
|
|
|
* m_UndoList and m_RedoList handle a std::vector of PICKED_ITEMS_LIST
|
|
|
|
* Each PICKED_ITEMS_LIST handle a std::vector of pickers (class ITEM_PICKER),
|
2009-12-02 21:44:03 +00:00
|
|
|
* that store the list of schematic items that are concerned by the command to
|
|
|
|
* undo or redo and is created for each command to undo (handle also a command
|
|
|
|
* to redo). each picker has a pointer pointing to an item to undo or redo (in
|
|
|
|
* fact: deleted, added or modified), and has a pointer to a copy of this item,
|
|
|
|
* when this item has been modified (the old values of parameters are
|
|
|
|
* therefore saved)
|
2008-02-26 19:19:54 +00:00
|
|
|
*
|
2007-09-01 12:00:30 +00:00
|
|
|
* there are 3 cases:
|
|
|
|
* - delete item(s) command
|
|
|
|
* - change item(s) command
|
|
|
|
* - add item(s) command
|
2009-07-29 13:10:36 +00:00
|
|
|
* and 2 cases for block:
|
|
|
|
* - move list of items
|
|
|
|
* - mirror (Y) list of items
|
2008-02-26 19:19:54 +00:00
|
|
|
*
|
2007-09-01 12:00:30 +00:00
|
|
|
* Undo command
|
|
|
|
* - delete item(s) command:
|
2009-07-25 04:53:39 +00:00
|
|
|
* => deleted items are moved in undo list
|
2008-02-26 19:19:54 +00:00
|
|
|
*
|
2007-09-01 12:00:30 +00:00
|
|
|
* - change item(s) command
|
2009-07-25 04:53:39 +00:00
|
|
|
* => A copy of item(s) is made (a DrawPickedStruct list of wrappers)
|
|
|
|
* the .m_Link member of each wrapper points the modified item.
|
|
|
|
* the .m_Item member of each wrapper points the old copy of this item.
|
2008-02-26 19:19:54 +00:00
|
|
|
*
|
2007-09-01 12:00:30 +00:00
|
|
|
* - add item(s) command
|
2009-12-02 21:44:03 +00:00
|
|
|
* =>A list of item(s) is made. The .m_Item member of each wrapper points
|
|
|
|
* the new item.
|
2008-02-26 19:19:54 +00:00
|
|
|
*
|
2007-09-01 12:00:30 +00:00
|
|
|
* Redo command
|
|
|
|
* - delete item(s) old command:
|
2019-06-25 23:39:58 +00:00
|
|
|
* => deleted items are moved into m_tree
|
2008-02-26 19:19:54 +00:00
|
|
|
*
|
2007-09-01 12:00:30 +00:00
|
|
|
* - change item(s) command
|
2009-07-25 04:53:39 +00:00
|
|
|
* => the copy of item(s) is moved in Undo list
|
2008-02-26 19:19:54 +00:00
|
|
|
*
|
2007-09-01 12:00:30 +00:00
|
|
|
* - add item(s) command
|
2009-12-02 21:44:03 +00:00
|
|
|
* => The list of item(s) is used to create a deleted list in undo
|
|
|
|
* list(same as a delete command)
|
2008-02-26 19:19:54 +00:00
|
|
|
*
|
2009-12-02 21:44:03 +00:00
|
|
|
* Some block operations that change items can be undone without memorized
|
|
|
|
* items, just the coordinates of the transform: move list of items (undo/
|
|
|
|
* redo is made by moving with the opposite move vector) mirror (Y) and flip
|
|
|
|
* list of items (undo/redo is made by mirror or flip items) so they are
|
|
|
|
* handled specifically.
|
2009-07-29 13:10:36 +00:00
|
|
|
*
|
2007-09-01 12:00:30 +00:00
|
|
|
* A problem is the hierarchical sheet handling.
|
2009-12-02 21:44:03 +00:00
|
|
|
* the data associated (sub-hierarchy, undo/redo list) is deleted only
|
2007-09-01 12:00:30 +00:00
|
|
|
* when the sheet is really deleted (i.e. when deleted from undo or redo list)
|
2009-07-25 04:53:39 +00:00
|
|
|
* This is handled by its destructor.
|
2007-09-01 12:00:30 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Used if undo / redo command:
|
2016-06-03 13:33:44 +00:00
|
|
|
* swap data between Item and its copy, pointed by its picked item link member
|
2018-06-22 13:05:11 +00:00
|
|
|
* swapped data is data modified by editing, so not all values are swapped
|
2007-09-01 12:00:30 +00:00
|
|
|
*/
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
void SCH_EDIT_FRAME::SaveCopyInUndoList( SCH_ITEM* aItem,
|
2011-04-05 14:46:51 +00:00
|
|
|
UNDO_REDO_T aCommandType,
|
2017-11-16 20:36:09 +00:00
|
|
|
bool aAppend,
|
2010-12-08 20:12:46 +00:00
|
|
|
const wxPoint& aTransformPoint )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2019-05-26 15:36:40 +00:00
|
|
|
PICKED_ITEMS_LIST* commandToUndo = nullptr;
|
2017-11-16 20:36:09 +00:00
|
|
|
|
2019-05-26 15:36:40 +00:00
|
|
|
if( !aItem )
|
2009-08-04 18:21:32 +00:00
|
|
|
return;
|
|
|
|
|
2019-03-30 15:57:30 +00:00
|
|
|
// Connectivity may change
|
|
|
|
aItem->SetConnectivityDirty();
|
|
|
|
|
2017-11-16 20:36:09 +00:00
|
|
|
if( aAppend )
|
|
|
|
commandToUndo = GetScreen()->PopCommandFromUndoList();
|
|
|
|
|
|
|
|
if( !commandToUndo )
|
|
|
|
{
|
|
|
|
commandToUndo = new PICKED_ITEMS_LIST();
|
|
|
|
commandToUndo->m_TransformPoint = aTransformPoint;
|
|
|
|
}
|
2007-09-01 12:00:30 +00:00
|
|
|
|
2012-02-05 13:02:46 +00:00
|
|
|
ITEM_PICKER itemWrapper( aItem, aCommandType );
|
2015-11-03 19:44:05 +00:00
|
|
|
itemWrapper.SetFlags( aItem->GetFlags() );
|
2007-09-01 12:00:30 +00:00
|
|
|
|
2009-07-25 07:31:07 +00:00
|
|
|
switch( aCommandType )
|
2007-09-01 12:00:30 +00:00
|
|
|
{
|
2009-08-03 07:55:08 +00:00
|
|
|
case UR_CHANGED: /* Create a copy of item */
|
2019-05-04 13:02:05 +00:00
|
|
|
itemWrapper.SetLink( aItem->Duplicate( true ) );
|
2012-02-05 13:02:46 +00:00
|
|
|
commandToUndo->PushItem( itemWrapper );
|
2009-07-25 07:31:07 +00:00
|
|
|
break;
|
2007-09-01 12:00:30 +00:00
|
|
|
|
2009-07-26 17:16:42 +00:00
|
|
|
case UR_NEW:
|
|
|
|
case UR_DELETED:
|
2011-08-31 14:59:20 +00:00
|
|
|
case UR_ROTATED:
|
2009-07-26 17:16:42 +00:00
|
|
|
case UR_MOVED:
|
2009-07-25 07:31:07 +00:00
|
|
|
commandToUndo->PushItem( itemWrapper );
|
2009-07-25 04:53:39 +00:00
|
|
|
break;
|
2009-07-25 07:31:07 +00:00
|
|
|
|
|
|
|
default:
|
2012-02-26 18:39:39 +00:00
|
|
|
wxFAIL_MSG( wxString::Format( wxT( "SaveCopyInUndoList() error (unknown code %X)" ),
|
|
|
|
aCommandType ) );
|
|
|
|
break;
|
2009-07-25 04:53:39 +00:00
|
|
|
}
|
2009-07-25 07:31:07 +00:00
|
|
|
|
2009-07-29 13:10:36 +00:00
|
|
|
if( commandToUndo->GetCount() )
|
|
|
|
{
|
|
|
|
/* Save the copy in undo list */
|
|
|
|
GetScreen()->PushCommandToUndoList( commandToUndo );
|
2009-07-25 04:53:39 +00:00
|
|
|
|
2009-07-29 13:10:36 +00:00
|
|
|
/* Clear redo list, because after new save there is no redo to do */
|
|
|
|
GetScreen()->ClearUndoORRedoList( GetScreen()->m_RedoList );
|
|
|
|
}
|
|
|
|
else
|
2012-02-26 18:39:39 +00:00
|
|
|
{
|
2009-07-29 13:10:36 +00:00
|
|
|
delete commandToUndo;
|
2012-02-26 18:39:39 +00:00
|
|
|
}
|
2009-07-25 04:53:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-18 12:27:18 +00:00
|
|
|
void SCH_EDIT_FRAME::SaveCopyInUndoList( const PICKED_ITEMS_LIST& aItemsList,
|
2019-05-26 15:36:40 +00:00
|
|
|
UNDO_REDO_T aTypeCommand,
|
|
|
|
bool aAppend,
|
|
|
|
const wxPoint& aTransformPoint )
|
2009-07-25 04:53:39 +00:00
|
|
|
{
|
2019-05-26 15:36:40 +00:00
|
|
|
PICKED_ITEMS_LIST* commandToUndo = nullptr;
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2017-11-16 20:36:09 +00:00
|
|
|
if( !aItemsList.GetCount() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Can't append a WIRE IMAGE, so fail to a new undo point
|
2019-04-13 02:49:03 +00:00
|
|
|
if( aAppend )
|
2017-11-16 20:36:09 +00:00
|
|
|
commandToUndo = GetScreen()->PopCommandFromUndoList();
|
|
|
|
|
|
|
|
if( !commandToUndo )
|
|
|
|
{
|
|
|
|
commandToUndo = new PICKED_ITEMS_LIST();
|
|
|
|
commandToUndo->m_TransformPoint = aTransformPoint;
|
|
|
|
commandToUndo->m_Status = aTypeCommand;
|
|
|
|
}
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2009-08-06 15:42:09 +00:00
|
|
|
// Copy picker list:
|
2017-11-16 20:36:09 +00:00
|
|
|
if( !commandToUndo->GetCount() )
|
|
|
|
commandToUndo->CopyList( aItemsList );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Unless we are appending, in which case, get the picker items
|
|
|
|
for( unsigned ii = 0; ii < aItemsList.GetCount(); ii++ )
|
|
|
|
commandToUndo->PushItem( aItemsList.GetItemWrapper( ii) );
|
|
|
|
}
|
2009-07-25 04:53:39 +00:00
|
|
|
|
2009-08-06 15:42:09 +00:00
|
|
|
// Verify list, and creates data if needed
|
|
|
|
for( unsigned ii = 0; ii < commandToUndo->GetCount(); ii++ )
|
2009-07-25 04:53:39 +00:00
|
|
|
{
|
2019-05-26 15:36:40 +00:00
|
|
|
SCH_ITEM* sch_item = dynamic_cast<SCH_ITEM*>( commandToUndo->GetPickedItem( ii ) );
|
|
|
|
|
|
|
|
// Common items implemented in EDA_DRAW_FRAME will not be SCH_ITEMs.
|
|
|
|
if( !sch_item )
|
|
|
|
continue;
|
2009-08-06 15:42:09 +00:00
|
|
|
|
2019-03-30 15:57:30 +00:00
|
|
|
// Connectivity may change
|
2019-05-26 15:36:40 +00:00
|
|
|
sch_item->SetConnectivityDirty();
|
2019-03-30 15:57:30 +00:00
|
|
|
|
2011-04-05 14:46:51 +00:00
|
|
|
UNDO_REDO_T command = commandToUndo->GetPickedItemStatus( ii );
|
|
|
|
|
2009-07-26 17:16:42 +00:00
|
|
|
if( command == UR_UNSPECIFIED )
|
2009-07-25 04:53:39 +00:00
|
|
|
{
|
|
|
|
command = aTypeCommand;
|
2010-09-05 17:01:48 +00:00
|
|
|
commandToUndo->SetPickedItemStatus( command, ii );
|
2009-07-23 15:37:00 +00:00
|
|
|
}
|
2009-08-06 15:42:09 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
switch( command )
|
|
|
|
{
|
2019-05-26 15:36:40 +00:00
|
|
|
case UR_CHANGED:
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2009-08-06 15:42:09 +00:00
|
|
|
/* If needed, create a copy of item, and put in undo list
|
|
|
|
* in the picker, as link
|
|
|
|
* If this link is not null, the copy is already done
|
|
|
|
*/
|
2019-05-26 15:36:40 +00:00
|
|
|
if( commandToUndo->GetPickedItemLink( ii ) == nullptr )
|
|
|
|
commandToUndo->SetPickedItemLink( sch_item->Duplicate( true ), ii );
|
2012-02-26 18:39:39 +00:00
|
|
|
|
2010-09-05 17:01:48 +00:00
|
|
|
wxASSERT( commandToUndo->GetPickedItemLink( ii ) );
|
2009-07-25 04:53:39 +00:00
|
|
|
break;
|
|
|
|
|
2009-07-26 17:16:42 +00:00
|
|
|
case UR_MOVED:
|
|
|
|
case UR_MIRRORED_Y:
|
2010-09-05 17:01:48 +00:00
|
|
|
case UR_MIRRORED_X:
|
|
|
|
case UR_ROTATED:
|
2009-07-26 17:16:42 +00:00
|
|
|
case UR_NEW:
|
|
|
|
case UR_DELETED:
|
2011-04-05 14:46:51 +00:00
|
|
|
case UR_EXCHANGE_T:
|
2019-05-26 15:36:40 +00:00
|
|
|
case UR_PAGESETTINGS:
|
2007-09-01 12:00:30 +00:00
|
|
|
break;
|
2009-07-25 04:53:39 +00:00
|
|
|
|
|
|
|
default:
|
2011-04-05 14:46:51 +00:00
|
|
|
wxFAIL_MSG( wxString::Format( wxT( "Unknown undo/redo command %d" ), command ) );
|
|
|
|
break;
|
2007-09-01 12:00:30 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-25 04:53:39 +00:00
|
|
|
|
2019-04-13 02:49:03 +00:00
|
|
|
if( commandToUndo->GetCount() )
|
2009-07-29 13:10:36 +00:00
|
|
|
{
|
|
|
|
/* Save the copy in undo list */
|
|
|
|
GetScreen()->PushCommandToUndoList( commandToUndo );
|
2008-02-26 19:19:54 +00:00
|
|
|
|
2009-07-29 13:10:36 +00:00
|
|
|
/* Clear redo list, because after new save there is no redo to do */
|
|
|
|
GetScreen()->ClearUndoORRedoList( GetScreen()->m_RedoList );
|
|
|
|
}
|
2009-08-06 15:42:09 +00:00
|
|
|
else // Should not occur
|
2012-02-26 18:39:39 +00:00
|
|
|
{
|
2009-07-29 13:10:36 +00:00
|
|
|
delete commandToUndo;
|
2012-02-26 18:39:39 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
void SCH_EDIT_FRAME::PutDataInPreviousState( PICKED_ITEMS_LIST* aList, bool aRedoCommand )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2012-02-26 18:39:39 +00:00
|
|
|
// Undo in the reverse order of list creation: (this can allow stacked changes like the
|
2018-12-22 22:12:40 +00:00
|
|
|
// same item can be changed and deleted in the same complex command).
|
2018-09-05 22:17:22 +00:00
|
|
|
for( int ii = aList->GetCount() - 1; ii >= 0; ii-- )
|
2007-09-01 12:00:30 +00:00
|
|
|
{
|
2018-12-22 22:12:40 +00:00
|
|
|
UNDO_REDO_T status = aList->GetPickedItemStatus((unsigned) ii );
|
2019-05-26 15:36:40 +00:00
|
|
|
EDA_ITEM* eda_item = aList->GetPickedItem( (unsigned) ii );
|
2011-03-10 19:36:30 +00:00
|
|
|
|
2019-05-26 15:36:40 +00:00
|
|
|
eda_item->SetFlags( aList->GetPickerFlags( (unsigned) ii ) );
|
|
|
|
eda_item->ClearEditFlags();
|
|
|
|
eda_item->ClearTempFlags();
|
2011-03-10 19:36:30 +00:00
|
|
|
|
2018-12-22 22:12:40 +00:00
|
|
|
if( status == UR_NEW )
|
2007-09-01 12:00:30 +00:00
|
|
|
{
|
2018-12-22 22:12:40 +00:00
|
|
|
// new items are deleted on undo
|
2019-05-26 15:36:40 +00:00
|
|
|
RemoveFromScreen( eda_item );
|
2018-12-22 22:12:40 +00:00
|
|
|
aList->SetPickedItemStatus( UR_DELETED, (unsigned) ii );
|
|
|
|
}
|
2019-05-26 15:36:40 +00:00
|
|
|
else if( status == UR_DELETED )
|
2018-12-22 22:12:40 +00:00
|
|
|
{
|
|
|
|
// deleted items are re-inserted on undo
|
2019-05-26 15:36:40 +00:00
|
|
|
AddToScreen( eda_item );
|
2018-12-22 22:12:40 +00:00
|
|
|
aList->SetPickedItemStatus( UR_NEW, (unsigned) ii );
|
|
|
|
}
|
2019-05-26 15:36:40 +00:00
|
|
|
else if( status == UR_PAGESETTINGS )
|
|
|
|
{
|
|
|
|
// swap current settings with stored settings
|
|
|
|
WS_PROXY_UNDO_ITEM alt_item( this );
|
|
|
|
WS_PROXY_UNDO_ITEM* item = (WS_PROXY_UNDO_ITEM*) eda_item;
|
|
|
|
item->Restore( this );
|
|
|
|
*item = alt_item;
|
2019-06-03 23:50:44 +00:00
|
|
|
GetToolManager()->RunAction( ACTIONS::zoomFitScreen, true );
|
2019-05-26 15:36:40 +00:00
|
|
|
}
|
|
|
|
else if( dynamic_cast<SCH_ITEM*>( eda_item ) )
|
2018-12-22 22:12:40 +00:00
|
|
|
{
|
|
|
|
// everthing else is modified in place
|
2019-05-26 15:36:40 +00:00
|
|
|
|
|
|
|
SCH_ITEM* item = (SCH_ITEM*) eda_item;
|
|
|
|
SCH_ITEM* alt_item = (SCH_ITEM*) aList->GetPickedItemLink( (unsigned) ii );
|
2018-08-03 12:18:26 +00:00
|
|
|
RemoveFromScreen( item );
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-12-22 22:12:40 +00:00
|
|
|
switch( status )
|
|
|
|
{
|
|
|
|
case UR_CHANGED:
|
|
|
|
item->SwapData( alt_item );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UR_MOVED:
|
|
|
|
item->Move( aRedoCommand ? aList->m_TransformPoint : -aList->m_TransformPoint );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UR_MIRRORED_Y:
|
|
|
|
item->MirrorY( aList->m_TransformPoint.x );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UR_MIRRORED_X:
|
|
|
|
item->MirrorX( aList->m_TransformPoint.y );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UR_ROTATED:
|
|
|
|
if( aRedoCommand )
|
|
|
|
item->Rotate( aList->m_TransformPoint );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Rotate 270 deg to undo 90-deg rotate
|
|
|
|
item->Rotate( aList->m_TransformPoint );
|
|
|
|
item->Rotate( aList->m_TransformPoint );
|
|
|
|
item->Rotate( aList->m_TransformPoint );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UR_EXCHANGE_T:
|
|
|
|
aList->SetPickedItem( alt_item, (unsigned) ii );
|
|
|
|
aList->SetPickedItemLink( item, (unsigned) ii );
|
|
|
|
item = alt_item;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
wxFAIL_MSG( wxString::Format( wxT( "Unknown undo/redo command %d" ),
|
|
|
|
aList->GetPickedItemStatus( (unsigned) ii ) ) );
|
|
|
|
break;
|
|
|
|
}
|
2011-04-05 14:46:51 +00:00
|
|
|
|
2018-12-22 22:12:40 +00:00
|
|
|
AddToScreen( item );
|
2007-09-01 12:00:30 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2019-05-11 10:06:28 +00:00
|
|
|
EE_SELECTION_TOOL* selTool = m_toolManager->GetTool<EE_SELECTION_TOOL>();
|
|
|
|
selTool->RebuildSelection();
|
|
|
|
|
2018-09-08 11:12:41 +00:00
|
|
|
// Bitmaps are cached in Opengl: clear the cache, because
|
|
|
|
// the cache data can be invalid
|
2019-02-12 15:40:20 +00:00
|
|
|
GetCanvas()->GetView()->RecacheAllItems();
|
2018-12-21 16:38:28 +00:00
|
|
|
GetCanvas()->GetView()->ClearHiddenFlags();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
|
2019-04-23 17:40:29 +00:00
|
|
|
void SCH_EDIT_FRAME::RollbackSchematicFromUndo()
|
|
|
|
{
|
|
|
|
PICKED_ITEMS_LIST* undo = GetScreen()->PopCommandFromUndoList();
|
|
|
|
|
2019-08-03 23:14:56 +00:00
|
|
|
if( undo )
|
|
|
|
{
|
|
|
|
PutDataInPreviousState( undo, false );
|
|
|
|
undo->ClearListAndDeleteItems();
|
|
|
|
delete undo;
|
2019-04-23 17:40:29 +00:00
|
|
|
|
2019-08-03 23:14:56 +00:00
|
|
|
SetSheetNumberAndCount();
|
2019-04-23 17:40:29 +00:00
|
|
|
|
2019-08-03 23:14:56 +00:00
|
|
|
TestDanglingEnds();
|
|
|
|
}
|
2019-04-23 17:40:29 +00:00
|
|
|
|
|
|
|
SyncView();
|
|
|
|
GetCanvas()->Refresh();
|
|
|
|
}
|