kicad/pcbnew/onleftclick.cpp

535 lines
16 KiB
C++
Raw Normal View History

2007-09-29 15:30:16 +00:00
/**************************************************************/
/* onleftclick.cpp: */
/* function called when the left button is clicked (released) */
/* function called when the left button is double clicked */
/**************************************************************/
#include "fctsys.h"
#include "common.h"
#include "class_drawpanel.h"
#include "confirm.h"
2007-09-29 15:30:16 +00:00
#include "pcbnew.h"
2009-07-30 11:04:07 +00:00
#include "wxPcbStruct.h"
2007-09-29 15:30:16 +00:00
#include "pcbnew_id.h"
2007-09-29 15:30:16 +00:00
/* Handle the left buttom mouse click, when a tool is active
*/
void WinEDA_PcbFrame::OnLeftClick( wxDC* aDC, const wxPoint& aPosition )
2007-09-29 15:30:16 +00:00
{
BOARD_ITEM* DrawStruct = GetCurItem();
bool exit = false;
bool no_tool = m_ID_current_state == 0 || m_ID_current_state == ID_PCB_NO_TOOL;
2007-09-29 15:30:16 +00:00
if( no_tool || ( DrawStruct && DrawStruct->m_Flags ) )
2007-09-29 15:30:16 +00:00
{
DrawPanel->m_AutoPAN_Request = false;
if( DrawStruct && DrawStruct->m_Flags ) // Command in progress
2007-09-29 15:30:16 +00:00
{
DrawPanel->m_IgnoreMouseEvents = true;
DrawPanel->CrossHairOff( aDC );
2007-09-29 15:30:16 +00:00
switch( DrawStruct->Type() )
2007-09-29 15:30:16 +00:00
{
case TYPE_ZONE_CONTAINER:
if( DrawStruct->IsNew() )
{
DrawPanel->m_AutoPAN_Request = true;
Begin_Zone( aDC );
}
else
End_Move_Zone_Corner_Or_Outlines( aDC, (ZONE_CONTAINER*) DrawStruct );
2007-09-29 15:30:16 +00:00
exit = true;
break;
case TYPE_TRACK:
case TYPE_VIA:
if( DrawStruct->m_Flags & IS_DRAGGED )
{
PlaceDraggedOrMovedTrackSegment( (TRACK*) DrawStruct, aDC );
exit = true;
}
break;
case TYPE_TEXTE:
Place_Texte_Pcb( (TEXTE_PCB*) DrawStruct, aDC );
exit = true;
break;
2007-09-29 15:30:16 +00:00
case TYPE_TEXTE_MODULE:
PlaceTexteModule( (TEXTE_MODULE*) DrawStruct, aDC );
exit = true;
break;
2007-09-29 15:30:16 +00:00
case TYPE_PAD:
PlacePad( (D_PAD*) DrawStruct, aDC );
exit = true;
break;
2007-09-29 15:30:16 +00:00
case TYPE_MODULE:
Place_Module( (MODULE*) DrawStruct, aDC );
exit = true;
break;
2007-09-29 15:30:16 +00:00
case TYPE_MIRE:
Place_Mire( (MIREPCB*) DrawStruct, aDC );
exit = true;
break;
case TYPE_DRAWSEGMENT:
if( no_tool ) // when no tools: existing item moving.
{
Place_DrawItem( (DRAWSEGMENT*) DrawStruct, aDC );
exit = true;
}
break;
case TYPE_DIMENSION:
// see above.
break;
default:
DisplayError( this,
wxT(
"WinEDA_PcbFrame::OnLeftClick() err: DrawType %d m_Flags != 0" ),
DrawStruct->Type() );
exit = true;
break;
}
DrawPanel->m_IgnoreMouseEvents = false;
DrawPanel->CrossHairOn( aDC );
if( exit )
return;
2007-09-29 15:30:16 +00:00
}
else if( !wxGetKeyState( WXK_SHIFT ) && !wxGetKeyState( WXK_ALT )
&& !wxGetKeyState( WXK_CONTROL ) )
2007-09-29 15:30:16 +00:00
{
DrawStruct = PcbGeneralLocateAndDisplay();
if( DrawStruct )
SendMessageToEESCHEMA( DrawStruct );
2008-02-23 04:53:44 +00:00
}
2007-09-29 15:30:16 +00:00
}
2008-02-23 04:53:44 +00:00
if( DrawStruct ) // display netclass info for zones, tracks and pads
{
switch( DrawStruct->Type() )
{
case TYPE_ZONE_CONTAINER:
case TYPE_TRACK:
case TYPE_VIA:
case TYPE_PAD:
GetBoard()->SetCurrentNetClass(
((BOARD_CONNECTED_ITEM*)DrawStruct)->GetNetClassName() );
m_TrackAndViasSizesList_Changed = true;
break;
default:
break;
}
}
2007-09-29 15:30:16 +00:00
switch( m_ID_current_state )
{
case ID_MAIN_MENUBAR:
case ID_PCB_NO_TOOL:
2007-09-29 15:30:16 +00:00
case 0:
break;
case ID_PCB_MUWAVE_TOOL_SELF_CMD:
case ID_PCB_MUWAVE_TOOL_GAP_CMD:
case ID_PCB_MUWAVE_TOOL_STUB_CMD:
case ID_PCB_MUWAVE_TOOL_STUB_ARC_CMD:
case ID_PCB_MUWAVE_TOOL_FUNCTION_SHAPE_CMD:
MuWaveCommand( aDC, aPosition );
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_HIGHLIGHT_BUTT:
{
int netcode = Select_High_Light( aDC );
if( netcode < 0 )
GetBoard()->DisplayInfo( this );
else
2008-02-23 04:53:44 +00:00
{
NETINFO_ITEM* net = GetBoard()->FindNet( netcode );
if( net )
net->DisplayInfo( this );
2008-02-23 04:53:44 +00:00
}
}
break;
2007-09-29 15:30:16 +00:00
case ID_PCB_SHOW_1_RATSNEST_BUTT:
DrawStruct = PcbGeneralLocateAndDisplay();
Show_1_Ratsnest( DrawStruct, aDC );
2008-02-23 04:53:44 +00:00
2007-09-29 15:30:16 +00:00
if( DrawStruct )
SendMessageToEESCHEMA( DrawStruct );
break;
case ID_PCB_MIRE_BUTT:
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
{
SetCurItem( Create_Mire( aDC ) );
DrawPanel->MoveCursorToCrossHair();
2007-09-29 15:30:16 +00:00
}
else if( DrawStruct->Type() == TYPE_MIRE )
2007-09-29 15:30:16 +00:00
{
Place_Mire( (MIREPCB*) DrawStruct, aDC );
2007-09-29 15:30:16 +00:00
}
else
DisplayError( this, wxT( "Internal err: Struct not TYPE_MIRE" ) );
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_CIRCLE_BUTT:
case ID_PCB_ARC_BUTT:
case ID_PCB_ADD_LINE_BUTT:
2007-09-29 15:30:16 +00:00
{
int shape = S_SEGMENT;
if( m_ID_current_state == ID_PCB_CIRCLE_BUTT )
shape = S_CIRCLE;
if( m_ID_current_state == ID_PCB_ARC_BUTT )
shape = S_ARC;
2010-01-24 02:05:07 +00:00
if( getActiveLayer() <= LAST_COPPER_LAYER )
2007-09-29 15:30:16 +00:00
{
DisplayError( this, _( "Graphic not authorized on Copper layers" ) );
2007-09-29 15:30:16 +00:00
break;
}
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
{
DrawStruct = Begin_DrawSegment( NULL, shape, aDC );
2007-09-29 15:30:16 +00:00
SetCurItem( DrawStruct );
DrawPanel->m_AutoPAN_Request = true;
2007-09-29 15:30:16 +00:00
}
else if( DrawStruct
&& (DrawStruct->Type() == TYPE_DRAWSEGMENT)
&& DrawStruct->IsNew() )
2007-09-29 15:30:16 +00:00
{
DrawStruct = Begin_DrawSegment( (DRAWSEGMENT*) DrawStruct, shape, aDC );
2007-09-29 15:30:16 +00:00
SetCurItem( DrawStruct );
DrawPanel->m_AutoPAN_Request = true;
2007-09-29 15:30:16 +00:00
}
break;
}
case ID_TRACK_BUTT:
2010-01-24 02:05:07 +00:00
if( getActiveLayer() > LAST_COPPER_LAYER )
2007-09-29 15:30:16 +00:00
{
DisplayError( this, _( "Tracks on Copper layers only " ) );
break;
}
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
{
DrawStruct = Begin_Route( NULL, aDC );
2007-09-29 15:30:16 +00:00
SetCurItem( DrawStruct );
if( DrawStruct )
DrawPanel->m_AutoPAN_Request = true;
2007-09-29 15:30:16 +00:00
}
else if( DrawStruct && DrawStruct->IsNew() )
2007-09-29 15:30:16 +00:00
{
TRACK* track = Begin_Route( (TRACK*) DrawStruct, aDC );
// SetCurItem() must not write to the msg panel
// because a track info is displayed while moving the mouse cursor
if( track ) // A new segment was created
SetCurItem( DrawStruct = track, false );
DrawPanel->m_AutoPAN_Request = true;
2007-09-29 15:30:16 +00:00
}
break;
case ID_PCB_ZONES_BUTT:
/* ZONE Tool is selected. Determine action for a left click:
* this can be start a new zone or select and move an existing zone outline corner
* if found near the mouse cursor
*/
2007-09-29 15:30:16 +00:00
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
{
// there is no current item, try to find something under mouse
DrawStruct = PcbGeneralLocateAndDisplay();
bool hit_on_corner = false;
if( DrawStruct && (DrawStruct->Type() == TYPE_ZONE_CONTAINER) )
{
// We have a hit under mouse (a zone outline corner or segment)
// test for a corner only because want to move corners only.
ZONE_CONTAINER* edge_zone = (ZONE_CONTAINER*) DrawStruct;
if( edge_zone->HitTestForCorner( GetScreen()->RefPos( true ) ) >= 0 ) // corner located!
hit_on_corner = true;
}
if( hit_on_corner )
{
DrawPanel->MoveCursorToCrossHair();
ZONE_CONTAINER* zone_cont = (ZONE_CONTAINER*) GetCurItem();
DrawPanel->m_AutoPAN_Request = true;
Start_Move_Zone_Corner( aDC,
zone_cont,
zone_cont->m_CornerSelection,
false );
}
else if( Begin_Zone( aDC ) )
2008-02-23 04:53:44 +00:00
{
DrawPanel->m_AutoPAN_Request = true;
DrawStruct = GetBoard()->m_CurrentZoneContour;
2008-02-23 04:53:44 +00:00
GetScreen()->SetCurItem( DrawStruct );
}
2007-09-29 15:30:16 +00:00
}
else if( DrawStruct
&& (DrawStruct->Type() == TYPE_ZONE_CONTAINER)
&& DrawStruct->IsNew() )
{ // Add a new corner to the current outline beeing created:
DrawPanel->m_AutoPAN_Request = true;
Begin_Zone( aDC );
DrawStruct = GetBoard()->m_CurrentZoneContour;
GetScreen()->SetCurItem( DrawStruct );
2007-09-29 15:30:16 +00:00
}
else
DisplayError( this, wxT( "WinEDA_PcbFrame::OnLeftClick() zone internal error" ) );
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_ADD_TEXT_BUTT:
2007-09-29 15:30:16 +00:00
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
{
SetCurItem( Create_Texte_Pcb( aDC ) );
DrawPanel->MoveCursorToCrossHair();
DrawPanel->m_AutoPAN_Request = true;
2007-09-29 15:30:16 +00:00
}
else if( DrawStruct->Type() == TYPE_TEXTE )
2007-09-29 15:30:16 +00:00
{
Place_Texte_Pcb( (TEXTE_PCB*) DrawStruct, aDC );
DrawPanel->m_AutoPAN_Request = false;
2007-09-29 15:30:16 +00:00
}
else
DisplayError( this, wxT( "Internal err: Struct not TYPE_TEXTE" ) );
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_MODULE_BUTT:
2007-09-29 15:30:16 +00:00
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
{
DrawPanel->MoveCursorToCrossHair();
DrawStruct = Load_Module_From_Library( wxEmptyString, aDC );
2007-09-29 15:30:16 +00:00
SetCurItem( DrawStruct );
if( DrawStruct )
StartMove_Module( (MODULE*) DrawStruct, aDC );
2007-09-29 15:30:16 +00:00
}
else if( DrawStruct->Type() == TYPE_MODULE )
2007-09-29 15:30:16 +00:00
{
Place_Module( (MODULE*) DrawStruct, aDC );
DrawPanel->m_AutoPAN_Request = false;
2007-09-29 15:30:16 +00:00
}
else
DisplayError( this, wxT( "Internal err: Struct not TYPE_MODULE" ) );
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_DIMENSION_BUTT:
2010-01-24 02:05:07 +00:00
if( getActiveLayer() <= LAST_COPPER_LAYER )
2007-09-29 15:30:16 +00:00
{
DisplayError( this, _( "Dimension not authorized on Copper layers" ) );
2007-09-29 15:30:16 +00:00
break;
}
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
{
DrawStruct = Begin_Dimension( NULL, aDC );
2007-09-29 15:30:16 +00:00
SetCurItem( DrawStruct );
DrawPanel->m_AutoPAN_Request = true;
2007-09-29 15:30:16 +00:00
}
else if( DrawStruct
&& (DrawStruct->Type() == TYPE_DIMENSION)
&& DrawStruct->IsNew() )
2007-09-29 15:30:16 +00:00
{
DrawStruct = Begin_Dimension( (DIMENSION*) DrawStruct, aDC );
2007-09-29 15:30:16 +00:00
SetCurItem( DrawStruct );
DrawPanel->m_AutoPAN_Request = true;
2007-09-29 15:30:16 +00:00
}
else
DisplayError( this, wxT( "WinEDA_PcbFrame::OnLeftClick() error item is not a DIMENSION" ) );
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_DELETE_ITEM_BUTT:
if( !DrawStruct || (DrawStruct->m_Flags == 0) )
{
DrawStruct = PcbGeneralLocateAndDisplay();
if( DrawStruct && (DrawStruct->m_Flags == 0) )
{
RemoveStruct( DrawStruct, aDC );
2007-09-29 15:30:16 +00:00
SetCurItem( DrawStruct = NULL );
}
}
break;
case ID_PCB_PLACE_OFFSET_COORD_BUTT:
DrawPanel->DrawAuxiliaryAxis( aDC, GR_XOR );
m_Auxiliary_Axis_Position = GetScreen()->GetCrossHairPosition();
DrawPanel->DrawAuxiliaryAxis( aDC, GR_COPY );
OnModify();
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_PLACE_GRID_COORD_BUTT:
DrawPanel->DrawGridAxis( aDC, GR_XOR );
GetScreen()->m_GridOrigin = GetScreen()->GetCrossHairPosition();
DrawPanel->DrawGridAxis( aDC, GR_COPY );
break;
2007-09-29 15:30:16 +00:00
default:
DrawPanel->SetCursor( wxCURSOR_ARROW );
DisplayError( this, wxT( "WinEDA_PcbFrame::OnLeftClick() id error" ) );
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
break;
}
}
2008-02-23 04:53:44 +00:00
/* handle the double click on the mouse left button
2007-09-29 15:30:16 +00:00
*/
void WinEDA_PcbFrame::OnLeftDClick( wxDC* aDC, const wxPoint& aPosition )
2007-09-29 15:30:16 +00:00
{
BOARD_ITEM* DrawStruct = GetCurItem();
2007-09-29 15:30:16 +00:00
switch( m_ID_current_state )
{
case ID_PCB_NO_TOOL:
2007-09-29 15:30:16 +00:00
case 0:
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
{
DrawStruct = PcbGeneralLocateAndDisplay();
}
if( (DrawStruct == NULL) || (DrawStruct->m_Flags != 0) )
break;
SendMessageToEESCHEMA( DrawStruct );
// An item is found
SetCurItem( DrawStruct );
switch( DrawStruct->Type() )
{
case TYPE_TRACK:
case TYPE_VIA:
if( DrawStruct->IsNew() )
2007-09-29 15:30:16 +00:00
{
End_Route( (TRACK*) DrawStruct, aDC );
DrawPanel->m_AutoPAN_Request = false;
2007-09-29 15:30:16 +00:00
}
else if( DrawStruct->m_Flags == 0 )
{
Edit_TrackSegm_Width( aDC, (TRACK*) DrawStruct );
2007-09-29 15:30:16 +00:00
}
break;
case TYPE_TEXTE:
case TYPE_PAD:
case TYPE_MODULE:
case TYPE_MIRE:
case TYPE_DIMENSION:
case TYPE_TEXTE_MODULE:
OnEditItemRequest( aDC, DrawStruct );
DrawPanel->MoveCursorToCrossHair();
2007-09-29 15:30:16 +00:00
break;
case TYPE_DRAWSEGMENT:
OnEditItemRequest( aDC, DrawStruct );
break;
2007-09-29 15:30:16 +00:00
case TYPE_ZONE_CONTAINER:
if( DrawStruct->m_Flags )
break;
OnEditItemRequest( aDC, DrawStruct );
break;
2007-09-29 15:30:16 +00:00
default:
break;
}
break; // end case 0
case ID_TRACK_BUTT:
if( DrawStruct && DrawStruct->IsNew() )
2007-09-29 15:30:16 +00:00
{
End_Route( (TRACK*) DrawStruct, aDC );
DrawPanel->m_AutoPAN_Request = false;
2007-09-29 15:30:16 +00:00
}
break;
case ID_PCB_ZONES_BUTT:
if( End_Zone( aDC ) )
2008-02-23 04:53:44 +00:00
{
DrawPanel->m_AutoPAN_Request = false;
2008-02-23 04:53:44 +00:00
SetCurItem( NULL );
}
2007-09-29 15:30:16 +00:00
break;
case ID_PCB_ADD_LINE_BUTT:
2007-09-29 15:30:16 +00:00
case ID_PCB_ARC_BUTT:
case ID_PCB_CIRCLE_BUTT:
if( DrawStruct == NULL )
break;
if( DrawStruct->Type() != TYPE_DRAWSEGMENT )
2007-09-29 15:30:16 +00:00
{
DisplayError( this, wxT( "DrawStruct Type error" ) );
DrawPanel->m_AutoPAN_Request = false;
2007-09-29 15:30:16 +00:00
break;
}
if( DrawStruct->IsNew() )
2007-09-29 15:30:16 +00:00
{
End_Edge( (DRAWSEGMENT*) DrawStruct, aDC );
DrawPanel->m_AutoPAN_Request = false;
2007-09-29 15:30:16 +00:00
SetCurItem( NULL );
}
2007-09-29 15:30:16 +00:00
break;
}
}
void WinEDA_PcbFrame::OnEditItemRequest( wxDC* aDC, BOARD_ITEM* aItem )
{
switch( aItem->Type() )
{
case TYPE_TRACK:
case TYPE_VIA:
Edit_TrackSegm_Width( aDC, (TRACK*) aItem );
break;
case TYPE_TEXTE:
InstallTextPCBOptionsFrame( (TEXTE_PCB*) aItem, aDC );
break;
case TYPE_PAD:
InstallPadOptionsFrame( (D_PAD*) aItem );
break;
case TYPE_MODULE:
InstallModuleOptionsFrame( (MODULE*) aItem, aDC );
break;
case TYPE_MIRE:
InstallMireOptionsFrame( (MIREPCB*) aItem, aDC );
break;
case TYPE_DIMENSION:
Install_Edit_Dimension( (DIMENSION*) aItem, aDC );
break;
case TYPE_TEXTE_MODULE:
InstallTextModOptionsFrame( (TEXTE_MODULE*) aItem, aDC );
break;
case TYPE_DRAWSEGMENT:
InstallGraphicItemPropertiesDialog( (DRAWSEGMENT*) aItem, aDC );
break;
case TYPE_ZONE_CONTAINER:
Edit_Zone_Params( aDC, (ZONE_CONTAINER*) aItem );
break;
default:
break;
}
}