kicad/eeschema/libedit_onleftclick.cpp

250 lines
6.8 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"
#include "eeschema_id.h"
2007-05-06 16:03:28 +00:00
#include "program.h"
#include "general.h"
#include "protos.h"
#include "libeditfrm.h"
#include "class_libentry.h"
2007-05-06 16:03:28 +00:00
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
{
LIB_DRAW_ITEM* DrawEntry = m_drawItem;
2007-09-15 04:25:54 +00:00
if( m_component == 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( m_component );
2007-09-15 04:25:54 +00:00
switch( DrawEntry->Type() )
{
case COMPONENT_FIELD_DRAW_TYPE:
PlaceField( DC, (LIB_FIELD*) DrawEntry );
2007-09-15 04:25:54 +00:00
DrawEntry = NULL;
break;
default:
EndDrawGraphicItem( DC );
break;
}
}
else
{
DrawEntry =
m_component->LocateDrawItem( m_unit, m_convert, TYPE_NOT_INIT,
GetScreen()->m_MousePosition );
2007-09-15 04:25:54 +00:00
if( DrawEntry == NULL )
{
DrawEntry =
m_component->LocateDrawItem( m_unit, m_convert,
TYPE_NOT_INIT,
GetScreen()->m_Curseur );
2007-09-15 04:25:54 +00:00
}
if( DrawEntry )
DrawEntry->DisplayInfo( this );
2007-09-15 04:25:54 +00:00
else
DisplayCmpDoc();
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:
if( m_drawItem == NULL || m_drawItem->m_Flags == 0 )
2007-09-15 04:25:54 +00:00
{
CreatePin( DC );
}
else
{
SaveCopyInUndoList( m_component );
2007-09-15 04:25:54 +00:00
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( m_drawItem == NULL || m_drawItem->m_Flags == 0 )
2007-09-15 04:25:54 +00:00
{
m_drawItem = CreateGraphicItem( m_component, DC );
2007-09-15 04:25:54 +00:00
}
else if( m_drawItem )
2007-09-15 04:25:54 +00:00
{
if( m_drawItem->m_Flags & IS_NEW )
2007-09-15 04:25:54 +00:00
GraphicItemBeginDraw( DC );
else
{
SaveCopyInUndoList( m_component );
2007-09-15 04:25:54 +00:00
EndDrawGraphicItem( DC );
}
}
break;
case ID_LIBEDIT_DELETE_ITEM_BUTT:
DrawEntry =
m_component->LocateDrawItem( m_unit, m_convert, TYPE_NOT_INIT,
GetScreen()->m_MousePosition );
2007-09-15 04:25:54 +00:00
if( DrawEntry == NULL )
{
DrawEntry =
m_component->LocateDrawItem( m_unit, m_convert,
TYPE_NOT_INIT,
GetScreen()->m_Curseur );
2007-09-15 04:25:54 +00:00
}
if( DrawEntry == NULL )
{
DisplayCmpDoc();
break;
}
SaveCopyInUndoList( m_component );
2007-09-15 04:25:54 +00:00
if( DrawEntry->Type() == COMPONENT_PIN_DRAW_TYPE )
DeletePin( DC, m_component, (LIB_PIN*) DrawEntry );
2007-09-15 04:25:54 +00:00
else
m_component->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( m_component );
2007-09-15 04:25:54 +00:00
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
{
wxPoint pos = GetPosition();
LIB_DRAW_ITEM* DrawEntry = m_drawItem;
2007-09-15 04:25:54 +00:00
if( m_component == NULL )
2007-09-15 04:25:54 +00:00
return;
if( ( DrawEntry == NULL ) || ( DrawEntry->m_Flags == 0 ) )
{ // We can locate an item
DrawEntry = m_drawItem =
m_component->LocateDrawItem( m_unit, m_convert, TYPE_NOT_INIT,
GetScreen()->m_MousePosition );
2007-09-15 04:25:54 +00:00
if( DrawEntry == NULL )
{
DrawEntry = m_drawItem =
m_component->LocateDrawItem( m_unit, m_convert, TYPE_NOT_INIT,
GetScreen()->m_Curseur );
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;
m_drawItem = DrawEntry;
2007-09-15 04:25:54 +00:00
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
{
wxCommandEvent cmd( wxEVT_COMMAND_MENU_SELECTED );
cmd.SetId( ID_LIBEDIT_EDIT_PIN );
GetEventHandler()->ProcessEvent( cmd );
2007-09-15 04:25:54 +00:00
}
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, (LIB_FIELD*) DrawEntry );
2007-09-15 04:25:54 +00:00
}
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
}