545 lines
16 KiB
C++
545 lines
16 KiB
C++
/**************************************************************/
|
|
/* 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"
|
|
#include "pcbnew.h"
|
|
#include "wxPcbStruct.h"
|
|
|
|
#include "pcbnew_id.h"
|
|
|
|
|
|
/********************************************************************/
|
|
void WinEDA_PcbFrame::OnLeftClick( wxDC* DC, const wxPoint& MousePos )
|
|
/********************************************************************/
|
|
|
|
/* Handle the left buttom mouse click, when a tool is active
|
|
*/
|
|
{
|
|
BOARD_ITEM* DrawStruct = GetCurItem();
|
|
bool exit = false;
|
|
|
|
if( (m_ID_current_state == 0) || ( DrawStruct && DrawStruct->m_Flags ) )
|
|
{
|
|
DrawPanel->m_AutoPAN_Request = false;
|
|
|
|
if( DrawStruct && DrawStruct->m_Flags ) // "POPUP" in progress
|
|
{
|
|
DrawPanel->m_IgnoreMouseEvents = true;
|
|
DrawPanel->CursorOff( DC );
|
|
|
|
switch( DrawStruct->Type() )
|
|
{
|
|
case TYPE_ZONE_CONTAINER:
|
|
if( (DrawStruct->m_Flags & IS_NEW) )
|
|
{
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
Begin_Zone( DC );
|
|
}
|
|
else
|
|
End_Move_Zone_Corner_Or_Outlines( DC, (ZONE_CONTAINER*) DrawStruct );
|
|
exit = true;
|
|
break;
|
|
|
|
case TYPE_TRACK:
|
|
case TYPE_VIA:
|
|
if( DrawStruct->m_Flags & IS_DRAGGED )
|
|
{
|
|
PlaceDraggedOrMovedTrackSegment( (TRACK*) DrawStruct, DC );
|
|
exit = true;
|
|
}
|
|
break;
|
|
|
|
case TYPE_TEXTE:
|
|
Place_Texte_Pcb( (TEXTE_PCB*) DrawStruct, DC );
|
|
exit = true;
|
|
break;
|
|
|
|
case TYPE_TEXTE_MODULE:
|
|
PlaceTexteModule( (TEXTE_MODULE*) DrawStruct, DC );
|
|
exit = true;
|
|
break;
|
|
|
|
case TYPE_PAD:
|
|
PlacePad( (D_PAD*) DrawStruct, DC );
|
|
exit = true;
|
|
break;
|
|
|
|
case TYPE_MODULE:
|
|
Place_Module( (MODULE*) DrawStruct, DC );
|
|
exit = true;
|
|
break;
|
|
|
|
case TYPE_MIRE:
|
|
Place_Mire( (MIREPCB*) DrawStruct, DC );
|
|
exit = true;
|
|
break;
|
|
|
|
case TYPE_DRAWSEGMENT:
|
|
if( m_ID_current_state == 0 )
|
|
{
|
|
Place_DrawItem( (DRAWSEGMENT*) DrawStruct, DC );
|
|
exit = true;
|
|
}
|
|
break;
|
|
|
|
case TYPE_DIMENSION:
|
|
// see above.
|
|
break;
|
|
|
|
default:
|
|
if( m_ID_current_state == 0 )
|
|
{
|
|
DisplayError( this,
|
|
wxT(
|
|
"WinEDA_PcbFrame::OnLeftClick() err: DrawType %d m_Flags != 0" ),
|
|
DrawStruct->Type() );
|
|
exit = true;
|
|
}
|
|
break;
|
|
}
|
|
|
|
DrawPanel->m_IgnoreMouseEvents = false;
|
|
DrawPanel->CursorOn( DC );
|
|
if( exit )
|
|
return;
|
|
}
|
|
else if( !wxGetKeyState( WXK_SHIFT ) && !wxGetKeyState( WXK_ALT )
|
|
&& !wxGetKeyState( WXK_CONTROL ) )
|
|
{
|
|
DrawStruct = PcbGeneralLocateAndDisplay();
|
|
if( DrawStruct )
|
|
SendMessageToEESCHEMA( DrawStruct );
|
|
}
|
|
}
|
|
|
|
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;
|
|
AuxiliaryToolBar_Update_UI();
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
switch( m_ID_current_state )
|
|
{
|
|
case ID_MAIN_MENUBAR:
|
|
case 0:
|
|
break;
|
|
|
|
case ID_NO_SELECT_BUTT:
|
|
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( DC, MousePos );
|
|
break;
|
|
|
|
case ID_PCB_HIGHLIGHT_BUTT:
|
|
{
|
|
int netcode = Select_High_Light( DC );
|
|
if( netcode < 0 )
|
|
GetBoard()->DisplayInfo( this );
|
|
else
|
|
{
|
|
NETINFO_ITEM* net = GetBoard()->FindNet( netcode );
|
|
if( net )
|
|
net->DisplayInfo( this );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case ID_PCB_SHOW_1_RATSNEST_BUTT:
|
|
DrawStruct = PcbGeneralLocateAndDisplay();
|
|
Show_1_Ratsnest( DrawStruct, DC );
|
|
|
|
if( DrawStruct )
|
|
SendMessageToEESCHEMA( DrawStruct );
|
|
break;
|
|
|
|
case ID_PCB_MIRE_BUTT:
|
|
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
|
|
{
|
|
SetCurItem( Create_Mire( DC ) );
|
|
DrawPanel->MouseToCursorSchema();
|
|
}
|
|
else if( DrawStruct->Type() == TYPE_MIRE )
|
|
{
|
|
Place_Mire( (MIREPCB*) DrawStruct, DC );
|
|
}
|
|
else
|
|
DisplayError( this, wxT( "Internal err: Struct not TYPE_MIRE" ) );
|
|
break;
|
|
|
|
case ID_PCB_CIRCLE_BUTT:
|
|
case ID_PCB_ARC_BUTT:
|
|
case ID_PCB_ADD_LINE_BUTT:
|
|
{
|
|
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;
|
|
|
|
if( getActiveLayer() <= LAST_COPPER_LAYER )
|
|
{
|
|
DisplayError( this, _( "Graphic not authorized on Copper layers" ) );
|
|
break;
|
|
}
|
|
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
|
|
{
|
|
DrawStruct = Begin_DrawSegment( NULL, shape, DC );
|
|
SetCurItem( DrawStruct );
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
}
|
|
else if( DrawStruct
|
|
&& (DrawStruct->Type() == TYPE_DRAWSEGMENT)
|
|
&& (DrawStruct->m_Flags & IS_NEW) )
|
|
{
|
|
DrawStruct = Begin_DrawSegment( (DRAWSEGMENT*) DrawStruct, shape, DC );
|
|
SetCurItem( DrawStruct );
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case ID_TRACK_BUTT:
|
|
if( getActiveLayer() > LAST_COPPER_LAYER )
|
|
{
|
|
DisplayError( this, _( "Tracks on Copper layers only " ) );
|
|
break;
|
|
}
|
|
|
|
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
|
|
{
|
|
DrawStruct = Begin_Route( NULL, DC );
|
|
SetCurItem( DrawStruct );
|
|
if( DrawStruct )
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
}
|
|
else if( DrawStruct && (DrawStruct->m_Flags & IS_NEW) )
|
|
{
|
|
TRACK* track = Begin_Route( (TRACK*) DrawStruct, DC );
|
|
// 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;
|
|
}
|
|
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
|
|
*/
|
|
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->MouseToCursorSchema();
|
|
ZONE_CONTAINER* zone_cont = (ZONE_CONTAINER*) GetCurItem();
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
Start_Move_Zone_Corner( DC,
|
|
zone_cont,
|
|
zone_cont->m_CornerSelection,
|
|
false );
|
|
}
|
|
else if( Begin_Zone( DC ) )
|
|
{
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
DrawStruct = GetBoard()->m_CurrentZoneContour;
|
|
GetScreen()->SetCurItem( DrawStruct );
|
|
}
|
|
}
|
|
else if( DrawStruct
|
|
&& (DrawStruct->Type() == TYPE_ZONE_CONTAINER)
|
|
&& (DrawStruct->m_Flags & IS_NEW) )
|
|
{ // Add a new corner to the current outline beeing created:
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
Begin_Zone( DC );
|
|
DrawStruct = GetBoard()->m_CurrentZoneContour;
|
|
GetScreen()->SetCurItem( DrawStruct );
|
|
}
|
|
else
|
|
DisplayError( this, wxT( "WinEDA_PcbFrame::OnLeftClick() zone internal error" ) );
|
|
break;
|
|
|
|
case ID_PCB_ADD_TEXT_BUTT:
|
|
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
|
|
{
|
|
SetCurItem( Create_Texte_Pcb( DC ) );
|
|
DrawPanel->MouseToCursorSchema();
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
}
|
|
else if( DrawStruct->Type() == TYPE_TEXTE )
|
|
{
|
|
Place_Texte_Pcb( (TEXTE_PCB*) DrawStruct, DC );
|
|
DrawPanel->m_AutoPAN_Request = false;
|
|
}
|
|
else
|
|
DisplayError( this, wxT( "Internal err: Struct not TYPE_TEXTE" ) );
|
|
break;
|
|
|
|
case ID_COMPONENT_BUTT:
|
|
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
|
|
{
|
|
DrawPanel->MouseToCursorSchema();
|
|
DrawStruct = Load_Module_From_Library( wxEmptyString, DC );
|
|
SetCurItem( DrawStruct );
|
|
if( DrawStruct )
|
|
StartMove_Module( (MODULE*) DrawStruct, DC );
|
|
}
|
|
else if( DrawStruct->Type() == TYPE_MODULE )
|
|
{
|
|
Place_Module( (MODULE*) DrawStruct, DC );
|
|
DrawPanel->m_AutoPAN_Request = false;
|
|
}
|
|
else
|
|
DisplayError( this, wxT( "Internal err: Struct not TYPE_MODULE" ) );
|
|
break;
|
|
|
|
case ID_PCB_DIMENSION_BUTT:
|
|
if( getActiveLayer() <= LAST_COPPER_LAYER )
|
|
{
|
|
DisplayError( this, _( "Dimension not authorized on Copper layers" ) );
|
|
break;
|
|
}
|
|
if( (DrawStruct == NULL) || (DrawStruct->m_Flags == 0) )
|
|
{
|
|
DrawStruct = Begin_Dimension( NULL, DC );
|
|
SetCurItem( DrawStruct );
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
}
|
|
else if( DrawStruct
|
|
&& (DrawStruct->Type() == TYPE_DIMENSION)
|
|
&& (DrawStruct->m_Flags & IS_NEW) )
|
|
{
|
|
DrawStruct = Begin_Dimension( (DIMENSION*) DrawStruct, DC );
|
|
SetCurItem( DrawStruct );
|
|
DrawPanel->m_AutoPAN_Request = true;
|
|
}
|
|
else
|
|
DisplayError( this, wxT( "WinEDA_PcbFrame::OnLeftClick() error item is not a DIMENSION" ) );
|
|
break;
|
|
|
|
case ID_PCB_DELETE_ITEM_BUTT:
|
|
if( !DrawStruct || (DrawStruct->m_Flags == 0) )
|
|
{
|
|
DrawStruct = PcbGeneralLocateAndDisplay();
|
|
if( DrawStruct && (DrawStruct->m_Flags == 0) )
|
|
{
|
|
RemoveStruct( DrawStruct, DC );
|
|
SetCurItem( DrawStruct = NULL );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case ID_PCB_PLACE_OFFSET_COORD_BUTT:
|
|
DrawPanel->DrawAuxiliaryAxis( DC, GR_XOR );
|
|
m_Auxiliary_Axis_Position = GetScreen()->m_Curseur;
|
|
DrawPanel->DrawAuxiliaryAxis( DC, GR_COPY );
|
|
OnModify();
|
|
break;
|
|
|
|
case ID_PCB_PLACE_GRID_COORD_BUTT:
|
|
DrawPanel->DrawGridAxis( DC, GR_XOR );
|
|
GetScreen()->m_GridOrigin = GetScreen()->m_Curseur;
|
|
DrawPanel->DrawGridAxis( DC, GR_COPY );
|
|
break;
|
|
|
|
default:
|
|
DrawPanel->SetCursor( wxCURSOR_ARROW );
|
|
DisplayError( this, wxT( "WinEDA_PcbFrame::OnLeftClick() id error" ) );
|
|
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/* handle the double click on the mouse left button
|
|
*/
|
|
void WinEDA_PcbFrame::OnLeftDClick( wxDC* DC, const wxPoint& MousePos )
|
|
{
|
|
BOARD_ITEM* DrawStruct = GetCurItem();
|
|
|
|
switch( m_ID_current_state )
|
|
{
|
|
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->m_Flags & IS_NEW )
|
|
{
|
|
End_Route( (TRACK*) DrawStruct, DC );
|
|
DrawPanel->m_AutoPAN_Request = false;
|
|
}
|
|
else if( DrawStruct->m_Flags == 0 )
|
|
{
|
|
Edit_TrackSegm_Width( DC, (TRACK*) DrawStruct );
|
|
}
|
|
break;
|
|
|
|
case TYPE_TEXTE:
|
|
case TYPE_PAD:
|
|
case TYPE_MODULE:
|
|
case TYPE_MIRE:
|
|
case TYPE_DIMENSION:
|
|
case TYPE_TEXTE_MODULE:
|
|
OnEditItemRequest( DC, DrawStruct );
|
|
DrawPanel->MouseToCursorSchema();
|
|
break;
|
|
|
|
case TYPE_DRAWSEGMENT:
|
|
OnEditItemRequest( DC, DrawStruct );
|
|
break;
|
|
|
|
case TYPE_ZONE_CONTAINER:
|
|
if( DrawStruct->m_Flags )
|
|
break;
|
|
OnEditItemRequest( DC, DrawStruct );
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
break; // end case 0
|
|
|
|
case ID_TRACK_BUTT:
|
|
if( DrawStruct && (DrawStruct->m_Flags & IS_NEW) )
|
|
{
|
|
End_Route( (TRACK*) DrawStruct, DC );
|
|
DrawPanel->m_AutoPAN_Request = false;
|
|
}
|
|
break;
|
|
|
|
case ID_PCB_ZONES_BUTT:
|
|
if( End_Zone( DC ) )
|
|
{
|
|
DrawPanel->m_AutoPAN_Request = false;
|
|
SetCurItem( NULL );
|
|
}
|
|
break;
|
|
|
|
case ID_PCB_ADD_LINE_BUTT:
|
|
case ID_PCB_ARC_BUTT:
|
|
case ID_PCB_CIRCLE_BUTT:
|
|
if( DrawStruct == NULL )
|
|
break;
|
|
if( DrawStruct->Type() != TYPE_DRAWSEGMENT )
|
|
{
|
|
DisplayError( this, wxT( "DrawStruct Type error" ) );
|
|
DrawPanel->m_AutoPAN_Request = false;
|
|
break;
|
|
}
|
|
if( (DrawStruct->m_Flags & IS_NEW) )
|
|
{
|
|
End_Edge( (DRAWSEGMENT*) DrawStruct, DC );
|
|
DrawPanel->m_AutoPAN_Request = false;
|
|
SetCurItem( NULL );
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/** Function OnEditItemRequest
|
|
* Install the corresponding dialog editor for the given item
|
|
* @param DC = the current device context
|
|
* @param aItem = a pointer to the BOARD_ITEM to edit
|
|
*/
|
|
void WinEDA_PcbFrame::OnEditItemRequest( wxDC* DC, BOARD_ITEM* aItem )
|
|
{
|
|
switch( aItem->Type() )
|
|
{
|
|
case TYPE_TRACK:
|
|
case TYPE_VIA:
|
|
Edit_TrackSegm_Width( DC, (TRACK*) aItem );
|
|
break;
|
|
|
|
case TYPE_TEXTE:
|
|
InstallTextPCBOptionsFrame( (TEXTE_PCB*) aItem, DC );
|
|
break;
|
|
|
|
case TYPE_PAD:
|
|
InstallPadOptionsFrame( (D_PAD*) aItem );
|
|
break;
|
|
|
|
case TYPE_MODULE:
|
|
InstallModuleOptionsFrame( (MODULE*) aItem, DC );
|
|
break;
|
|
|
|
case TYPE_MIRE:
|
|
InstallMireOptionsFrame( (MIREPCB*) aItem, DC );
|
|
break;
|
|
|
|
case TYPE_DIMENSION:
|
|
Install_Edit_Dimension( (DIMENSION*) aItem, DC );
|
|
break;
|
|
|
|
case TYPE_TEXTE_MODULE:
|
|
InstallTextModOptionsFrame( (TEXTE_MODULE*) aItem, DC );
|
|
break;
|
|
|
|
case TYPE_DRAWSEGMENT:
|
|
InstallGraphicItemPropertiesDialog( (DRAWSEGMENT*) aItem, DC );
|
|
break;
|
|
|
|
case TYPE_ZONE_CONTAINER:
|
|
Edit_Zone_Params( DC, (ZONE_CONTAINER*) aItem );
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|