2009-11-18 12:52:19 +00:00
|
|
|
/*****************************************************/
|
|
|
|
/* muwave_command.cpp: micro wave functions commands */
|
|
|
|
/*****************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <wxPcbStruct.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew_id.h>
|
|
|
|
#include <kicad_device_context.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <protos.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
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-12-22 13:28:11 +00:00
|
|
|
INSTALL_UNBUFFERED_DC( dc, m_canvas );
|
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-12-22 13:28:11 +00:00
|
|
|
m_canvas->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:
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->SetCursor( wxCURSOR_ARROW );
|
2011-03-01 19:26:17 +00:00
|
|
|
DisplayError( this, wxT( "PCB_EDIT_FRAME::MuWaveCommand() id error" ) );
|
2011-12-22 13:28:11 +00:00
|
|
|
SetToolID( ID_NO_TOOL_SELECTED, m_canvas->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
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->MoveCursorToCrossHair();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|