2011-11-10 15:55:05 +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
|
|
|
|
* Copyright (C) 2009-2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 2004-2011 KiCad Developers, see change_log.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2011-10-07 14:41:30 +00:00
|
|
|
/**
|
|
|
|
* @file eeschema/block.cpp
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <appl_wxstruct.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <wxEeschemaStruct.h>
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <class_library.h>
|
|
|
|
#include <lib_pin.h>
|
|
|
|
#include <protos.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_text.h>
|
|
|
|
#include <sch_component.h>
|
|
|
|
#include <sch_sheet.h>
|
2010-11-10 15:30:12 +00:00
|
|
|
|
|
|
|
#include <boost/foreach.hpp>
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-02-27 19:38:16 +00:00
|
|
|
|
2009-07-26 17:16:42 +00:00
|
|
|
// Imported functions:
|
2011-01-20 11:26:10 +00:00
|
|
|
extern void SetSchItemParent( SCH_ITEM* Struct, SCH_SCREEN* Screen );
|
|
|
|
extern void MoveItemsInList( PICKED_ITEMS_LIST& aItemsList, const wxPoint aMoveVector );
|
|
|
|
extern void RotateListOfItems( PICKED_ITEMS_LIST& aItemsList, wxPoint& Center );
|
2012-03-15 14:31:16 +00:00
|
|
|
extern void MirrorX( PICKED_ITEMS_LIST& aItemsList, wxPoint& aMirrorPoint );
|
|
|
|
extern void MirrorY( PICKED_ITEMS_LIST& aItemsList, wxPoint& Center );
|
2011-01-20 11:26:10 +00:00
|
|
|
extern void DuplicateItemsInList( SCH_SCREEN* screen,
|
2011-01-07 19:24:24 +00:00
|
|
|
PICKED_ITEMS_LIST& aItemsList,
|
|
|
|
const wxPoint aMoveVector );
|
|
|
|
|
2011-02-03 19:27:28 +00:00
|
|
|
static void DrawMovingBlockOutlines( EDA_DRAW_PANEL* aPanel, wxDC* aDC,
|
|
|
|
const wxPoint& aPosition, bool aErase );
|
2009-07-25 04:53:39 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
int SCH_EDIT_FRAME::ReturnBlockCommand( int key )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2012-05-20 19:18:06 +00:00
|
|
|
int cmd = BLOCK_IDLE;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
|
|
switch( key )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
cmd = key & 0xFF;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
cmd = BLOCK_MOVE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GR_KB_SHIFT:
|
|
|
|
cmd = BLOCK_COPY;
|
|
|
|
break;
|
|
|
|
|
2012-05-20 19:18:06 +00:00
|
|
|
case GR_KB_ALT:
|
|
|
|
cmd = BLOCK_ROTATE;
|
|
|
|
break;
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
case GR_KB_CTRL:
|
|
|
|
cmd = BLOCK_DRAG;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GR_KB_SHIFTCTRL:
|
|
|
|
cmd = BLOCK_DELETE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MOUSE_MIDDLE:
|
|
|
|
cmd = BLOCK_ZOOM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
void SCH_EDIT_FRAME::InitBlockPasteInfos()
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2009-07-25 04:53:39 +00:00
|
|
|
BLOCK_SELECTOR* block = &GetScreen()->m_BlockLocate;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
block->GetItems().CopyList( m_blockItems.GetItems() );
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetMouseCaptureCallback( DrawMovingBlockOutlines );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
void SCH_EDIT_FRAME::HandleBlockPlace( wxDC* DC )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2009-07-25 04:53:39 +00:00
|
|
|
BLOCK_SELECTOR* block = &GetScreen()->m_BlockLocate;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
if( !m_canvas->IsMouseCaptured() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
DisplayError( this, wxT( "HandleBlockPLace() : m_mouseCaptureCallback = NULL" ) );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() == 0 )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
2010-11-03 14:13:15 +00:00
|
|
|
msg.Printf( wxT( "HandleBlockPLace() error : no items to place (cmd %d, state %d)" ),
|
2012-03-26 23:47:08 +00:00
|
|
|
block->GetCommand(), block->GetState() );
|
2007-08-20 01:20:48 +00:00
|
|
|
DisplayError( this, msg );
|
|
|
|
}
|
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
block->SetState( STATE_BLOCK_STOP );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
switch( block->GetCommand() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
|
|
|
case BLOCK_DRAG: /* Drag */
|
|
|
|
case BLOCK_MOVE: /* Move */
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
SaveCopyInUndoList( block->GetItems(), UR_MOVED, block->GetMoveVector() );
|
|
|
|
MoveItemsInList( block->GetItems(), block->GetMoveVector() );
|
2009-07-25 04:53:39 +00:00
|
|
|
block->ClearItemsList();
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BLOCK_COPY: /* Copy */
|
|
|
|
case BLOCK_PRESELECT_MOVE: /* Move with preselection list*/
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
DuplicateItemsInList( GetScreen(), block->GetItems(), block->GetMoveVector() );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
SaveCopyInUndoList( block->GetItems(),
|
|
|
|
( block->GetCommand() == BLOCK_PRESELECT_MOVE ) ? UR_CHANGED : UR_NEW );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
block->ClearItemsList();
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
case BLOCK_PASTE:
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2011-02-11 20:48:13 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
PasteListOfItems( DC );
|
|
|
|
block->ClearItemsList();
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
2012-05-20 19:18:06 +00:00
|
|
|
default: // others are handled by HandleBlockEnd()
|
|
|
|
break;
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
|
2010-09-05 17:01:48 +00:00
|
|
|
OnModify();
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2012-03-24 14:25:30 +00:00
|
|
|
// clear dome flags and pointers
|
2010-11-03 14:13:15 +00:00
|
|
|
GetScreen()->ClearDrawingState();
|
2011-02-11 20:48:13 +00:00
|
|
|
GetScreen()->ClearBlockCommand();
|
2007-08-20 01:20:48 +00:00
|
|
|
GetScreen()->SetCurItem( NULL );
|
2011-12-22 13:28:11 +00:00
|
|
|
GetScreen()->TestDanglingEnds( m_canvas, DC );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2010-11-03 14:13:15 +00:00
|
|
|
DisplayError( this, wxT( "HandleBlockPLace() error: some items left in buffer" ) );
|
2009-07-25 04:53:39 +00:00
|
|
|
block->ClearItemsList();
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->EndMouseCapture( GetToolId(), m_canvas->GetCurrentCursor(), wxEmptyString, false );
|
|
|
|
m_canvas->Refresh();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 11:35:09 +00:00
|
|
|
/*
|
|
|
|
* HandleBlockEnd is called when:
|
|
|
|
* a block is defined
|
|
|
|
* or a schematic iten should be dragged
|
|
|
|
* When the block is defined, all items inside the block should be collected
|
|
|
|
* When a schematic iten should be dragged, only this item should be collected
|
|
|
|
*
|
|
|
|
* In all cases, connected items are collected when a drag command is activated
|
|
|
|
*/
|
2010-12-08 20:12:46 +00:00
|
|
|
bool SCH_EDIT_FRAME::HandleBlockEnd( wxDC* DC )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2010-11-13 11:02:24 +00:00
|
|
|
bool nextcmd = false;
|
|
|
|
bool zoom_command = false;
|
2009-07-25 04:53:39 +00:00
|
|
|
BLOCK_SELECTOR* block = &GetScreen()->m_BlockLocate;
|
2012-11-20 11:35:09 +00:00
|
|
|
bool currItemOnly = false;
|
|
|
|
|
|
|
|
if ( block->GetCommand() == BLOCK_DRAG && GetScreen()->GetCurItem() != NULL )
|
|
|
|
currItemOnly = true;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
BLOCK_STATE_T state = block->GetState();
|
|
|
|
BLOCK_COMMAND_T command = block->GetCommand();
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallEndMouseCapture( DC );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
block->SetState( state );
|
|
|
|
block->SetCommand( command );
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->SetMouseCapture( DrawAndSizingBlockOutlines, AbortBlockCurrentCommand );
|
2013-08-03 05:15:23 +00:00
|
|
|
SetCrossHairPosition( block->GetEnd() );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
if( block->GetCommand() != BLOCK_ABORT )
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->MoveCursorToCrossHair();
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2010-12-20 17:44:25 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
switch( block->GetCommand() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2009-07-25 04:53:39 +00:00
|
|
|
case BLOCK_IDLE:
|
2007-08-20 01:20:48 +00:00
|
|
|
DisplayError( this, wxT( "Error in HandleBlockPLace()" ) );
|
|
|
|
break;
|
|
|
|
|
2012-05-20 19:18:06 +00:00
|
|
|
case BLOCK_ROTATE:
|
|
|
|
GetScreen()->UpdatePickList();
|
|
|
|
DrawAndSizingBlockOutlines( m_canvas, DC, wxDefaultPosition, false );
|
|
|
|
|
|
|
|
if( block->GetCount() )
|
|
|
|
{
|
|
|
|
// Compute the rotation center and put it on grid:
|
|
|
|
wxPoint rotationPoint = block->Centre();
|
2013-08-03 05:15:23 +00:00
|
|
|
rotationPoint = GetNearestGridPosition( rotationPoint );
|
|
|
|
SetCrossHairPosition( rotationPoint );
|
2012-05-20 19:18:06 +00:00
|
|
|
SaveCopyInUndoList( block->GetItems(), UR_ROTATED, rotationPoint );
|
|
|
|
RotateListOfItems( block->GetItems(), rotationPoint );
|
|
|
|
OnModify();
|
|
|
|
}
|
|
|
|
block->ClearItemsList();
|
|
|
|
GetScreen()->TestDanglingEnds( m_canvas, DC );
|
|
|
|
m_canvas->Refresh();
|
|
|
|
break;
|
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
case BLOCK_DRAG: /* Drag */
|
2011-01-21 19:30:59 +00:00
|
|
|
GetScreen()->BreakSegmentsOnJunctions();
|
2010-12-20 17:44:25 +00:00
|
|
|
// fall through
|
2011-01-30 22:22:38 +00:00
|
|
|
|
2012-05-20 19:18:06 +00:00
|
|
|
case BLOCK_MOVE:
|
|
|
|
case BLOCK_COPY:
|
2012-11-20 11:35:09 +00:00
|
|
|
if( currItemOnly )
|
|
|
|
{
|
|
|
|
ITEM_PICKER picker;
|
|
|
|
picker.SetItem( GetScreen()->GetCurItem() );
|
|
|
|
block->PushItem( picker );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
GetScreen()->UpdatePickList();
|
2010-12-20 17:44:25 +00:00
|
|
|
// fall through
|
2011-01-30 22:22:38 +00:00
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
case BLOCK_PRESELECT_MOVE: /* Move with preselection list*/
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2010-11-13 11:02:24 +00:00
|
|
|
nextcmd = true;
|
2011-01-07 19:24:24 +00:00
|
|
|
GetScreen()->SelectBlockItems();
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
|
|
|
m_canvas->SetMouseCaptureCallback( DrawMovingBlockOutlines );
|
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2012-03-26 23:47:08 +00:00
|
|
|
block->SetState( STATE_BLOCK_MOVE );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->SetMouseCapture( NULL, NULL );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BLOCK_DELETE: /* Delete */
|
2011-01-10 16:50:40 +00:00
|
|
|
GetScreen()->UpdatePickList();
|
2011-12-22 13:28:11 +00:00
|
|
|
DrawAndSizingBlockOutlines( m_canvas, DC, wxDefaultPosition, false );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
DeleteItemsInList( m_canvas, block->GetItems() );
|
2010-09-05 17:01:48 +00:00
|
|
|
OnModify();
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2009-07-25 04:53:39 +00:00
|
|
|
block->ClearItemsList();
|
2011-12-22 13:28:11 +00:00
|
|
|
GetScreen()->TestDanglingEnds( m_canvas, DC );
|
|
|
|
m_canvas->Refresh();
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
case BLOCK_SAVE: /* Save */
|
2011-01-10 16:50:40 +00:00
|
|
|
GetScreen()->UpdatePickList();
|
2011-12-22 13:28:11 +00:00
|
|
|
DrawAndSizingBlockOutlines( m_canvas, DC, wxDefaultPosition, false );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
wxPoint move_vector = -GetScreen()->m_BlockLocate.GetLastCursorPosition();
|
|
|
|
copyBlockItems( block->GetItems() );
|
|
|
|
MoveItemsInList( m_blockItems.GetItems(), move_vector );
|
2010-11-13 11:02:24 +00:00
|
|
|
}
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
block->ClearItemsList();
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BLOCK_PASTE:
|
2012-03-26 23:47:08 +00:00
|
|
|
block->SetState( STATE_BLOCK_MOVE );
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BLOCK_ZOOM: /* Window Zoom */
|
2010-11-13 11:02:24 +00:00
|
|
|
zoom_command = true;
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
2012-05-20 19:18:06 +00:00
|
|
|
default:
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-12-20 17:44:25 +00:00
|
|
|
}
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
if( block->GetCommand() == BLOCK_ABORT )
|
2009-07-25 04:53:39 +00:00
|
|
|
{
|
2010-11-03 14:13:15 +00:00
|
|
|
GetScreen()->ClearDrawingState();
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->Refresh();
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
|
2010-11-13 11:02:24 +00:00
|
|
|
if( ! nextcmd )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
block->SetState( STATE_NO_BLOCK );
|
|
|
|
block->SetCommand( BLOCK_IDLE );
|
2007-08-20 01:20:48 +00:00
|
|
|
GetScreen()->SetCurItem( NULL );
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->EndMouseCapture( GetToolId(), m_canvas->GetCurrentCursor(), wxEmptyString,
|
2012-03-26 23:47:08 +00:00
|
|
|
false );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( zoom_command )
|
2009-07-25 04:53:39 +00:00
|
|
|
Window_Zoom( GetScreen()->m_BlockLocate );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-01-30 22:22:38 +00:00
|
|
|
return nextcmd;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
void SCH_EDIT_FRAME::HandleBlockEndByPopUp( int Command, wxDC* DC )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2010-09-06 09:10:12 +00:00
|
|
|
bool blockCmdFinished = true; /* set to false for block command which
|
|
|
|
* have a next step
|
|
|
|
* and true if the block command is finished here
|
|
|
|
*/
|
2009-07-25 04:53:39 +00:00
|
|
|
BLOCK_SELECTOR* block = &GetScreen()->m_BlockLocate;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2010-09-06 09:10:12 +00:00
|
|
|
// can convert only a block move command to an other command
|
2012-03-26 23:47:08 +00:00
|
|
|
if( block->GetCommand() != BLOCK_MOVE )
|
2007-08-20 01:20:48 +00:00
|
|
|
return;
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2010-09-06 09:10:12 +00:00
|
|
|
// Useless if the new command is block move because we are already in block move.
|
2007-08-20 01:20:48 +00:00
|
|
|
if( Command == BLOCK_MOVE )
|
|
|
|
return;
|
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
block->SetCommand( (BLOCK_COMMAND_T) Command );
|
2007-08-20 01:20:48 +00:00
|
|
|
block->SetMessageBlock( this );
|
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
switch( block->GetCommand() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
|
|
|
case BLOCK_COPY: /* move to copy */
|
2012-03-26 23:47:08 +00:00
|
|
|
block->SetState( STATE_BLOCK_MOVE );
|
2010-09-06 09:10:12 +00:00
|
|
|
blockCmdFinished = false;
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BLOCK_DRAG: /* move to Drag */
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2010-09-06 09:10:12 +00:00
|
|
|
// Clear list of items to move, and rebuild it with items to drag:
|
2009-07-25 04:53:39 +00:00
|
|
|
block->ClearItemsList();
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
GetScreen()->BreakSegmentsOnJunctions();
|
2011-01-10 16:50:40 +00:00
|
|
|
GetScreen()->UpdatePickList();
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2010-09-06 09:10:12 +00:00
|
|
|
blockCmdFinished = false;
|
2011-01-07 19:24:24 +00:00
|
|
|
GetScreen()->SelectBlockItems();
|
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
block->SetState( STATE_BLOCK_MOVE );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BLOCK_DELETE: /* move to Delete */
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
DeleteItemsInList( m_canvas, block->GetItems() );
|
2010-09-05 17:01:48 +00:00
|
|
|
OnModify();
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
GetScreen()->TestDanglingEnds( m_canvas, DC );
|
|
|
|
m_canvas->Refresh();
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
2010-09-06 09:10:12 +00:00
|
|
|
case BLOCK_SAVE: /* Save list in paste buffer*/
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
wxPoint move_vector = -GetScreen()->m_BlockLocate.GetLastCursorPosition();
|
|
|
|
copyBlockItems( block->GetItems() );
|
|
|
|
MoveItemsInList( m_blockItems.GetItems(), move_vector );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BLOCK_ZOOM: /* Window Zoom */
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallEndMouseCapture( DC );
|
2012-02-28 20:14:17 +00:00
|
|
|
m_canvas->SetCursor( (wxStockCursor) m_canvas->GetDefaultCursor() );
|
2009-07-25 04:53:39 +00:00
|
|
|
Window_Zoom( GetScreen()->m_BlockLocate );
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case BLOCK_ROTATE:
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2011-02-11 20:48:13 +00:00
|
|
|
|
2010-09-05 17:01:48 +00:00
|
|
|
if( block->GetCount() )
|
|
|
|
{
|
|
|
|
/* Compute the rotation center and put it on grid */
|
|
|
|
wxPoint rotationPoint = block->Centre();
|
2013-08-03 05:15:23 +00:00
|
|
|
rotationPoint = GetNearestGridPosition( rotationPoint );
|
|
|
|
SetCrossHairPosition( rotationPoint );
|
2012-03-26 23:47:08 +00:00
|
|
|
SaveCopyInUndoList( block->GetItems(), UR_ROTATED, rotationPoint );
|
|
|
|
RotateListOfItems( block->GetItems(), rotationPoint );
|
2010-09-05 17:01:48 +00:00
|
|
|
OnModify();
|
|
|
|
}
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
GetScreen()->TestDanglingEnds( m_canvas, DC );
|
|
|
|
m_canvas->Refresh();
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BLOCK_MIRROR_X:
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2010-09-05 17:01:48 +00:00
|
|
|
if( block->GetCount() )
|
|
|
|
{
|
|
|
|
/* Compute the mirror center and put it on grid */
|
|
|
|
wxPoint mirrorPoint = block->Centre();
|
2013-08-03 05:15:23 +00:00
|
|
|
mirrorPoint = GetNearestGridPosition( mirrorPoint );
|
|
|
|
SetCrossHairPosition( mirrorPoint );
|
2012-03-26 23:47:08 +00:00
|
|
|
SaveCopyInUndoList( block->GetItems(), UR_MIRRORED_X, mirrorPoint );
|
|
|
|
MirrorX( block->GetItems(), mirrorPoint );
|
2010-09-05 17:01:48 +00:00
|
|
|
OnModify();
|
|
|
|
}
|
2012-03-26 23:47:08 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
GetScreen()->TestDanglingEnds( m_canvas, DC );
|
|
|
|
m_canvas->Refresh();
|
2010-09-05 17:01:48 +00:00
|
|
|
break;
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
case BLOCK_MIRROR_Y:
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
if( block->GetCount() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2009-11-03 13:26:31 +00:00
|
|
|
/* Compute the mirror center and put it on grid */
|
2009-07-26 17:16:42 +00:00
|
|
|
wxPoint mirrorPoint = block->Centre();
|
2013-08-03 05:15:23 +00:00
|
|
|
mirrorPoint = GetNearestGridPosition( mirrorPoint );
|
|
|
|
SetCrossHairPosition( mirrorPoint );
|
2012-03-26 23:47:08 +00:00
|
|
|
SaveCopyInUndoList( block->GetItems(), UR_MIRRORED_Y, mirrorPoint );
|
|
|
|
MirrorY( block->GetItems(), mirrorPoint );
|
2010-09-05 17:01:48 +00:00
|
|
|
OnModify();
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2010-12-08 20:12:46 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
GetScreen()->TestDanglingEnds( m_canvas, DC );
|
|
|
|
m_canvas->Refresh();
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-09-06 09:10:12 +00:00
|
|
|
if( blockCmdFinished )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
block->Clear();
|
2007-08-20 01:20:48 +00:00
|
|
|
GetScreen()->SetCurItem( NULL );
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->EndMouseCapture( GetToolId(), m_canvas->GetCurrentCursor(), wxEmptyString,
|
2012-03-26 23:47:08 +00:00
|
|
|
false );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
/* Traces the outline of the search block structures
|
|
|
|
* The entire block follows the cursor
|
2007-08-20 01:20:48 +00:00
|
|
|
*/
|
2011-02-03 19:27:28 +00:00
|
|
|
static void DrawMovingBlockOutlines( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aPosition,
|
|
|
|
bool aErase )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2011-02-03 19:27:28 +00:00
|
|
|
BASE_SCREEN* screen = aPanel->GetScreen();
|
2011-03-03 19:08:13 +00:00
|
|
|
BLOCK_SELECTOR* block = &screen->m_BlockLocate;
|
2009-07-25 04:53:39 +00:00
|
|
|
SCH_ITEM* schitem;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
/* Erase old block contents. */
|
2011-02-03 19:27:28 +00:00
|
|
|
if( aErase )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
block->Draw( aPanel, aDC, block->GetMoveVector(), g_XorMode, block->GetColor() );
|
2010-12-08 20:12:46 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
for( unsigned ii = 0; ii < block->GetCount(); ii++ )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
schitem = (SCH_ITEM*) block->GetItem( ii );
|
|
|
|
schitem->Draw( aPanel, aDC, block->GetMoveVector(), g_XorMode, g_GhostColor );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
/* Repaint new view. */
|
2013-08-03 05:15:23 +00:00
|
|
|
block->SetMoveVector( aPanel->GetParent()->GetCrossHairPosition() - block->GetLastCursorPosition() );
|
2012-03-26 23:47:08 +00:00
|
|
|
block->Draw( aPanel, aDC, block->GetMoveVector(), g_XorMode, block->GetColor() );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
for( unsigned ii = 0; ii < block->GetCount(); ii++ )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
schitem = (SCH_ITEM*) block->GetItem( ii );
|
|
|
|
schitem->Draw( aPanel, aDC, block->GetMoveVector(), g_XorMode, g_GhostColor );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-07 19:24:24 +00:00
|
|
|
void SCH_EDIT_FRAME::copyBlockItems( PICKED_ITEMS_LIST& aItemsList )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2011-01-07 19:24:24 +00:00
|
|
|
m_blockItems.ClearListAndDeleteItems(); // delete previous saved list, if exists
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
for( unsigned ii = 0; ii < aItemsList.GetCount(); ii++ )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2010-12-23 13:16:06 +00:00
|
|
|
// Clear m_Flag member of selected items:
|
2011-03-10 19:36:30 +00:00
|
|
|
aItemsList.GetPickedItem( ii )->ClearFlags();
|
2012-03-26 23:47:08 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
/* Make a copy of the original picked item. */
|
2011-03-10 19:36:30 +00:00
|
|
|
SCH_ITEM* copy = DuplicateStruct( (SCH_ITEM*) aItemsList.GetPickedItem( ii ) );
|
|
|
|
copy->SetParent( NULL );
|
|
|
|
|
|
|
|
// In list the wrapper is owner of the schematic item, we can use the UR_DELETED
|
|
|
|
// status for the picker because pickers with this status are owner of the picked item
|
|
|
|
// (or TODO ?: create a new status like UR_DUPLICATE)
|
|
|
|
ITEM_PICKER item( copy, UR_DELETED );
|
|
|
|
|
2011-01-07 19:24:24 +00:00
|
|
|
m_blockItems.PushItem( item );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
void SCH_EDIT_FRAME::PasteListOfItems( wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-07-25 04:53:39 +00:00
|
|
|
SCH_ITEM* Struct;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-01-07 19:24:24 +00:00
|
|
|
if( m_blockItems.GetCount() == 0 )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
|
|
|
DisplayError( this, wxT( "No struct to paste" ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
PICKED_ITEMS_LIST picklist;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-01-07 19:24:24 +00:00
|
|
|
for( unsigned ii = 0; ii < m_blockItems.GetCount(); ii++ )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-26 23:47:08 +00:00
|
|
|
Struct = DuplicateStruct( (SCH_ITEM*) m_blockItems.GetItem( ii ) );
|
2011-03-10 19:36:30 +00:00
|
|
|
|
|
|
|
// Creates data, and push it as new data in undo item list buffer
|
|
|
|
ITEM_PICKER picker( Struct, UR_NEW );
|
2009-07-25 04:53:39 +00:00
|
|
|
picklist.PushItem( picker );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-07-25 04:53:39 +00:00
|
|
|
// Clear annotation and init new time stamp for the new components:
|
2010-12-10 19:47:44 +00:00
|
|
|
if( Struct->Type() == SCH_COMPONENT_T )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2011-12-12 08:37:05 +00:00
|
|
|
( (SCH_COMPONENT*) Struct )->SetTimeStamp( GetNewTimeStamp() );
|
2009-07-25 04:53:39 +00:00
|
|
|
( (SCH_COMPONENT*) Struct )->ClearAnnotation( NULL );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2011-03-10 19:36:30 +00:00
|
|
|
|
2011-01-20 11:26:10 +00:00
|
|
|
SetSchItemParent( Struct, GetScreen() );
|
2011-12-22 13:28:11 +00:00
|
|
|
Struct->Draw( m_canvas, DC, wxPoint( 0, 0 ), GR_DEFAULT_DRAWMODE );
|
2012-02-26 18:39:39 +00:00
|
|
|
GetScreen()->Append( Struct );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
|
2009-07-26 17:16:42 +00:00
|
|
|
SaveCopyInUndoList( picklist, UR_NEW );
|
2009-07-25 04:53:39 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
MoveItemsInList( picklist, GetScreen()->m_BlockLocate.GetMoveVector() );
|
2009-07-25 04:53:39 +00:00
|
|
|
|
2011-03-10 19:36:30 +00:00
|
|
|
// Clear flags for all items.
|
2010-11-03 14:13:15 +00:00
|
|
|
GetScreen()->ClearDrawingState();
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2010-09-05 17:01:48 +00:00
|
|
|
OnModify();
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
|
|
return;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|