2009-11-09 14:00:22 +00:00
|
|
|
/************************/
|
|
|
|
/* File options.cpp */
|
|
|
|
/************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
/*
|
2009-11-22 20:55:05 +00:00
|
|
|
* Set some general options of Gerbview
|
2007-09-25 06:15:54 +00:00
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "confirm.h"
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
#include "gerbview.h"
|
2010-02-03 14:05:17 +00:00
|
|
|
#include "gerbview_id.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
2007-11-02 09:58:42 +00:00
|
|
|
/** Function OnSelectOptionToolbar
|
|
|
|
* called to validate current choices
|
|
|
|
*/
|
2009-11-09 14:00:22 +00:00
|
|
|
void WinEDA_GerberFrame::OnSelectOptionToolbar( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-02-04 15:25:03 +00:00
|
|
|
int id = event.GetId();
|
2010-02-03 14:05:17 +00:00
|
|
|
bool state;
|
|
|
|
switch( id )
|
|
|
|
{
|
|
|
|
case ID_MENU_GERBVIEW_SHOW_HIDE_LAYERS_MANAGER_DIALOG:
|
|
|
|
state = ! m_show_layer_manager_tools;
|
|
|
|
id = ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
state = m_OptionsToolBar->GetToolState( id );
|
|
|
|
break;
|
|
|
|
}
|
2009-02-04 15:25:03 +00:00
|
|
|
|
|
|
|
switch( id )
|
|
|
|
{
|
|
|
|
case ID_TB_OPTIONS_SHOW_GRID:
|
2010-02-03 14:05:17 +00:00
|
|
|
SetGridVisibility( state );
|
2009-02-04 15:25:03 +00:00
|
|
|
DrawPanel->Refresh( TRUE );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_TB_OPTIONS_SELECT_UNIT_MM:
|
2010-07-12 14:07:09 +00:00
|
|
|
g_UserUnit = MILLIMETRES;
|
2009-04-05 20:49:15 +00:00
|
|
|
UpdateStatusBar();
|
2009-02-04 15:25:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_TB_OPTIONS_SELECT_UNIT_INCH:
|
2010-07-12 14:07:09 +00:00
|
|
|
g_UserUnit = INCHES;
|
2009-04-05 20:49:15 +00:00
|
|
|
UpdateStatusBar();
|
2009-02-04 15:25:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_TB_OPTIONS_SHOW_POLAR_COORD:
|
|
|
|
Affiche_Message( wxEmptyString );
|
2010-02-03 14:05:17 +00:00
|
|
|
DisplayOpt.DisplayPolarCood = state;
|
2009-04-05 20:49:15 +00:00
|
|
|
UpdateStatusBar();
|
2009-02-04 15:25:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_TB_OPTIONS_SELECT_CURSOR:
|
2010-02-03 14:05:17 +00:00
|
|
|
m_CursorShape = state;
|
2009-02-04 15:25:03 +00:00
|
|
|
DrawPanel->Refresh( TRUE );
|
|
|
|
break;
|
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
case ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH:
|
2010-02-03 14:05:17 +00:00
|
|
|
if( state )
|
2009-02-04 15:25:03 +00:00
|
|
|
{
|
2009-05-21 17:42:42 +00:00
|
|
|
DisplayOpt.DisplayPadFill = m_DisplayPadFill = false;
|
2009-02-04 15:25:03 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-05-21 17:42:42 +00:00
|
|
|
DisplayOpt.DisplayPadFill = m_DisplayPadFill = true;
|
2009-02-04 15:25:03 +00:00
|
|
|
}
|
|
|
|
DrawPanel->Refresh( TRUE );
|
|
|
|
break;
|
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
case ID_TB_OPTIONS_SHOW_LINES_SKETCH:
|
2010-02-03 14:05:17 +00:00
|
|
|
if(state )
|
2009-02-04 15:25:03 +00:00
|
|
|
{
|
|
|
|
m_DisplayPcbTrackFill = FALSE;
|
|
|
|
DisplayOpt.DisplayPcbTrackFill = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_DisplayPcbTrackFill = TRUE;
|
|
|
|
DisplayOpt.DisplayPcbTrackFill = TRUE;
|
|
|
|
}
|
|
|
|
DrawPanel->Refresh( TRUE );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_TB_OPTIONS_SHOW_POLYGONS_SKETCH:
|
2010-02-03 14:05:17 +00:00
|
|
|
if( state ) // Polygons filled asked
|
2009-02-04 15:25:03 +00:00
|
|
|
g_DisplayPolygonsModeSketch = 1;
|
|
|
|
else
|
|
|
|
g_DisplayPolygonsModeSketch = 0;
|
|
|
|
DrawPanel->Refresh( TRUE );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_TB_OPTIONS_SHOW_DCODES:
|
2010-02-03 14:05:17 +00:00
|
|
|
SetElementVisibility( DCODES_VISIBLE, state );
|
2009-02-04 15:25:03 +00:00
|
|
|
DrawPanel->Refresh( TRUE );
|
|
|
|
break;
|
|
|
|
|
2010-02-03 14:05:17 +00:00
|
|
|
case ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR:
|
|
|
|
// show/hide auxiliary Vertical layers and visibility manager toolbar
|
|
|
|
m_show_layer_manager_tools = state;
|
|
|
|
m_auimgr.GetPane( wxT( "m_LayersManagerToolBar" ) ).Show( m_show_layer_manager_tools );
|
|
|
|
m_auimgr.Update();
|
|
|
|
break;
|
|
|
|
|
2009-02-04 15:25:03 +00:00
|
|
|
default:
|
|
|
|
DisplayError( this,
|
2009-11-09 14:00:22 +00:00
|
|
|
wxT( "WinEDA_PcbFrame::OnSelectOptionToolbar error" ) );
|
2009-02-04 15:25:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetToolbars();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|