2011-10-17 20:01:27 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2013-04-06 12:01:53 +00:00
|
|
|
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 1992-2013 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-17 20:01:27 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file toolbars_gerber.cpp
|
|
|
|
* @brief Build tool bars
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <gerbview.h>
|
2014-06-27 17:07:42 +00:00
|
|
|
#include <gerbview_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <bitmaps.h>
|
|
|
|
#include <gerbview_id.h>
|
|
|
|
#include <hotkeys.h>
|
|
|
|
#include <class_GERBER.h>
|
2012-05-04 17:44:42 +00:00
|
|
|
#include <class_gbr_layer_box_selector.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_DCodeSelectionbox.h>
|
|
|
|
#include <dialog_helpers.h>
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::ReCreateHToolbar( void )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-09-10 04:51:01 +00:00
|
|
|
int ii;
|
|
|
|
wxString msg;
|
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
if( m_mainToolBar != NULL )
|
2007-09-10 04:51:01 +00:00
|
|
|
return;
|
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar = new wxAuiToolBar( this, ID_H_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_HORZ_LAYOUT );
|
2009-11-09 14:00:22 +00:00
|
|
|
|
2007-09-10 04:51:01 +00:00
|
|
|
// Set up toolbar
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_GERBVIEW_ERASE_ALL, wxEmptyString,
|
|
|
|
KiBitmap( gerbview_clear_layers_xpm ),
|
|
|
|
_( "Erase all layers" ) );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( wxID_FILE, wxEmptyString, KiBitmap( gerber_file_xpm ),
|
|
|
|
_( "Load a new Gerber file on the current layer. Previous data will be deleted" ) );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_GERBVIEW_LOAD_DRILL_FILE, wxEmptyString,
|
|
|
|
KiBitmap( gerbview_drill_file_xpm ),
|
|
|
|
_( "Load an excellon drill file on the current layer. Previous data will be deleted" ) );
|
2011-03-19 20:39:18 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( ID_GERBVIEW_SET_PAGE_BORDER, wxEmptyString, KiBitmap( sheetset_xpm ),
|
|
|
|
_( "Show/hide frame reference and select paper size for printing" ) );
|
2011-10-16 08:02:36 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( wxID_PRINT, wxEmptyString, KiBitmap( print_button_xpm ),
|
|
|
|
_( "Print layers" ) );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
2011-09-23 20:00:30 +00:00
|
|
|
msg = AddHotkeyName( _( "Zoom in" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_IN, IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-09-23 20:00:30 +00:00
|
|
|
msg = AddHotkeyName( _( "Zoom out" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_OUT, IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2011-09-23 20:00:30 +00:00
|
|
|
msg = AddHotkeyName( _( "Redraw view" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_REDRAW, IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2011-09-23 20:00:30 +00:00
|
|
|
msg = AddHotkeyName( _( "Zoom auto" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_AUTO, IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2013-04-06 12:01:53 +00:00
|
|
|
m_SelLayerBox = new GBR_LAYER_BOX_SELECTOR( m_mainToolBar,
|
|
|
|
ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
|
|
|
|
wxDefaultPosition, wxSize( 150, -1 ), 0,NULL);
|
2012-05-04 17:44:42 +00:00
|
|
|
m_SelLayerBox->Resync();
|
2011-05-13 13:15:28 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddControl( m_SelLayerBox );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
2010-07-27 12:47:08 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
m_DCodesList.Alloc(TOOLS_MAX_COUNT+1);
|
|
|
|
m_DCodesList.Add( _( "No tool" ) );
|
2009-11-09 14:00:22 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
for( ii = FIRST_DCODE; ii < TOOLS_MAX_COUNT; ii++ )
|
2007-09-10 04:51:01 +00:00
|
|
|
{
|
2011-03-12 11:30:43 +00:00
|
|
|
msg = _( "Tool " );
|
|
|
|
msg << ii;
|
|
|
|
m_DCodesList.Add( msg );
|
2007-09-10 04:51:01 +00:00
|
|
|
}
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_DCodeSelector = new DCODE_SELECTION_BOX( m_mainToolBar,
|
|
|
|
ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE,
|
2011-05-13 13:15:28 +00:00
|
|
|
wxDefaultPosition, wxSize( 150, -1 ),
|
|
|
|
m_DCodesList );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddControl( m_DCodeSelector );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_TextInfo = new wxTextCtrl( m_mainToolBar, wxID_ANY, wxEmptyString, wxDefaultPosition,
|
2011-02-21 13:54:29 +00:00
|
|
|
wxSize(150,-1), wxTE_READONLY );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddControl( m_TextInfo );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
// after adding the buttons to the toolbar, must call Realize() to reflect the changes
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->Realize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::ReCreateVToolbar( void )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-12-14 20:03:15 +00:00
|
|
|
if( m_drawToolBar )
|
2007-09-10 04:51:01 +00:00
|
|
|
return;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_drawToolBar = new wxAuiToolBar( this, ID_V_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_VERTICAL );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-09-10 04:51:01 +00:00
|
|
|
// Set up toolbar
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_NO_TOOL_SELECTED, wxEmptyString, KiBitmap( cursor_xpm ) );
|
|
|
|
m_drawToolBar->AddSeparator();
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->Realize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::ReCreateOptToolbar( void )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-12-14 20:03:15 +00:00
|
|
|
if( m_optionsToolBar )
|
2007-09-10 04:51:01 +00:00
|
|
|
return;
|
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
// creation of tool bar options
|
2011-12-16 13:32:23 +00:00
|
|
|
m_optionsToolBar = new wxAuiToolBar( this, ID_OPT_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_VERTICAL );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GRID, wxEmptyString, KiBitmap( grid_xpm ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Turn grid off" ), wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_POLAR_COORD, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( polar_coord_xpm ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Turn polar coordinate on" ), wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_INCH, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( unit_inch_xpm ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Set units to inches" ), wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_MM, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( unit_mm_xpm ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Set units to millimeters" ), wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( cursor_shape_xpm ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Change cursor shape" ), wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddSeparator();
|
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( pad_sketch_xpm ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Show spots in sketch mode" ), wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_LINES_SKETCH, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( showtrack_xpm ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Show lines in sketch mode" ), wxITEM_CHECK );
|
2007-11-02 09:58:42 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_POLYGONS_SKETCH, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( opt_show_polygon_xpm ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Show polygons in sketch mode" ),
|
|
|
|
wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2013-01-06 13:31:49 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_NEGATIVE_ITEMS, wxEmptyString,
|
|
|
|
KiBitmap( gerbview_show_negative_objects_xpm ),
|
|
|
|
_( "Show negatives objects in ghost color" ),
|
|
|
|
wxITEM_CHECK );
|
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_DCODES, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( show_dcodenumber_xpm ),
|
2009-05-02 07:35:04 +00:00
|
|
|
_( "Show dcode number" ), wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// tools to select draw mode in GerbView
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddSeparator();
|
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GBR_MODE_0, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( gbr_select_mode0_xpm ),
|
2011-02-21 13:54:29 +00:00
|
|
|
_( "Show layers in raw mode \
|
2010-12-15 20:15:24 +00:00
|
|
|
(could have problems with negative items when more than one gerber file is shown)" ),
|
|
|
|
wxITEM_CHECK );
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GBR_MODE_1, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( gbr_select_mode1_xpm ),
|
2011-02-21 13:54:29 +00:00
|
|
|
_( "Show layers in stacked mode \
|
2011-10-17 20:01:27 +00:00
|
|
|
(show negative items without artifacts, sometimes slow)" ),
|
2010-12-15 20:15:24 +00:00
|
|
|
wxITEM_CHECK );
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GBR_MODE_2, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( gbr_select_mode2_xpm ),
|
2011-10-17 20:01:27 +00:00
|
|
|
_( "Show layers in transparency mode \
|
|
|
|
(show negative items without artifacts, sometimes slow)" ),
|
2010-12-15 20:15:24 +00:00
|
|
|
wxITEM_CHECK );
|
|
|
|
|
2010-02-03 14:05:17 +00:00
|
|
|
// Tools to show/hide toolbars:
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddSeparator();
|
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR,
|
2010-08-24 17:26:51 +00:00
|
|
|
wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( layers_manager_xpm ),
|
2010-08-24 17:26:51 +00:00
|
|
|
_( "Show/hide the layers manager toolbar" ),
|
|
|
|
wxITEM_CHECK );
|
2010-02-03 17:38:32 +00:00
|
|
|
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->Realize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateDrawMode( wxUpdateUIEvent& aEvent )
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
2011-02-21 13:54:29 +00:00
|
|
|
switch( aEvent.GetId() )
|
|
|
|
{
|
|
|
|
case ID_TB_OPTIONS_SHOW_GBR_MODE_0:
|
|
|
|
aEvent.Check( GetDisplayMode() == 0 );
|
|
|
|
break;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
case ID_TB_OPTIONS_SHOW_GBR_MODE_1:
|
|
|
|
aEvent.Check( GetDisplayMode() == 1 );
|
|
|
|
break;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
case ID_TB_OPTIONS_SHOW_GBR_MODE_2:
|
|
|
|
aEvent.Check( GetDisplayMode() == 2 );
|
|
|
|
break;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
default:
|
|
|
|
break;
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateCoordType( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
aEvent.Check( m_DisplayOptions.m_DisplayPolarCood );
|
|
|
|
}
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateFlashedItemsDrawMode( wxUpdateUIEvent& aEvent )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
aEvent.Check( !m_DisplayOptions.m_DisplayFlashedItemsFill );
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateLinesDrawMode( wxUpdateUIEvent& aEvent )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
aEvent.Check( !m_DisplayOptions.m_DisplayLinesFill );
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdatePolygonsDrawMode( wxUpdateUIEvent& aEvent )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
aEvent.Check( !m_DisplayOptions.m_DisplayPolygonsFill );
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateShowDCodes( wxUpdateUIEvent& aEvent )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
|
|
|
aEvent.Check( IsElementVisible( DCODES_VISIBLE ) );
|
|
|
|
}
|
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2013-01-06 13:31:49 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateShowNegativeItems( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
aEvent.Check( IsElementVisible( NEGATIVE_OBJECTS_VISIBLE ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateShowLayerManager( wxUpdateUIEvent& aEvent )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
|
|
|
aEvent.Check( m_show_layer_manager_tools );
|
2010-12-15 20:15:24 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
if( m_optionsToolBar )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2010-09-28 14:42:05 +00:00
|
|
|
if( m_show_layer_manager_tools )
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->SetToolShortHelp( aEvent.GetId(), _("Hide layers manager" ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
else
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->SetToolShortHelp( aEvent.GetId(), _("Show layers manager" ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateSelectDCode( wxUpdateUIEvent& aEvent )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2014-06-27 17:07:42 +00:00
|
|
|
int layer = getActiveLayer();
|
2014-11-22 11:52:57 +00:00
|
|
|
GERBER_IMAGE* gerber = g_GERBER_List.GetGbrImage( layer );
|
2011-02-21 13:54:29 +00:00
|
|
|
int selected = ( gerber ) ? gerber->m_Selected_Tool : 0;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
if( m_DCodeSelector && m_DCodeSelector->GetSelectedDCodeId() != selected )
|
|
|
|
m_DCodeSelector->SetDCodeSelection( selected );
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
aEvent.Enable( gerber != NULL );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateLayerSelectBox( wxUpdateUIEvent& aEvent )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2011-03-14 21:19:13 +00:00
|
|
|
if( m_SelLayerBox && (m_SelLayerBox->GetSelection() != getActiveLayer()) )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2011-03-14 21:19:13 +00:00
|
|
|
m_SelLayerBox->SetSelection( getActiveLayer() );
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
|
|
|
}
|