2009-11-03 13:26:31 +00:00
|
|
|
/*****************************************************/
|
|
|
|
/* Code to handle manipulation on bus entry objects. */
|
|
|
|
/*****************************************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.h"
|
|
|
|
#include "common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
2009-09-22 12:27:57 +00:00
|
|
|
#include "eeschema_id.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "confirm.h"
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "program.h"
|
|
|
|
#include "general.h"
|
|
|
|
#include "protos.h"
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
static int s_LastShape = '\\';
|
2007-05-06 16:03:28 +00:00
|
|
|
static wxPoint ItemInitialPosition;
|
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
static void ExitBusEntry( WinEDA_DrawPanel* Panel, wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-12-02 21:44:03 +00:00
|
|
|
/* Exit bus entry mode. */
|
|
|
|
SCH_BUS_ENTRY* BusEntry =
|
|
|
|
(SCH_BUS_ENTRY*) Panel->GetScreen()->GetCurItem();
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
if( BusEntry )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
|
|
|
RedrawOneStruct( Panel, DC, BusEntry, g_XorMode );
|
|
|
|
if( BusEntry->m_Flags & IS_NEW )
|
|
|
|
{
|
|
|
|
delete BusEntry;
|
|
|
|
Panel->GetScreen()->SetCurItem( NULL );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BusEntry->m_Pos = ItemInitialPosition;
|
|
|
|
RedrawOneStruct( Panel, DC, BusEntry, GR_DEFAULT_DRAWMODE );
|
|
|
|
BusEntry->m_Flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_ItemToRepeat = NULL;
|
|
|
|
Panel->ManageCurseur = NULL;
|
|
|
|
Panel->ForceCloseManageCurseur = NULL;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
|
|
static void ShowWhileMoving( WinEDA_DrawPanel* panel, wxDC* DC, bool erase )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-12-02 21:44:03 +00:00
|
|
|
/* Drawing of the bus entry segment" while moving the cursor. */
|
|
|
|
BASE_SCREEN* screen = panel->GetScreen();
|
|
|
|
SCH_BUS_ENTRY* BusEntry = (SCH_BUS_ENTRY*) screen->GetCurItem();
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
|
|
if( BusEntry == NULL )
|
|
|
|
return;
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
/* Erase the last segment position. */
|
2007-08-20 01:20:48 +00:00
|
|
|
if( erase )
|
|
|
|
RedrawOneStruct( panel, DC, BusEntry, g_XorMode );
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
/* Redraw at the new position. */
|
2007-08-20 01:20:48 +00:00
|
|
|
BusEntry->m_Pos = screen->m_Curseur;
|
|
|
|
RedrawOneStruct( panel, DC, BusEntry, g_XorMode );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
SCH_BUS_ENTRY* WinEDA_SchematicFrame::CreateBusEntry( wxDC* DC,
|
|
|
|
int entry_type )
|
2009-11-03 13:26:31 +00:00
|
|
|
{
|
2009-12-02 21:44:03 +00:00
|
|
|
/* Create a new bus entry, and prepare moving function (for later place it)
|
|
|
|
*/
|
|
|
|
SCH_BUS_ENTRY* BusEntry = new SCH_BUS_ENTRY( GetScreen()->m_Curseur,
|
|
|
|
s_LastShape,
|
|
|
|
entry_type );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
BusEntry->m_Flags = IS_NEW;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
DrawPanel->CursorOff( DC ); // Erase schematic cursor
|
|
|
|
RedrawOneStruct( DrawPanel, DC, BusEntry, g_XorMode );
|
|
|
|
DrawPanel->CursorOn( DC ); // Display schematic cursor
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-02-18 20:07:29 +00:00
|
|
|
OnModify( );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
|
|
StartMoveBusEntry( BusEntry, DC );
|
|
|
|
return BusEntry;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
void WinEDA_SchematicFrame::StartMoveBusEntry( SCH_BUS_ENTRY* BusEntry,
|
|
|
|
wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
if( BusEntry == NULL )
|
|
|
|
return;
|
|
|
|
|
2010-03-24 18:26:04 +00:00
|
|
|
if( (BusEntry->m_Flags & IS_NEW) == 0 ) // not already in edit, save shape
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
|
|
|
delete g_ItemToUndoCopy;
|
|
|
|
g_ItemToUndoCopy = BusEntry->GenCopy();
|
|
|
|
}
|
|
|
|
|
|
|
|
BusEntry->m_Flags |= IS_MOVED;
|
|
|
|
|
|
|
|
ItemInitialPosition = BusEntry->m_Pos;
|
|
|
|
|
|
|
|
DrawPanel->CursorOff( DC );
|
|
|
|
GetScreen()->m_Curseur = BusEntry->m_Pos;
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
|
|
|
GetScreen()->SetCurItem( BusEntry );
|
|
|
|
DrawPanel->ManageCurseur = ShowWhileMoving;
|
|
|
|
DrawPanel->ForceCloseManageCurseur = ExitBusEntry;
|
|
|
|
|
|
|
|
DrawPanel->CursorOn( DC );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/* set the shape of BusEntry (shape = / or \ )
|
2007-08-20 01:20:48 +00:00
|
|
|
*/
|
2009-12-02 21:44:03 +00:00
|
|
|
void WinEDA_SchematicFrame::SetBusEntryShape( wxDC* DC,
|
|
|
|
SCH_BUS_ENTRY* BusEntry,
|
|
|
|
int entry_shape )
|
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
if( BusEntry == NULL )
|
|
|
|
return;
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
if( BusEntry->Type() != DRAW_BUSENTRY_STRUCT_TYPE )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
|
|
|
DisplayError( this, wxT( "SetBusEntryType: Bad StructType" ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Put old item in undo list if it is not currently in edit */
|
|
|
|
if( BusEntry->m_Flags == 0 )
|
2009-07-26 17:16:42 +00:00
|
|
|
SaveCopyInUndoList( BusEntry, UR_CHANGED );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
|
|
|
RedrawOneStruct( DrawPanel, DC, BusEntry, g_XorMode );
|
|
|
|
|
|
|
|
switch( entry_shape )
|
|
|
|
{
|
|
|
|
case '\\':
|
|
|
|
s_LastShape = '\\';
|
|
|
|
BusEntry->m_Size.y = 100;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '/':
|
|
|
|
s_LastShape = '/';
|
|
|
|
BusEntry->m_Size.y = -100;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
TestDanglingEnds( GetScreen()->EEDrawList, NULL );
|
|
|
|
RedrawOneStruct( DrawPanel, DC, BusEntry, g_XorMode );
|
2010-02-18 20:07:29 +00:00
|
|
|
OnModify( );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
int WinEDA_SchematicFrame::GetBusEntryShape( SCH_BUS_ENTRY* BusEntry )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
int entry_shape = '\\';
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
if( BusEntry->m_Size.y < 0 )
|
|
|
|
entry_shape = '/';
|
|
|
|
return entry_shape;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|