2009-11-18 12:52:19 +00:00
|
|
|
/*****************************************************/
|
|
|
|
/* muwave_command.cpp: micro wave functions commands */
|
|
|
|
/*****************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "confirm.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "pcbnew.h"
|
2009-07-30 11:04:07 +00:00
|
|
|
#include "wxPcbStruct.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
#include "pcbnew_id.h"
|
2009-12-20 19:48:58 +00:00
|
|
|
#include "kicad_device_context.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
/* Handle microwave commands.
|
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::ProcessMuWaveFunctions( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-11-18 12:52:19 +00:00
|
|
|
int id = event.GetId();
|
|
|
|
wxPoint pos;
|
2011-01-30 22:22:38 +00:00
|
|
|
INSTALL_UNBUFFERED_DC( dc, DrawPanel );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
wxGetMousePosition( &pos.x, &pos.y );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
pos.y += 20;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
switch( id ) // End any command in progress.
|
|
|
|
{
|
|
|
|
case ID_POPUP_COPY_BLOCK:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: // End block command in progress.
|
2011-02-11 20:48:13 +00:00
|
|
|
DrawPanel->EndMouseCapture( );
|
2009-11-18 12:52:19 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
switch( id )
|
|
|
|
{
|
|
|
|
case ID_PCB_MUWAVE_TOOL_SELF_CMD:
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Line" ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_PCB_MUWAVE_TOOL_GAP_CMD:
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Gap" ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_PCB_MUWAVE_TOOL_STUB_CMD:
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Stub" ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_PCB_MUWAVE_TOOL_STUB_ARC_CMD:
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Arc Stub" ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_PCB_MUWAVE_TOOL_FUNCTION_SHAPE_CMD:
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Polynomial Shape" ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DisplayError( this,
|
2011-03-01 19:26:17 +00:00
|
|
|
wxT( "PCB_EDIT_FRAME::ProcessMuWaveFunctions() id error" ) );
|
2009-11-18 12:52:19 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::MuWaveCommand( wxDC* DC, const wxPoint& MousePos )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2008-12-06 12:49:33 +00:00
|
|
|
MODULE* module = NULL;
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-02-24 20:22:12 +00:00
|
|
|
switch( GetToolId() )
|
2009-11-18 12:52:19 +00:00
|
|
|
{
|
|
|
|
case ID_PCB_MUWAVE_TOOL_SELF_CMD:
|
|
|
|
Begin_Self( DC );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_PCB_MUWAVE_TOOL_GAP_CMD:
|
|
|
|
module = Create_MuWaveComponent( 0 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_PCB_MUWAVE_TOOL_STUB_CMD:
|
|
|
|
module = Create_MuWaveComponent( 1 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_PCB_MUWAVE_TOOL_STUB_ARC_CMD:
|
|
|
|
module = Create_MuWaveComponent( 2 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_PCB_MUWAVE_TOOL_FUNCTION_SHAPE_CMD:
|
|
|
|
module = Create_MuWavePolygonShape();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DrawPanel->SetCursor( wxCURSOR_ARROW );
|
2011-03-01 19:26:17 +00:00
|
|
|
DisplayError( this, wxT( "PCB_EDIT_FRAME::MuWaveCommand() id error" ) );
|
2011-02-24 20:22:12 +00:00
|
|
|
SetToolID( ID_NO_TOOL_SELECTED, DrawPanel->GetDefaultCursor(), wxEmptyString );
|
2009-11-18 12:52:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( module )
|
2008-12-06 12:49:33 +00:00
|
|
|
{
|
|
|
|
StartMove_Module( module, DC );
|
|
|
|
}
|
2011-02-11 20:48:13 +00:00
|
|
|
|
|
|
|
DrawPanel->MoveCursorToCrossHair();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|