Commit ede37ecf authored by dickelbeck's avatar dickelbeck

beautified

parent 72f7cb16
/********************************************************************************/
/* tool_onrightclick.cpp: fonctions appeles par le bouton droit sur un TOOL */
/* tool_onrightclick.cpp: fonctions appels par le bouton droit sur un TOOL */
/********************************************************************************/
#include "fctsys.h"
......@@ -15,22 +15,21 @@
#include "protos.h"
/*****************************************************************/
void WinEDA_PcbFrame::ToolOnRightClick(wxCommandEvent& event)
void WinEDA_PcbFrame::ToolOnRightClick( wxCommandEvent& event )
/*****************************************************************/
{
wxPoint pos;
int id = event.GetSelection();
wxPoint pos;
int id = event.GetSelection();
wxGetMousePosition(&pos.x, &pos.y);
wxGetMousePosition( &pos.x, &pos.y );
pos.x -= 400;
pos.y -= 30;
switch ( id )
switch( id )
{
case ID_TRACK_BUTT:
InstallPcbOptionsFrame(pos, NULL, ID_PCB_TRACK_SIZE_SETUP);
InstallPcbOptionsFrame( pos, NULL, ID_PCB_TRACK_SIZE_SETUP );
break;
case ID_COMPONENT_BUTT:
......@@ -41,7 +40,7 @@ int id = event.GetSelection();
case ID_LINE_COMMENT_BUTT:
case ID_PCB_COTATION_BUTT:
case ID_TEXT_COMMENT_BUTT:
InstallPcbOptionsFrame(pos, NULL, ID_PCB_DRAWINGS_WIDTHS_SETUP);
InstallPcbOptionsFrame( pos, NULL, ID_PCB_DRAWINGS_WIDTHS_SETUP );
break;
default:
......@@ -49,21 +48,22 @@ int id = event.GetSelection();
}
}
/************************************************************************/
void WinEDA_ModuleEditFrame::ToolOnRightClick(wxCommandEvent& event)
void WinEDA_ModuleEditFrame::ToolOnRightClick( wxCommandEvent& event )
/************************************************************************/
{
wxPoint pos;
int id = event.GetSelection();
wxPoint pos;
int id = event.GetSelection();
wxGetMousePosition(&pos.x, &pos.y);
wxGetMousePosition( &pos.x, &pos.y );
pos.x -= 400;
pos.y -= 30;
switch ( id )
switch( id )
{
case ID_MODEDIT_ADD_PAD:
InstallPadOptionsFrame(NULL, NULL, wxPoint(-1,-1) );
InstallPadOptionsFrame( NULL, NULL, wxPoint( -1, -1 ) );
break;
case ID_PCB_CIRCLE_BUTT:
......@@ -71,13 +71,11 @@ int id = event.GetSelection();
case ID_LINE_COMMENT_BUTT:
case ID_PCB_COTATION_BUTT:
case ID_TEXT_COMMENT_BUTT:
InstallOptionsFrame(pos);
InstallOptionsFrame( pos );
break;
default:
DisplayError(this, wxT("ToolOnRightClick() error"));
DisplayError( this, wxT( "ToolOnRightClick() error" ) );
break;
}
}
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment