kicad/eeschema/libedit_undo_redo.cpp

109 lines
3.0 KiB
C++
Raw Normal View History

/********************************************/
/* library editor: undo and redo functions */
/********************************************/
#include "fctsys.h"
#include "class_drawpanel.h"
#include "common.h"
#include "program.h"
#include "general.h"
#include "protos.h"
2010-02-16 16:21:52 +00:00
#include "libeditframe.h"
#include "class_libentry.h"
void WinEDA_LibeditFrame::SaveCopyInUndoList( EDA_BaseStruct* ItemToCopy, int unused_flag )
{
LIB_COMPONENT* CopyItem;
2009-07-23 15:37:00 +00:00
PICKED_ITEMS_LIST* lastcmd;
CopyItem = new LIB_COMPONENT( *( (LIB_COMPONENT*) ItemToCopy ) );
if( CopyItem == NULL )
return;
2009-07-23 15:37:00 +00:00
lastcmd = new PICKED_ITEMS_LIST();
ITEM_PICKER wrapper( CopyItem, UR_LIBEDIT );
2009-07-23 15:37:00 +00:00
lastcmd->PushItem(wrapper);
GetScreen()->PushCommandToUndoList( lastcmd );
// Clear current flags (which can be temporary set by a current edit command).
CopyItem->ClearStatus();
// Clear redo list, because after new save there is no redo to do.
GetScreen()->ClearUndoORRedoList( GetScreen()->m_RedoList );
}
/* Redo the last edition:
* - Place the current edited library component in undo list
* - Get old version of the current edited library component
*/
void WinEDA_LibeditFrame::GetComponentFromRedoList(wxCommandEvent& event)
{
2009-07-23 15:37:00 +00:00
if ( GetScreen()->GetRedoCommandCount() <= 0 )
return;
2009-07-23 15:37:00 +00:00
PICKED_ITEMS_LIST* lastcmd = new PICKED_ITEMS_LIST();
ITEM_PICKER wrapper( m_component, UR_LIBEDIT );
lastcmd->PushItem( wrapper );
2009-07-23 15:37:00 +00:00
GetScreen()->PushCommandToUndoList( lastcmd );
lastcmd = GetScreen()->PopCommandFromRedoList();
2009-07-23 15:37:00 +00:00
wrapper = lastcmd->PopItem();
m_component = (LIB_COMPONENT*) wrapper.m_PickedItem;
if( m_component == NULL )
return;
if( !m_aliasName.IsEmpty() && !m_component->HasAlias( m_aliasName ) )
m_aliasName = m_component->GetName();
m_drawItem = NULL;
UpdateAliasSelectList();
UpdatePartSelectList();
SetShowDeMorgan( m_component->HasConversion() );
DisplayLibInfos();
DisplayCmpDoc();
OnModify( );
DrawPanel->Refresh();
2007-05-06 16:03:28 +00:00
}
/** Undo the last edition:
* - Place the current edited library component in Redo list
* - Get old version of the current edited library component
*/
void WinEDA_LibeditFrame::GetComponentFromUndoList(wxCommandEvent& event)
{
2009-07-23 15:37:00 +00:00
if ( GetScreen()->GetUndoCommandCount() <= 0 )
return;
2009-07-23 15:37:00 +00:00
PICKED_ITEMS_LIST* lastcmd = new PICKED_ITEMS_LIST();
ITEM_PICKER wrapper( m_component, UR_LIBEDIT );
lastcmd->PushItem( wrapper );
2009-07-23 15:37:00 +00:00
GetScreen()->PushCommandToRedoList( lastcmd );
lastcmd = GetScreen()->PopCommandFromUndoList();
2009-07-23 15:37:00 +00:00
wrapper = lastcmd->PopItem();
m_component = (LIB_COMPONENT*) wrapper.m_PickedItem;
if( m_component == NULL )
return;
if( !m_aliasName.IsEmpty() && !m_component->HasAlias( m_aliasName ) )
m_aliasName = m_component->GetName();
m_drawItem = NULL;
UpdateAliasSelectList();
UpdatePartSelectList();
SetShowDeMorgan( m_component->HasConversion() );
DisplayLibInfos();
DisplayCmpDoc();
OnModify();
DrawPanel->Refresh();
2007-05-06 16:03:28 +00:00
}