kicad/eeschema/libedit_onleftclick.cpp

300 lines
9.2 KiB
C++
Raw Normal View History

2007-09-15 04:25:54 +00:00
/*****************************************/
/* EESchema - libedit_onleftclick.cpp */
2007-09-15 04:25:54 +00:00
/*****************************************/
2007-05-06 16:03:28 +00:00
/* Library editor commands created by a mouse left button simple or double click
2007-09-15 04:25:54 +00:00
*/
2007-05-06 16:03:28 +00:00
#include "fctsys.h"
#include "gr_basic.h"
#include "common.h"
#include "class_drawpanel.h"
#include "confirm.h"
2007-05-06 16:03:28 +00:00
#include "program.h"
#include "libcmp.h"
#include "general.h"
#include "protos.h"
#include "id.h"
2007-09-15 04:25:54 +00:00
void WinEDA_LibeditFrame::OnLeftClick( wxDC* DC, const wxPoint& MousePos )
2007-05-06 16:03:28 +00:00
{
2007-09-15 04:25:54 +00:00
LibEDA_BaseStruct* DrawEntry = CurrentDrawItem;
if( CurrentLibEntry == NULL ) // No component loaded !
2007-09-15 04:25:54 +00:00
return;
if( m_ID_current_state == 0 )
{
if( DrawEntry && DrawEntry->m_Flags )
{
SaveCopyInUndoList( CurrentLibEntry );
switch( DrawEntry->Type() )
{
case COMPONENT_PIN_DRAW_TYPE:
PlacePin( DC );
break;
case COMPONENT_FIELD_DRAW_TYPE:
PlaceField( DC, (LibDrawField*) DrawEntry );
DrawEntry = NULL;
break;
default:
EndDrawGraphicItem( DC );
break;
}
}
else
{
DrawEntry = LocatePin( GetScreen()->m_MousePosition, CurrentLibEntry,
2007-09-15 04:25:54 +00:00
CurrentUnit, CurrentConvert );
if( DrawEntry == NULL )
{
DrawEntry = LocateDrawItem( (SCH_SCREEN*)GetScreen(),
GetScreen()->m_MousePosition,
2007-09-15 04:25:54 +00:00
CurrentLibEntry, CurrentUnit,
CurrentConvert,
LOCATE_ALL_DRAW_ITEM );
2007-09-15 04:25:54 +00:00
}
if( DrawEntry == NULL )
DrawEntry = LocatePin( GetScreen()->m_Curseur, CurrentLibEntry,
2007-09-15 04:25:54 +00:00
CurrentUnit, CurrentConvert );
if( DrawEntry == NULL )
{
DrawEntry = LocateDrawItem( (SCH_SCREEN*)GetScreen(),
GetScreen()->m_Curseur,
2007-09-15 04:25:54 +00:00
CurrentLibEntry, CurrentUnit,
CurrentConvert,
LOCATE_ALL_DRAW_ITEM );
2007-09-15 04:25:54 +00:00
}
if( DrawEntry )
DrawEntry->DisplayInfo( this );
2007-09-15 04:25:54 +00:00
else
{
if( CurrentAliasName.IsEmpty() )
DisplayCmpDoc( CurrentAliasName );
else
DisplayCmpDoc( CurrentLibEntry->GetName() );
2007-09-15 04:25:54 +00:00
}
}
}
if( m_ID_current_state )
{
switch( m_ID_current_state )
{
case ID_NO_SELECT_BUTT:
break;
case ID_LIBEDIT_PIN_BUTT:
2008-08-25 12:41:44 +00:00
if( CurrentDrawItem == NULL || CurrentDrawItem->m_Flags == 0 )
2007-09-15 04:25:54 +00:00
{
CreatePin( DC );
}
else
{
SaveCopyInUndoList( CurrentLibEntry );
PlacePin( DC );
}
break;
case ID_LIBEDIT_BODY_LINE_BUTT:
case ID_LIBEDIT_BODY_ARC_BUTT:
case ID_LIBEDIT_BODY_CIRCLE_BUTT:
case ID_LIBEDIT_BODY_RECT_BUTT:
case ID_LIBEDIT_BODY_TEXT_BUTT:
if( CurrentDrawItem == NULL || CurrentDrawItem->m_Flags == 0 )
2007-09-15 04:25:54 +00:00
{
CurrentDrawItem = CreateGraphicItem( CurrentLibEntry, DC );
2007-09-15 04:25:54 +00:00
}
else if( CurrentDrawItem )
2007-09-15 04:25:54 +00:00
{
if( CurrentDrawItem->m_Flags & IS_NEW )
GraphicItemBeginDraw( DC );
else
{
SaveCopyInUndoList( CurrentLibEntry );
EndDrawGraphicItem( DC );
}
}
break;
case ID_LIBEDIT_DELETE_ITEM_BUTT:
DrawEntry = LocatePin( GetScreen()->m_MousePosition, CurrentLibEntry,
2007-09-15 04:25:54 +00:00
CurrentUnit, CurrentConvert );
if( DrawEntry == NULL )
{
DrawEntry = LocateDrawItem( (SCH_SCREEN*)GetScreen(),
GetScreen()->m_MousePosition,
2007-09-15 04:25:54 +00:00
CurrentLibEntry, CurrentUnit,
CurrentConvert,
LOCATE_ALL_DRAW_ITEM );
2007-09-15 04:25:54 +00:00
}
if( DrawEntry == NULL )
DrawEntry = LocatePin( GetScreen()->m_Curseur, CurrentLibEntry,
2007-09-15 04:25:54 +00:00
CurrentUnit, CurrentConvert );
if( DrawEntry == NULL )
{
DrawEntry = LocateDrawItem( (SCH_SCREEN*)GetScreen(),
GetScreen()->m_Curseur,
2007-09-15 04:25:54 +00:00
CurrentLibEntry, CurrentUnit,
CurrentConvert,
LOCATE_ALL_DRAW_ITEM );
2007-09-15 04:25:54 +00:00
}
if( DrawEntry == NULL )
{
if( CurrentAliasName.IsEmpty() )
DisplayCmpDoc( CurrentLibEntry->GetName() );
else
DisplayCmpDoc( CurrentAliasName );
2007-09-15 04:25:54 +00:00
break;
}
SaveCopyInUndoList( CurrentLibEntry );
if( DrawEntry->Type() == COMPONENT_PIN_DRAW_TYPE )
DeletePin( DC, CurrentLibEntry, (LibDrawPin*) DrawEntry );
else
CurrentLibEntry->RemoveDrawItem( DrawEntry, DrawPanel, DC );
2007-09-15 04:25:54 +00:00
DrawEntry = NULL;
GetScreen()->SetModify();
2007-09-15 04:25:54 +00:00
break;
case ID_LIBEDIT_ANCHOR_ITEM_BUTT:
SaveCopyInUndoList( CurrentLibEntry );
PlaceAncre();
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
break;
default:
DisplayError( this,
wxT( "WinEDA_LibeditFrame::OnLeftClick error" ) );
2007-09-15 04:25:54 +00:00
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
break;
}
}
2007-05-06 16:03:28 +00:00
}
/*
* Called on a double click:
* If an editable item (field, pin, graphic):
* Call the suitable dialog editor.
2007-09-15 04:25:54 +00:00
*/
void WinEDA_LibeditFrame::OnLeftDClick( wxDC* DC, const wxPoint& MousePos )
2007-05-06 16:03:28 +00:00
{
2007-09-15 04:25:54 +00:00
wxPoint pos = GetPosition();
LibEDA_BaseStruct* DrawEntry = CurrentDrawItem;
if( CurrentLibEntry == NULL )
return;
if( ( DrawEntry == NULL ) || ( DrawEntry->m_Flags == 0 ) )
{ // We can locate an item
DrawEntry = LocatePin( GetScreen()->m_MousePosition, CurrentLibEntry,
2007-09-15 04:25:54 +00:00
CurrentUnit, CurrentConvert );
if( DrawEntry == NULL )
DrawEntry = LocatePin( GetScreen()->m_Curseur, CurrentLibEntry,
2007-09-15 04:25:54 +00:00
CurrentUnit, CurrentConvert );
if( DrawEntry == NULL )
{
DrawEntry = CurrentDrawItem =
LocateDrawItem( (SCH_SCREEN*) GetScreen(),
GetScreen()->m_MousePosition,
CurrentLibEntry, CurrentUnit,
CurrentConvert, LOCATE_ALL_DRAW_ITEM );
2007-09-15 04:25:54 +00:00
}
if( DrawEntry == NULL )
{
DrawEntry = CurrentDrawItem =
LocateDrawItem( (SCH_SCREEN*) GetScreen(),
GetScreen()->m_Curseur,
CurrentLibEntry, CurrentUnit,
CurrentConvert, LOCATE_ALL_DRAW_ITEM );
2007-09-15 04:25:54 +00:00
}
if( DrawEntry == NULL )
{
DrawEntry = CurrentDrawItem =
(LibEDA_BaseStruct*) LocateField( CurrentLibEntry );
2007-09-15 04:25:54 +00:00
}
if( DrawEntry == NULL )
{
EditComponentProperties();
2007-09-15 04:25:54 +00:00
}
}
if( DrawEntry )
DrawEntry->DisplayInfo( this );
2007-09-15 04:25:54 +00:00
else
return;
CurrentDrawItem = DrawEntry;
DrawPanel->m_IgnoreMouseEvents = TRUE;
switch( DrawEntry->Type() )
{
case COMPONENT_PIN_DRAW_TYPE:
if( DrawEntry->m_Flags == 0 )
2007-09-15 04:25:54 +00:00
{
InstallPineditFrame( this, DC, pos );
}
break;
case COMPONENT_ARC_DRAW_TYPE:
case COMPONENT_CIRCLE_DRAW_TYPE:
case COMPONENT_RECT_DRAW_TYPE:
if( DrawEntry->m_Flags == 0 )
{
EditGraphicSymbol( DC, DrawEntry );
}
break;
case COMPONENT_LINE_DRAW_TYPE:
case COMPONENT_POLYLINE_DRAW_TYPE:
if( DrawEntry->m_Flags == 0 )
{
EditGraphicSymbol( DC, DrawEntry );
}
else if( DrawEntry->m_Flags & IS_NEW )
{
EndDrawGraphicItem( DC );
}
break;
case COMPONENT_GRAPHIC_TEXT_DRAW_TYPE:
if( DrawEntry->m_Flags == 0 )
{
EditSymbolText( DC, DrawEntry );
}
break;
case COMPONENT_FIELD_DRAW_TYPE:
if( DrawEntry->m_Flags == 0 )
{
EditField( DC, (LibDrawField*) DrawEntry );
}
break;
default:
wxString msg;
msg.Printf( wxT( "WinEDA_LibeditFrame::OnLeftDClick Error: unknown \
StructType %d" ),
DrawEntry->Type() );
2007-09-15 04:25:54 +00:00
DisplayError( this, msg );
break;
}
DrawPanel->MouseToCursorSchema();
DrawPanel->m_IgnoreMouseEvents = FALSE;
2007-05-06 16:03:28 +00:00
}