2016-05-10 15:57:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 CERN
|
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <footprint.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2016-05-10 15:57:21 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2019-05-11 10:06:28 +00:00
|
|
|
#include <tools/selection_tool.h>
|
2016-05-10 15:57:21 +00:00
|
|
|
#include <view/view.h>
|
|
|
|
#include <board_commit.h>
|
2019-05-12 11:49:58 +00:00
|
|
|
#include <tools/pcb_tool_base.h>
|
2018-09-17 13:14:23 +00:00
|
|
|
#include <tools/pcb_actions.h>
|
2018-10-12 06:17:15 +00:00
|
|
|
#include <connectivity/connectivity_data.h>
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2016-11-28 14:31:56 +00:00
|
|
|
#include <functional>
|
|
|
|
using namespace std::placeholders;
|
|
|
|
|
2017-09-28 16:38:54 +00:00
|
|
|
#include "pcb_draw_panel_gal.h"
|
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
BOARD_COMMIT::BOARD_COMMIT( PCB_TOOL_BASE* aTool )
|
2016-05-10 15:57:21 +00:00
|
|
|
{
|
2016-06-16 10:19:07 +00:00
|
|
|
m_toolMgr = aTool->GetManager();
|
2020-11-08 21:29:04 +00:00
|
|
|
m_isFootprintEditor = aTool->IsFootprintEditor();
|
2016-06-16 10:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-31 11:03:37 +00:00
|
|
|
BOARD_COMMIT::BOARD_COMMIT( EDA_DRAW_FRAME* aFrame )
|
2016-06-16 10:19:07 +00:00
|
|
|
{
|
|
|
|
m_toolMgr = aFrame->GetToolManager();
|
2020-11-08 21:29:04 +00:00
|
|
|
m_isFootprintEditor = aFrame->IsType( FRAME_FOOTPRINT_EDITOR );
|
2016-05-10 15:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BOARD_COMMIT::~BOARD_COMMIT()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-11-16 22:31:18 +00:00
|
|
|
COMMIT& BOARD_COMMIT::Stage( EDA_ITEM* aItem, CHANGE_TYPE aChangeType )
|
|
|
|
{
|
|
|
|
// if aItem belongs a footprint, the full footprint will be saved
|
|
|
|
// because undo/redo does not handle "sub items" modifications
|
2020-11-13 12:21:02 +00:00
|
|
|
if( aItem && aItem->Type() != PCB_FOOTPRINT_T && aChangeType == CHT_MODIFY )
|
2019-11-16 22:31:18 +00:00
|
|
|
{
|
|
|
|
EDA_ITEM* item = aItem->GetParent();
|
|
|
|
|
2020-11-13 12:21:02 +00:00
|
|
|
if( item && item->Type() == PCB_FOOTPRINT_T ) // means aItem belongs a footprint
|
2019-11-16 22:31:18 +00:00
|
|
|
aItem = item;
|
|
|
|
}
|
|
|
|
|
|
|
|
return COMMIT::Stage( aItem, aChangeType );
|
|
|
|
}
|
|
|
|
|
|
|
|
COMMIT& BOARD_COMMIT::Stage( std::vector<EDA_ITEM*>& container, CHANGE_TYPE aChangeType )
|
|
|
|
{
|
|
|
|
return COMMIT::Stage( container, aChangeType );
|
|
|
|
}
|
|
|
|
|
2020-08-26 18:04:32 +00:00
|
|
|
COMMIT& BOARD_COMMIT::Stage( const PICKED_ITEMS_LIST& aItems, UNDO_REDO aModFlag )
|
2019-11-16 22:31:18 +00:00
|
|
|
{
|
|
|
|
return COMMIT::Stage( aItems, aModFlag );
|
|
|
|
}
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2018-04-09 19:56:27 +00:00
|
|
|
void BOARD_COMMIT::Push( const wxString& aMessage, bool aCreateUndoEntry, bool aSetDirtyBit )
|
2016-05-10 15:57:21 +00:00
|
|
|
{
|
|
|
|
// Objects potentially interested in changes:
|
2019-11-16 22:31:18 +00:00
|
|
|
PICKED_ITEMS_LIST undoList;
|
|
|
|
KIGFX::VIEW* view = m_toolMgr->GetView();
|
|
|
|
BOARD* board = (BOARD*) m_toolMgr->GetModel();
|
2020-03-24 01:01:23 +00:00
|
|
|
PCB_BASE_FRAME* frame = (PCB_BASE_FRAME*) m_toolMgr->GetToolHolder();
|
2019-11-16 22:31:18 +00:00
|
|
|
auto connectivity = board->GetConnectivity();
|
|
|
|
std::set<EDA_ITEM*> savedModules;
|
|
|
|
SELECTION_TOOL* selTool = m_toolMgr->GetTool<SELECTION_TOOL>();
|
|
|
|
bool itemsDeselected = false;
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2016-06-16 10:19:07 +00:00
|
|
|
if( Empty() )
|
|
|
|
return;
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2016-06-16 10:19:07 +00:00
|
|
|
for( COMMIT_LINE& ent : m_changes )
|
2016-05-10 15:57:21 +00:00
|
|
|
{
|
2016-08-18 14:28:04 +00:00
|
|
|
int changeType = ent.m_type & CHT_TYPE;
|
|
|
|
int changeFlags = ent.m_type & CHT_FLAGS;
|
2016-06-20 09:21:37 +00:00
|
|
|
BOARD_ITEM* boardItem = static_cast<BOARD_ITEM*>( ent.m_item );
|
|
|
|
|
2016-06-16 10:19:07 +00:00
|
|
|
// Module items need to be saved in the undo buffer before modification
|
2020-11-08 21:29:04 +00:00
|
|
|
if( m_isFootprintEditor )
|
2016-06-16 10:19:07 +00:00
|
|
|
{
|
2020-11-13 11:17:15 +00:00
|
|
|
// Be sure that we are storing a footprint
|
2020-11-13 12:21:02 +00:00
|
|
|
if( ent.m_item->Type() != PCB_FOOTPRINT_T )
|
2016-06-20 09:20:22 +00:00
|
|
|
ent.m_item = ent.m_item->GetParent();
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2020-11-13 11:17:15 +00:00
|
|
|
// We have not saved the footprint yet, so let's create an entry
|
2016-06-20 09:20:22 +00:00
|
|
|
if( savedModules.count( ent.m_item ) == 0 )
|
|
|
|
{
|
|
|
|
if( !ent.m_copy )
|
|
|
|
{
|
2017-10-19 07:49:09 +00:00
|
|
|
wxASSERT( changeType != CHT_MODIFY ); // too late to make a copy..
|
2016-06-20 09:20:22 +00:00
|
|
|
ent.m_copy = ent.m_item->Clone();
|
|
|
|
}
|
|
|
|
|
2020-11-13 12:21:02 +00:00
|
|
|
wxASSERT( ent.m_item->Type() == PCB_FOOTPRINT_T );
|
|
|
|
wxASSERT( ent.m_copy->Type() == PCB_FOOTPRINT_T );
|
2016-12-09 11:04:32 +00:00
|
|
|
|
2017-03-03 19:26:18 +00:00
|
|
|
if( aCreateUndoEntry )
|
2017-03-03 12:41:41 +00:00
|
|
|
{
|
2020-08-26 18:04:32 +00:00
|
|
|
ITEM_PICKER itemWrapper( nullptr, ent.m_item, UNDO_REDO::CHANGED );
|
2017-03-03 12:41:41 +00:00
|
|
|
itemWrapper.SetLink( ent.m_copy );
|
|
|
|
undoList.PushItem( itemWrapper );
|
2020-08-26 18:04:32 +00:00
|
|
|
frame->SaveCopyInUndoList( undoList, UNDO_REDO::CHANGED );
|
2017-03-03 12:41:41 +00:00
|
|
|
}
|
2016-06-20 09:21:37 +00:00
|
|
|
|
2016-06-20 09:20:22 +00:00
|
|
|
savedModules.insert( ent.m_item );
|
2020-11-13 15:15:52 +00:00
|
|
|
static_cast<FOOTPRINT*>( ent.m_item )->SetLastEditTime();
|
2016-06-20 09:20:22 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2016-08-18 14:28:04 +00:00
|
|
|
switch( changeType )
|
2016-05-10 15:57:21 +00:00
|
|
|
{
|
|
|
|
case CHT_ADD:
|
|
|
|
{
|
2020-11-08 21:29:04 +00:00
|
|
|
if( m_isFootprintEditor )
|
2016-05-10 15:57:21 +00:00
|
|
|
{
|
2020-10-21 03:48:06 +00:00
|
|
|
// footprints inside footprints are not supported yet
|
2020-11-13 12:21:02 +00:00
|
|
|
wxASSERT( boardItem->Type() != PCB_FOOTPRINT_T );
|
2016-08-18 14:28:04 +00:00
|
|
|
|
2020-11-12 23:50:33 +00:00
|
|
|
boardItem->SetParent( board->Footprints().front() );
|
2018-03-05 15:37:39 +00:00
|
|
|
|
2016-11-04 21:29:47 +00:00
|
|
|
if( !( changeFlags & CHT_DONE ) )
|
2020-11-12 23:50:33 +00:00
|
|
|
board->Footprints().front()->Add( boardItem );
|
2016-05-10 15:57:21 +00:00
|
|
|
}
|
2020-10-04 14:19:33 +00:00
|
|
|
else if( boardItem->Type() == PCB_FP_TEXT_T ||
|
|
|
|
boardItem->Type() == PCB_FP_SHAPE_T ||
|
2020-11-11 23:05:59 +00:00
|
|
|
boardItem->Type() == PCB_FP_ZONE_T )
|
2020-02-05 12:49:12 +00:00
|
|
|
{
|
|
|
|
wxASSERT( boardItem->GetParent() &&
|
2020-11-13 12:21:02 +00:00
|
|
|
boardItem->GetParent()->Type() == PCB_FOOTPRINT_T );
|
2020-02-05 12:49:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( aCreateUndoEntry )
|
2020-08-26 18:04:32 +00:00
|
|
|
undoList.PushItem( ITEM_PICKER( nullptr, boardItem, UNDO_REDO::NEWITEM ) );
|
2020-02-05 12:49:12 +00:00
|
|
|
|
|
|
|
if( !( changeFlags & CHT_DONE ) )
|
|
|
|
board->Add( boardItem ); // handles connectivity
|
|
|
|
}
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2020-11-27 23:33:48 +00:00
|
|
|
if( boardItem->Type() != PCB_NETINFO_T )
|
2020-07-13 21:35:05 +00:00
|
|
|
view->Add( boardItem );
|
|
|
|
|
2016-05-10 15:57:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case CHT_REMOVE:
|
|
|
|
{
|
2020-11-08 21:29:04 +00:00
|
|
|
if( !m_isFootprintEditor && aCreateUndoEntry )
|
2020-08-26 18:04:32 +00:00
|
|
|
undoList.PushItem( ITEM_PICKER( nullptr, boardItem, UNDO_REDO::DELETED ) );
|
2018-09-26 12:41:14 +00:00
|
|
|
|
2019-11-16 22:31:18 +00:00
|
|
|
if( boardItem->IsSelected() )
|
|
|
|
{
|
|
|
|
selTool->RemoveItemFromSel( boardItem, true /* quiet mode */ );
|
|
|
|
itemsDeselected = true;
|
|
|
|
}
|
|
|
|
|
2016-06-16 10:20:56 +00:00
|
|
|
switch( boardItem->Type() )
|
2016-05-10 15:57:21 +00:00
|
|
|
{
|
2016-06-16 10:20:56 +00:00
|
|
|
// Module items
|
|
|
|
case PCB_PAD_T:
|
2020-10-04 14:19:33 +00:00
|
|
|
case PCB_FP_SHAPE_T:
|
|
|
|
case PCB_FP_TEXT_T:
|
2020-11-11 23:05:59 +00:00
|
|
|
case PCB_FP_ZONE_T:
|
2020-11-13 11:17:15 +00:00
|
|
|
// This level can only handle footprint children when editing footprints
|
2020-11-08 21:29:04 +00:00
|
|
|
wxASSERT( m_isFootprintEditor );
|
2016-06-16 10:20:56 +00:00
|
|
|
|
2020-10-04 14:19:33 +00:00
|
|
|
if( boardItem->Type() == PCB_FP_TEXT_T )
|
2016-06-16 10:20:56 +00:00
|
|
|
{
|
2020-10-04 23:34:59 +00:00
|
|
|
FP_TEXT* text = static_cast<FP_TEXT*>( boardItem );
|
2016-06-16 10:20:56 +00:00
|
|
|
|
2018-09-15 23:30:10 +00:00
|
|
|
// don't allow deletion of Reference or Value
|
2020-10-04 23:34:59 +00:00
|
|
|
if( text->GetType() != FP_TEXT::TEXT_is_DIVERS )
|
2018-09-15 23:30:10 +00:00
|
|
|
break;
|
2016-06-16 10:20:56 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 23:30:10 +00:00
|
|
|
view->Remove( boardItem );
|
2016-06-16 10:20:56 +00:00
|
|
|
|
2018-09-15 23:30:10 +00:00
|
|
|
if( !( changeFlags & CHT_DONE ) )
|
|
|
|
{
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* footprint = static_cast<FOOTPRINT*>( boardItem->GetParent() );
|
2020-11-13 12:21:02 +00:00
|
|
|
wxASSERT( footprint && footprint->Type() == PCB_FOOTPRINT_T );
|
2020-11-13 11:17:15 +00:00
|
|
|
footprint->Delete( boardItem );
|
2016-06-16 10:20:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2016-06-20 09:21:37 +00:00
|
|
|
// Board items
|
2020-10-04 14:19:33 +00:00
|
|
|
case PCB_SHAPE_T: // a shape (normally not on copper layers)
|
2016-06-16 10:20:56 +00:00
|
|
|
case PCB_TEXT_T: // a text on a layer
|
|
|
|
case PCB_TRACE_T: // a track segment (segment on a copper layer)
|
2019-05-17 00:13:21 +00:00
|
|
|
case PCB_ARC_T: // an arced track segment (segment on a copper layer)
|
2016-06-16 10:20:56 +00:00
|
|
|
case PCB_VIA_T: // a via (like track segment on a copper layer)
|
2020-09-12 20:09:40 +00:00
|
|
|
case PCB_DIM_ALIGNED_T: // a dimension (graphic item)
|
2020-09-17 00:54:58 +00:00
|
|
|
case PCB_DIM_CENTER_T:
|
|
|
|
case PCB_DIM_ORTHOGONAL_T:
|
2020-09-12 20:09:40 +00:00
|
|
|
case PCB_DIM_LEADER_T: // a leader dimension
|
2016-06-16 10:20:56 +00:00
|
|
|
case PCB_TARGET_T: // a target (graphic item)
|
|
|
|
case PCB_MARKER_T: // a marker used to show something
|
2020-11-11 23:05:59 +00:00
|
|
|
case PCB_ZONE_T:
|
2016-06-16 10:20:56 +00:00
|
|
|
view->Remove( boardItem );
|
2016-08-18 14:28:04 +00:00
|
|
|
|
2016-11-04 21:29:47 +00:00
|
|
|
if( !( changeFlags & CHT_DONE ) )
|
2016-08-18 14:28:04 +00:00
|
|
|
board->Remove( boardItem );
|
|
|
|
|
2016-06-16 10:20:56 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-13 12:21:02 +00:00
|
|
|
case PCB_FOOTPRINT_T:
|
2016-06-20 09:21:37 +00:00
|
|
|
{
|
2020-11-13 11:17:15 +00:00
|
|
|
// No support for nested footprints (yet)
|
2020-11-08 21:29:04 +00:00
|
|
|
wxASSERT( !m_isFootprintEditor );
|
2016-06-20 09:21:37 +00:00
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* footprint = static_cast<FOOTPRINT*>( boardItem );
|
2020-11-13 11:17:15 +00:00
|
|
|
view->Remove( footprint );
|
|
|
|
footprint->ClearFlags();
|
2018-09-17 13:14:23 +00:00
|
|
|
|
2016-11-04 21:29:47 +00:00
|
|
|
if( !( changeFlags & CHT_DONE ) )
|
2020-11-13 11:17:15 +00:00
|
|
|
board->Remove( footprint ); // handles connectivity
|
2016-06-20 09:21:37 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2020-09-26 00:52:03 +00:00
|
|
|
case PCB_GROUP_T:
|
2020-11-27 23:33:48 +00:00
|
|
|
view->Remove( boardItem );
|
|
|
|
|
2020-07-13 21:35:05 +00:00
|
|
|
if( !( changeFlags & CHT_DONE ) )
|
2020-10-07 23:27:10 +00:00
|
|
|
{
|
2020-11-08 21:29:04 +00:00
|
|
|
if( m_isFootprintEditor )
|
|
|
|
board->GetFirstFootprint()->Remove( boardItem );
|
2020-10-07 23:27:10 +00:00
|
|
|
else
|
|
|
|
board->Remove( boardItem );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Metadata items
|
|
|
|
case PCB_NETINFO_T:
|
|
|
|
board->Remove( boardItem );
|
2020-07-13 21:35:05 +00:00
|
|
|
break;
|
|
|
|
|
2016-06-16 10:20:56 +00:00
|
|
|
default: // other types do not need to (or should not) be handled
|
2017-10-19 07:49:09 +00:00
|
|
|
wxASSERT( false );
|
2016-06-16 10:20:56 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-09-26 12:41:14 +00:00
|
|
|
|
2016-05-10 15:57:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case CHT_MODIFY:
|
|
|
|
{
|
2020-11-08 21:29:04 +00:00
|
|
|
if( !m_isFootprintEditor && aCreateUndoEntry )
|
2016-05-10 15:57:21 +00:00
|
|
|
{
|
2020-08-26 18:04:32 +00:00
|
|
|
ITEM_PICKER itemWrapper( nullptr, boardItem, UNDO_REDO::CHANGED );
|
2017-10-19 07:49:09 +00:00
|
|
|
wxASSERT( ent.m_copy );
|
2016-05-10 15:57:21 +00:00
|
|
|
itemWrapper.SetLink( ent.m_copy );
|
|
|
|
undoList.PushItem( itemWrapper );
|
|
|
|
}
|
|
|
|
|
2017-10-31 08:14:03 +00:00
|
|
|
if( ent.m_copy )
|
|
|
|
connectivity->MarkItemNetAsDirty( static_cast<BOARD_ITEM*>( ent.m_copy ) );
|
|
|
|
|
2017-03-22 13:43:10 +00:00
|
|
|
connectivity->Update( boardItem );
|
2017-10-31 08:14:03 +00:00
|
|
|
view->Update( boardItem );
|
2020-10-08 09:59:17 +00:00
|
|
|
|
2020-11-08 21:29:04 +00:00
|
|
|
if( m_isFootprintEditor )
|
2020-10-08 09:59:17 +00:00
|
|
|
{
|
2020-11-13 15:15:52 +00:00
|
|
|
static_cast<FOOTPRINT*>( boardItem )->RunOnChildren(
|
|
|
|
[&]( BOARD_ITEM* aChild )
|
|
|
|
{
|
|
|
|
view->Update( aChild );
|
|
|
|
});
|
2020-10-08 09:59:17 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 19:29:16 +00:00
|
|
|
board->OnItemChanged( boardItem );
|
2017-10-31 08:14:03 +00:00
|
|
|
|
|
|
|
// if no undo entry is needed, the copy would create a memory leak
|
|
|
|
if( !aCreateUndoEntry )
|
|
|
|
delete ent.m_copy;
|
|
|
|
|
2016-05-10 15:57:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2017-10-19 07:49:09 +00:00
|
|
|
wxASSERT( false );
|
2016-05-10 15:57:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-08 21:29:04 +00:00
|
|
|
if ( !m_isFootprintEditor )
|
2017-09-28 16:38:54 +00:00
|
|
|
{
|
2019-05-25 01:55:40 +00:00
|
|
|
size_t num_changes = m_changes.size();
|
|
|
|
|
|
|
|
connectivity->RecalculateRatsnest( this );
|
2018-12-30 19:17:00 +00:00
|
|
|
connectivity->ClearDynamicRatsnest();
|
2019-06-13 17:28:55 +00:00
|
|
|
frame->GetCanvas()->RedrawRatsnest();
|
2019-05-25 01:55:40 +00:00
|
|
|
|
|
|
|
if( m_changes.size() > num_changes )
|
|
|
|
{
|
|
|
|
for( size_t i = num_changes; i < m_changes.size(); ++i )
|
|
|
|
{
|
|
|
|
COMMIT_LINE& ent = m_changes[i];
|
|
|
|
|
|
|
|
// This should only be modifications from the connectivity algo
|
|
|
|
wxASSERT( ( ent.m_type & CHT_TYPE ) == CHT_MODIFY );
|
|
|
|
|
|
|
|
auto boardItem = static_cast<BOARD_ITEM*>( ent.m_item );
|
|
|
|
|
|
|
|
if( aCreateUndoEntry )
|
|
|
|
{
|
2020-08-26 18:04:32 +00:00
|
|
|
ITEM_PICKER itemWrapper( nullptr, boardItem, UNDO_REDO::CHANGED );
|
2019-05-25 01:55:40 +00:00
|
|
|
wxASSERT( ent.m_copy );
|
|
|
|
itemWrapper.SetLink( ent.m_copy );
|
|
|
|
undoList.PushItem( itemWrapper );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete ent.m_copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
view->Update( boardItem );
|
|
|
|
}
|
|
|
|
}
|
2017-09-28 16:38:54 +00:00
|
|
|
}
|
2017-06-29 18:39:11 +00:00
|
|
|
|
2020-11-08 21:29:04 +00:00
|
|
|
if( !m_isFootprintEditor && aCreateUndoEntry )
|
2020-08-26 18:04:32 +00:00
|
|
|
frame->SaveCopyInUndoList( undoList, UNDO_REDO::UNSPECIFIED );
|
2019-05-25 01:55:40 +00:00
|
|
|
|
2019-11-16 22:31:18 +00:00
|
|
|
m_toolMgr->PostEvent( { TC_MESSAGE, TA_MODEL_CHANGE, AS_GLOBAL } );
|
|
|
|
|
|
|
|
if( itemsDeselected )
|
|
|
|
m_toolMgr->PostEvent( EVENTS::UnselectedEvent );
|
2019-05-25 01:55:40 +00:00
|
|
|
|
2018-04-09 19:56:27 +00:00
|
|
|
if( aSetDirtyBit )
|
|
|
|
frame->OnModify();
|
2020-11-05 11:08:08 +00:00
|
|
|
else
|
|
|
|
frame->Update3DView( false );
|
2018-04-09 19:56:27 +00:00
|
|
|
|
2016-09-19 10:08:07 +00:00
|
|
|
frame->UpdateMsgPanel();
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2016-06-16 10:19:07 +00:00
|
|
|
clear();
|
2016-05-10 15:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
EDA_ITEM* BOARD_COMMIT::parentObject( EDA_ITEM* aItem ) const
|
|
|
|
{
|
|
|
|
switch( aItem->Type() )
|
|
|
|
{
|
|
|
|
case PCB_PAD_T:
|
2020-10-04 14:19:33 +00:00
|
|
|
case PCB_FP_SHAPE_T:
|
|
|
|
case PCB_FP_TEXT_T:
|
2020-11-11 23:05:59 +00:00
|
|
|
case PCB_FP_ZONE_T:
|
2016-05-10 15:57:21 +00:00
|
|
|
return aItem->GetParent();
|
2019-10-26 15:49:29 +00:00
|
|
|
|
2020-11-11 23:05:59 +00:00
|
|
|
case PCB_ZONE_T:
|
2020-11-13 15:15:52 +00:00
|
|
|
wxASSERT( !dynamic_cast<FOOTPRINT*>( aItem->GetParent() ) );
|
2016-05-10 15:57:21 +00:00
|
|
|
return aItem;
|
2019-10-26 15:49:29 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2016-05-10 15:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return aItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD_COMMIT::Revert()
|
|
|
|
{
|
|
|
|
PICKED_ITEMS_LIST undoList;
|
|
|
|
KIGFX::VIEW* view = m_toolMgr->GetView();
|
2016-06-16 10:19:58 +00:00
|
|
|
BOARD* board = (BOARD*) m_toolMgr->GetModel();
|
2017-03-22 13:43:10 +00:00
|
|
|
auto connectivity = board->GetConnectivity();
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2016-06-21 15:35:30 +00:00
|
|
|
for( auto it = m_changes.rbegin(); it != m_changes.rend(); ++it )
|
2016-05-10 15:57:21 +00:00
|
|
|
{
|
2016-06-21 15:35:30 +00:00
|
|
|
COMMIT_LINE& ent = *it;
|
2016-06-16 10:19:58 +00:00
|
|
|
BOARD_ITEM* item = static_cast<BOARD_ITEM*>( ent.m_item );
|
|
|
|
BOARD_ITEM* copy = static_cast<BOARD_ITEM*>( ent.m_copy );
|
2017-12-14 16:07:44 +00:00
|
|
|
int changeType = ent.m_type & CHT_TYPE;
|
|
|
|
int changeFlags = ent.m_type & CHT_FLAGS;
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2017-12-14 16:07:44 +00:00
|
|
|
switch( changeType )
|
2016-06-16 10:19:58 +00:00
|
|
|
{
|
2016-06-21 14:54:14 +00:00
|
|
|
case CHT_ADD:
|
2017-12-14 16:07:44 +00:00
|
|
|
if( !( changeFlags & CHT_DONE ) )
|
|
|
|
break;
|
2016-06-21 14:54:14 +00:00
|
|
|
|
|
|
|
view->Remove( item );
|
2017-03-22 13:43:10 +00:00
|
|
|
connectivity->Remove( item );
|
2017-12-14 16:07:44 +00:00
|
|
|
board->Remove( item );
|
2016-06-21 14:54:14 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CHT_REMOVE:
|
2017-12-14 16:07:44 +00:00
|
|
|
if( !( changeFlags & CHT_DONE ) )
|
|
|
|
break;
|
|
|
|
|
2016-06-21 14:54:14 +00:00
|
|
|
view->Add( item );
|
2017-03-22 13:43:10 +00:00
|
|
|
connectivity->Add( item );
|
2017-12-14 16:07:44 +00:00
|
|
|
board->Add( item );
|
2016-06-21 14:54:14 +00:00
|
|
|
break;
|
|
|
|
|
2016-06-16 10:19:58 +00:00
|
|
|
case CHT_MODIFY:
|
2016-05-10 15:57:21 +00:00
|
|
|
{
|
2016-06-16 10:19:58 +00:00
|
|
|
view->Remove( item );
|
2017-03-22 13:43:10 +00:00
|
|
|
connectivity->Remove( item );
|
2016-06-21 14:54:14 +00:00
|
|
|
|
2016-05-10 15:57:21 +00:00
|
|
|
item->SwapData( copy );
|
2016-06-21 14:54:14 +00:00
|
|
|
|
2016-05-10 15:57:21 +00:00
|
|
|
view->Add( item );
|
2017-03-22 13:43:10 +00:00
|
|
|
connectivity->Add( item );
|
2020-04-12 19:29:16 +00:00
|
|
|
board->OnItemChanged( item );
|
2016-06-20 09:25:40 +00:00
|
|
|
delete copy;
|
2016-06-16 10:19:58 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2016-06-16 10:19:58 +00:00
|
|
|
default:
|
2017-10-19 07:49:09 +00:00
|
|
|
wxASSERT( false );
|
2016-05-10 15:57:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-06-16 10:19:58 +00:00
|
|
|
|
2020-11-08 21:29:04 +00:00
|
|
|
if ( !m_isFootprintEditor )
|
2017-06-29 18:39:11 +00:00
|
|
|
connectivity->RecalculateRatsnest();
|
2016-06-21 14:54:14 +00:00
|
|
|
|
2019-05-11 10:06:28 +00:00
|
|
|
SELECTION_TOOL* selTool = m_toolMgr->GetTool<SELECTION_TOOL>();
|
|
|
|
selTool->RebuildSelection();
|
|
|
|
|
2016-06-16 10:19:58 +00:00
|
|
|
clear();
|
2016-05-10 15:57:21 +00:00
|
|
|
}
|
2020-08-11 19:37:07 +00:00
|
|
|
|
|
|
|
bool BOARD_COMMIT::HasRemoveEntry( EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
COMMIT::COMMIT_LINE* line = findEntry( aItem );
|
|
|
|
return line != nullptr && line->m_type == CHT_REMOVE;
|
|
|
|
}
|