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
|
2018-03-13 21:59:46 +00:00
|
|
|
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@gmail.com>
|
2018-01-08 04:05:03 +00:00
|
|
|
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-17 20:01:27 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +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 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
2011-10-17 20:01:27 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +00:00
|
|
|
* 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.
|
2011-10-17 20:01:27 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-10-17 20:01:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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 <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>
|
2018-01-29 12:26:58 +00:00
|
|
|
#include <gerber_file_image.h>
|
|
|
|
#include <gerber_file_image_list.h>
|
|
|
|
#include <gbr_layer_box_selector.h>
|
|
|
|
#include <DCodeSelectionbox.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_helpers.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2016-08-16 10:56:20 +00:00
|
|
|
#include <wx/wupdlock.h>
|
|
|
|
|
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
|
|
|
wxString msg;
|
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
if( m_mainToolBar )
|
|
|
|
m_mainToolBar->Clear();
|
|
|
|
else
|
|
|
|
m_mainToolBar = new wxAuiToolBar( this, ID_H_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
|
|
|
KICAD_AUI_TB_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,
|
2018-01-11 06:18:30 +00:00
|
|
|
KiScaledBitmap( delete_gerber_xpm, this ),
|
2018-02-27 22:30:50 +00:00
|
|
|
_( "Clear all layers" ) );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2018-10-08 09:51:13 +00:00
|
|
|
m_mainToolBar->AddTool( ID_GERBVIEW_RELOAD_ALL, wxEmptyString,
|
|
|
|
KiScaledBitmap( reload2_xpm, this ),
|
|
|
|
_( "Reload all layers" ) );
|
|
|
|
|
2018-01-11 06:18:30 +00:00
|
|
|
m_mainToolBar->AddTool( wxID_FILE, wxEmptyString, KiScaledBitmap( load_gerber_xpm, this ),
|
2018-02-27 22:30:50 +00:00
|
|
|
_( "Open Gerber file(s) 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,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( gerbview_drill_file_xpm, this ),
|
2018-02-27 22:30:50 +00:00
|
|
|
_( "Open Excellon drill file(s) on the current layer. Previous data will be deleted" ) );
|
2011-03-19 20:39:18 +00:00
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledSeparator( m_mainToolBar, this );
|
|
|
|
m_mainToolBar->AddTool( wxID_PRINT, wxEmptyString, KiScaledBitmap( print_button_xpm, this ),
|
2011-12-16 13:32:23 +00:00
|
|
|
_( "Print layers" ) );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledSeparator( m_mainToolBar, this );
|
2019-04-01 17:14:16 +00:00
|
|
|
msg = AddHotkeyName( _( "Redraw view" ), GerbviewHotkeysDescr, HK_ZOOM_REDRAW, IS_COMMENT );
|
2018-01-08 04:05:03 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiScaledBitmap( zoom_redraw_xpm, this ), msg );
|
2017-06-06 13:35:20 +00:00
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
msg = AddHotkeyName( _( "Zoom in" ), GerbviewHotkeysDescr, HK_ZOOM_IN, IS_COMMENT );
|
2018-01-08 04:05:03 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiScaledBitmap( zoom_in_xpm, this ), msg );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
msg = AddHotkeyName( _( "Zoom out" ), GerbviewHotkeysDescr, HK_ZOOM_OUT, IS_COMMENT );
|
2018-01-08 04:05:03 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiScaledBitmap( zoom_out_xpm, this ), msg );
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
msg = AddHotkeyName( _( "Zoom to fit" ), GerbviewHotkeysDescr, HK_ZOOM_AUTO, IS_COMMENT );
|
2018-03-13 21:59:46 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString,
|
|
|
|
KiScaledBitmap( zoom_fit_in_page_xpm, this ), msg );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_SELECTION, wxEmptyString, KiScaledBitmap( zoom_area_xpm, this ),
|
2018-03-13 21:59:46 +00:00
|
|
|
_( "Zoom to selection" ), wxITEM_CHECK );
|
2017-06-06 13:35:20 +00:00
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledSeparator( m_mainToolBar, this );
|
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,
|
2018-03-13 21:59:46 +00:00
|
|
|
ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
|
|
|
|
wxDefaultPosition, wxDefaultSize, 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_TextInfo = new wxTextCtrl( m_mainToolBar, wxID_ANY, wxEmptyString, wxDefaultPosition,
|
2016-05-23 15:47:16 +00:00
|
|
|
wxDefaultSize, 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
|
|
|
}
|
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
|
2016-08-16 10:56:20 +00:00
|
|
|
void GERBVIEW_FRAME::ReCreateAuxiliaryToolbar()
|
|
|
|
{
|
2018-10-13 12:49:49 +00:00
|
|
|
wxWindowUpdateLocker dummy( this );
|
2018-01-29 01:30:43 +00:00
|
|
|
wxStaticText* text;
|
2016-08-16 10:56:20 +00:00
|
|
|
|
2018-01-29 01:30:43 +00:00
|
|
|
if( !m_auxiliaryToolBar )
|
2018-03-13 21:59:46 +00:00
|
|
|
m_auxiliaryToolBar = new wxAuiToolBar( this, ID_AUX_TOOLBAR, wxDefaultPosition,
|
|
|
|
wxDefaultSize,
|
2018-01-08 04:05:03 +00:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_HORZ_LAYOUT );
|
2016-08-16 10:56:20 +00:00
|
|
|
|
|
|
|
// Creates box to display and choose components:
|
2018-01-29 01:30:43 +00:00
|
|
|
if( !m_SelComponentBox )
|
|
|
|
{
|
2019-01-28 14:15:32 +00:00
|
|
|
m_SelComponentBox = new wxChoice( m_auxiliaryToolBar,
|
|
|
|
ID_GBR_AUX_TOOLBAR_PCB_CMP_CHOICE );
|
2018-07-11 12:56:05 +00:00
|
|
|
m_SelComponentBox->SetToolTip( _("Highlight items belonging to this component") );
|
2018-03-13 21:59:46 +00:00
|
|
|
text = new wxStaticText( m_auxiliaryToolBar, wxID_ANY, _( "Cmp: ") );
|
2018-02-04 20:14:33 +00:00
|
|
|
m_auxiliaryToolBar->AddControl( text );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_SelComponentBox );
|
2018-07-11 12:56:05 +00:00
|
|
|
m_auxiliaryToolBar->AddSpacer( 5 );
|
2018-01-29 01:30:43 +00:00
|
|
|
}
|
2016-08-16 10:56:20 +00:00
|
|
|
|
|
|
|
// Creates choice box to display net names and highlight selected:
|
2018-01-29 01:30:43 +00:00
|
|
|
if( !m_SelNetnameBox )
|
|
|
|
{
|
2019-01-28 14:15:32 +00:00
|
|
|
m_SelNetnameBox = new wxChoice( m_auxiliaryToolBar,
|
|
|
|
ID_GBR_AUX_TOOLBAR_PCB_NET_CHOICE );
|
2018-07-11 12:56:05 +00:00
|
|
|
m_SelNetnameBox->SetToolTip( _("Highlight items belonging to this net") );
|
2018-03-13 21:59:46 +00:00
|
|
|
text = new wxStaticText( m_auxiliaryToolBar, wxID_ANY, _( "Net:" ) );
|
2018-02-04 20:14:33 +00:00
|
|
|
m_auxiliaryToolBar->AddControl( text );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_SelNetnameBox );
|
2018-07-11 12:56:05 +00:00
|
|
|
m_auxiliaryToolBar->AddSpacer( 5 );
|
2018-01-29 01:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Creates choice box to display aperture attributes and highlight selected:
|
|
|
|
if( !m_SelAperAttributesBox )
|
|
|
|
{
|
2019-01-28 14:15:32 +00:00
|
|
|
m_SelAperAttributesBox = new wxChoice( m_auxiliaryToolBar,
|
|
|
|
ID_GBR_AUX_TOOLBAR_PCB_APERATTRIBUTES_CHOICE );
|
2018-07-11 12:56:05 +00:00
|
|
|
m_SelAperAttributesBox->SetToolTip( _("Highlight items with this aperture attribute") );
|
2018-03-13 21:59:46 +00:00
|
|
|
text = new wxStaticText( m_auxiliaryToolBar, wxID_ANY, _( "Attr:" ) );
|
2018-02-04 20:14:33 +00:00
|
|
|
m_auxiliaryToolBar->AddControl( text );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_SelAperAttributesBox );
|
2018-07-11 12:56:05 +00:00
|
|
|
m_auxiliaryToolBar->AddSpacer( 5 );
|
2018-01-29 01:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( !m_DCodeSelector )
|
|
|
|
{
|
|
|
|
m_DCodeSelector = new DCODE_SELECTION_BOX( m_auxiliaryToolBar,
|
|
|
|
ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE,
|
|
|
|
wxDefaultPosition, wxSize( 150, -1 ) );
|
2018-03-13 21:59:46 +00:00
|
|
|
text = new wxStaticText( m_auxiliaryToolBar, wxID_ANY, _( "DCode:" ) );
|
2018-02-04 20:14:33 +00:00
|
|
|
m_auxiliaryToolBar->AddControl( text );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_DCodeSelector );
|
2018-01-29 01:30:43 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 12:56:05 +00:00
|
|
|
if( !m_gridSelectBox )
|
|
|
|
{
|
|
|
|
KiScaledSeparator( m_auxiliaryToolBar, this );
|
2019-01-28 14:15:32 +00:00
|
|
|
m_gridSelectBox = new wxChoice( m_auxiliaryToolBar, ID_ON_GRID_SELECT,
|
|
|
|
wxDefaultPosition, wxDefaultSize, 0, nullptr );
|
2018-07-11 12:56:05 +00:00
|
|
|
m_auxiliaryToolBar->AddControl( m_gridSelectBox );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !m_zoomSelectBox )
|
|
|
|
{
|
|
|
|
KiScaledSeparator( m_auxiliaryToolBar, this );
|
2019-01-28 14:15:32 +00:00
|
|
|
m_zoomSelectBox = new wxChoice( m_auxiliaryToolBar, ID_ON_ZOOM_SELECT,
|
|
|
|
wxDefaultPosition, wxDefaultSize, 0, nullptr );
|
2018-07-11 12:56:05 +00:00
|
|
|
m_auxiliaryToolBar->AddControl( m_zoomSelectBox );
|
|
|
|
}
|
|
|
|
|
2018-01-29 01:30:43 +00:00
|
|
|
updateComponentListSelectBox();
|
|
|
|
updateNetnameListSelectBox();
|
|
|
|
updateAperAttributesSelectBox();
|
|
|
|
updateDCodeSelectBox();
|
2018-07-11 12:56:05 +00:00
|
|
|
updateGridSelectBox();
|
|
|
|
updateZoomSelectBox();
|
2018-01-29 01:30:43 +00:00
|
|
|
|
|
|
|
// combobox sizes can have changed: apply new best sizes
|
2018-02-04 20:14:33 +00:00
|
|
|
auto item = m_auxiliaryToolBar->FindTool( ID_GBR_AUX_TOOLBAR_PCB_CMP_CHOICE );
|
|
|
|
item->SetMinSize( m_SelComponentBox->GetBestSize() );
|
2018-01-29 01:30:43 +00:00
|
|
|
|
2018-02-04 20:14:33 +00:00
|
|
|
item = m_auxiliaryToolBar->FindTool( ID_GBR_AUX_TOOLBAR_PCB_NET_CHOICE );
|
|
|
|
item->SetMinSize( m_SelNetnameBox->GetBestSize() );
|
2018-01-29 01:30:43 +00:00
|
|
|
|
2018-02-04 20:14:33 +00:00
|
|
|
item = m_auxiliaryToolBar->FindTool( ID_GBR_AUX_TOOLBAR_PCB_APERATTRIBUTES_CHOICE );
|
|
|
|
item->SetMinSize( m_SelAperAttributesBox->GetBestSize() );
|
2016-08-16 10:56:20 +00:00
|
|
|
|
2018-07-11 12:56:05 +00:00
|
|
|
item = m_auxiliaryToolBar->FindTool( ID_ON_GRID_SELECT );
|
|
|
|
item->SetMinSize( m_gridSelectBox->GetBestSize() );
|
|
|
|
|
|
|
|
item = m_auxiliaryToolBar->FindTool( ID_ON_ZOOM_SELECT );
|
|
|
|
item->SetMinSize( m_zoomSelectBox->GetBestSize() );
|
|
|
|
|
2016-08-16 10:56:20 +00:00
|
|
|
// after adding the buttons to the toolbar, must call Realize()
|
|
|
|
m_auxiliaryToolBar->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,
|
2017-09-27 17:40:18 +00:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_VERTICAL );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-09-10 04:51:01 +00:00
|
|
|
// Set up toolbar
|
2018-06-03 21:42:04 +00:00
|
|
|
m_drawToolBar->AddTool( ID_NO_TOOL_SELECTED, _( "Select item" ),
|
2018-03-13 21:59:46 +00:00
|
|
|
KiScaledBitmap( cursor_xpm, this ) );
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledSeparator( m_mainToolBar, this );
|
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 )
|
2017-09-17 22:43:20 +00:00
|
|
|
m_optionsToolBar->Clear();
|
|
|
|
else
|
|
|
|
m_optionsToolBar = new wxAuiToolBar( this, ID_OPT_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
2017-09-27 17:40:18 +00:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_VERTICAL );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2016-06-10 11:08:16 +00:00
|
|
|
// TODO: these can be moved to the 'proper' vertical toolbar if and when there are
|
|
|
|
// actual tools to put there. That, or I'll get around to implementing configurable
|
|
|
|
// toolbars.
|
2018-03-13 21:59:46 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_NO_TOOL_SELECTED, wxEmptyString,
|
|
|
|
KiScaledBitmap( cursor_xpm, this ),
|
2016-06-10 11:08:16 +00:00
|
|
|
wxEmptyString, wxITEM_CHECK );
|
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
if( IsGalCanvasActive() )
|
|
|
|
{
|
|
|
|
m_optionsToolBar->AddTool( ID_TB_MEASUREMENT_TOOL, wxEmptyString,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( measurement_xpm, this ),
|
2017-09-17 22:43:20 +00:00
|
|
|
_( "Measure distance between two points" ),
|
|
|
|
wxITEM_CHECK );
|
|
|
|
}
|
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledSeparator( m_mainToolBar, this );
|
2016-06-10 11:08:16 +00:00
|
|
|
|
2018-03-13 21:59:46 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GRID, wxEmptyString,
|
|
|
|
KiScaledBitmap( grid_xpm, this ),
|
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,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( polar_coord_xpm, this ),
|
2018-02-27 22:30:50 +00:00
|
|
|
_( "Turn polar coordinates 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,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( unit_inch_xpm, this ),
|
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,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( unit_mm_xpm, this ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Set units to millimeters" ), wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2016-05-11 03:33:24 +00:00
|
|
|
#ifndef __APPLE__
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( cursor_shape_xpm, this ),
|
2009-11-09 14:00:22 +00:00
|
|
|
_( "Change cursor shape" ), wxITEM_CHECK );
|
2018-01-27 18:11:56 +00:00
|
|
|
#else
|
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
|
|
|
|
KiScaledBitmap( cursor_shape_xpm, this ),
|
2018-02-19 19:26:02 +00:00
|
|
|
_( "Change cursor shape (not supported in Legacy Toolset)" ),
|
2018-01-27 18:11:56 +00:00
|
|
|
wxITEM_CHECK );
|
|
|
|
#endif
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledSeparator( m_mainToolBar, this );
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH, wxEmptyString,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( pad_sketch_xpm, this ),
|
2018-03-13 21:59:46 +00:00
|
|
|
_( "Show flashed items in outline 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,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( showtrack_xpm, this ),
|
2018-03-13 21:59:46 +00:00
|
|
|
_( "Show lines in outline 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,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( opt_show_polygon_xpm, this ),
|
2018-03-13 21:59:46 +00:00
|
|
|
_( "Show polygons in outline mode" ),
|
2009-11-09 14:00:22 +00:00
|
|
|
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,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( gerbview_show_negative_objects_xpm, this ),
|
2013-01-06 13:31:49 +00:00
|
|
|
_( "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,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( show_dcodenumber_xpm, this ),
|
2009-05-02 07:35:04 +00:00
|
|
|
_( "Show dcode number" ), wxITEM_CHECK );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
// tools to select draw mode in GerbView, unused in GAL
|
|
|
|
if( !IsGalCanvasActive() )
|
|
|
|
{
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledSeparator( m_mainToolBar, this );
|
2017-09-17 22:43:20 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GBR_MODE_0, wxEmptyString,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( gbr_select_mode0_xpm, this ),
|
2017-09-28 16:41:29 +00:00
|
|
|
_( "Show layers in raw mode\n"
|
|
|
|
"(could have problems with negative items when more than one gerber file is shown)" ),
|
2018-03-13 21:59:46 +00:00
|
|
|
wxITEM_RADIO );
|
2017-09-17 22:43:20 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GBR_MODE_1, wxEmptyString,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( gbr_select_mode1_xpm, this ),
|
2017-09-28 16:41:29 +00:00
|
|
|
_( "Show layers in stacked mode\n"
|
|
|
|
"(show negative items without artifacts)" ),
|
2018-03-13 21:59:46 +00:00
|
|
|
wxITEM_RADIO );
|
2017-09-17 22:43:20 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GBR_MODE_2, wxEmptyString,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( gbr_select_mode2_xpm, this ),
|
2017-09-28 16:41:29 +00:00
|
|
|
_( "Show layers in transparency mode\n"
|
|
|
|
"(show negative items without artifacts)" ),
|
2018-03-13 21:59:46 +00:00
|
|
|
wxITEM_RADIO );
|
2017-09-17 22:43:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_DIFF_MODE, wxEmptyString,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( gbr_select_mode2_xpm, this ),
|
2017-09-17 22:43:20 +00:00
|
|
|
_( "Show layers in diff (compare) mode" ),
|
|
|
|
wxITEM_CHECK );
|
|
|
|
|
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_HIGH_CONTRAST_MODE, wxEmptyString,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( contrast_mode_xpm, this ),
|
2017-09-17 22:43:20 +00:00
|
|
|
_( "Enable high contrast display mode" ),
|
|
|
|
wxITEM_CHECK );
|
|
|
|
|
|
|
|
}
|
2010-12-15 20:15:24 +00:00
|
|
|
|
2010-02-03 14:05:17 +00:00
|
|
|
// Tools to show/hide toolbars:
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledSeparator( m_mainToolBar, this );
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR,
|
2010-08-24 17:26:51 +00:00
|
|
|
wxEmptyString,
|
2018-01-08 04:05:03 +00:00
|
|
|
KiScaledBitmap( layers_manager_xpm, this ),
|
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
|
|
|
|
|
|
|
|
2016-08-16 10:56:20 +00:00
|
|
|
#define NO_SELECTION_STRING _("<No selection>")
|
|
|
|
|
2016-08-17 08:19:10 +00:00
|
|
|
void GERBVIEW_FRAME::updateDCodeSelectBox()
|
|
|
|
{
|
|
|
|
m_DCodeSelector->Clear();
|
|
|
|
|
|
|
|
// Add an empty string to deselect net highlight
|
|
|
|
m_DCodeSelector->Append( NO_SELECTION_STRING );
|
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
int layer = GetActiveLayer();
|
2016-08-17 08:19:10 +00:00
|
|
|
GERBER_FILE_IMAGE* gerber = GetGbrImage( layer );
|
|
|
|
|
|
|
|
if( !gerber || gerber->GetDcodesCount() == 0 )
|
|
|
|
{
|
|
|
|
if( m_DCodeSelector->GetSelection() != 0 )
|
|
|
|
m_DCodeSelector->SetSelection( 0 );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the aperture list of the current layer, and add it to the combo box:
|
|
|
|
wxArrayString dcode_list;
|
|
|
|
wxString msg;
|
2018-02-02 15:56:09 +00:00
|
|
|
const char* units = GetUserUnits() == INCHES ? "mils" : "mm";
|
|
|
|
double scale = GetUserUnits() == INCHES ? IU_PER_MILS : IU_PER_MM;
|
2016-08-17 08:19:10 +00:00
|
|
|
|
|
|
|
for( int ii = 0; ii < TOOLS_MAX_COUNT; ii++ )
|
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
D_CODE* dcode = gerber->GetDCODE( ii + FIRST_DCODE );
|
2016-08-17 08:19:10 +00:00
|
|
|
|
|
|
|
if( dcode == NULL )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !dcode->m_InUse && !dcode->m_Defined )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
msg.Printf( "tool %d [%.3fx%.3f %s] %s",
|
|
|
|
dcode->m_Num_Dcode,
|
2020-04-10 13:57:02 +00:00
|
|
|
dcode->m_Size.x / scale, dcode->m_Size.y / scale,
|
2016-08-17 08:19:10 +00:00
|
|
|
units,
|
|
|
|
D_CODE::ShowApertureType( dcode->m_Shape )
|
|
|
|
);
|
|
|
|
if( !dcode->m_AperFunction.IsEmpty() )
|
|
|
|
msg << ", " << dcode->m_AperFunction;
|
|
|
|
|
|
|
|
dcode_list.Add( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_DCodeSelector->AppendDCodeList( dcode_list );
|
|
|
|
|
|
|
|
if( dcode_list.size() > 1 )
|
|
|
|
{
|
|
|
|
wxSize size = m_DCodeSelector->GetBestSize();
|
|
|
|
size.x = std::max( size.x, 100 );
|
|
|
|
m_DCodeSelector->SetMinSize( size );
|
|
|
|
m_auimgr.Update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-13 21:59:46 +00:00
|
|
|
|
2016-08-17 08:19:10 +00:00
|
|
|
void GERBVIEW_FRAME::updateComponentListSelectBox()
|
2016-08-16 10:56:20 +00:00
|
|
|
{
|
|
|
|
m_SelComponentBox->Clear();
|
|
|
|
|
|
|
|
// Build the full list of component names from the partial lists stored in each file image
|
|
|
|
std::map<wxString, int> full_list;
|
|
|
|
|
|
|
|
for( unsigned layer = 0; layer < GetImagesList()->ImagesMaxCount(); ++layer )
|
|
|
|
{
|
|
|
|
GERBER_FILE_IMAGE* gerber = GetImagesList()->GetGbrImage( layer );
|
|
|
|
|
|
|
|
if( gerber == NULL ) // Graphic layer not yet used
|
|
|
|
continue;
|
|
|
|
|
|
|
|
full_list.insert( gerber->m_ComponentsList.begin(), gerber->m_ComponentsList.end() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add an empty string to deselect net highlight
|
|
|
|
m_SelComponentBox->Append( NO_SELECTION_STRING );
|
|
|
|
|
|
|
|
// Now copy the list to the choice box
|
|
|
|
for( auto ii = full_list.begin(); ii != full_list.end(); ++ii )
|
|
|
|
{
|
|
|
|
m_SelComponentBox->Append( ii->first );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_SelComponentBox->SetSelection( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GERBVIEW_FRAME::updateNetnameListSelectBox()
|
|
|
|
{
|
|
|
|
m_SelNetnameBox->Clear();
|
|
|
|
|
|
|
|
// Build the full list of netnames from the partial lists stored in each file image
|
|
|
|
std::map<wxString, int> full_list;
|
|
|
|
|
|
|
|
for( unsigned layer = 0; layer < GetImagesList()->ImagesMaxCount(); ++layer )
|
|
|
|
{
|
|
|
|
GERBER_FILE_IMAGE* gerber = GetImagesList()->GetGbrImage( layer );
|
|
|
|
|
|
|
|
if( gerber == NULL ) // Graphic layer not yet used
|
|
|
|
continue;
|
|
|
|
|
|
|
|
full_list.insert( gerber->m_NetnamesList.begin(), gerber->m_NetnamesList.end() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add an empty string to deselect net highlight
|
|
|
|
m_SelNetnameBox->Append( NO_SELECTION_STRING );
|
|
|
|
|
|
|
|
// Now copy the list to the choice box
|
|
|
|
for( auto ii = full_list.begin(); ii != full_list.end(); ++ii )
|
|
|
|
{
|
|
|
|
m_SelNetnameBox->Append( ii->first );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_SelNetnameBox->SetSelection( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GERBVIEW_FRAME::updateAperAttributesSelectBox()
|
|
|
|
{
|
|
|
|
m_SelAperAttributesBox->Clear();
|
|
|
|
|
|
|
|
// Build the full list of netnames from the partial lists stored in each file image
|
|
|
|
std::map<wxString, int> full_list;
|
|
|
|
|
|
|
|
for( unsigned layer = 0; layer < GetImagesList()->ImagesMaxCount(); ++layer )
|
|
|
|
{
|
|
|
|
GERBER_FILE_IMAGE* gerber = GetImagesList()->GetGbrImage( layer );
|
|
|
|
|
|
|
|
if( gerber == NULL ) // Graphic layer not yet used
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( gerber->GetDcodesCount() == 0 )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for( int ii = 0; ii < TOOLS_MAX_COUNT; ii++ )
|
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
D_CODE* aperture = gerber->GetDCODE( ii + FIRST_DCODE );
|
2016-08-16 10:56:20 +00:00
|
|
|
|
|
|
|
if( aperture == NULL )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !aperture->m_InUse && !aperture->m_Defined )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !aperture->m_AperFunction.IsEmpty() )
|
|
|
|
full_list.insert( std::make_pair( aperture->m_AperFunction, 0 ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add an empty string to deselect net highlight
|
|
|
|
m_SelAperAttributesBox->Append( NO_SELECTION_STRING );
|
|
|
|
|
|
|
|
// Now copy the list to the choice box
|
|
|
|
for( auto ii = full_list.begin(); ii != full_list.end(); ++ii )
|
|
|
|
{
|
|
|
|
m_SelAperAttributesBox->Append( ii->first );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_SelAperAttributesBox->SetSelection( 0 );
|
|
|
|
}
|
|
|
|
|
2018-03-13 21:59:46 +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
|
|
|
|
|
|
|
|
2018-03-13 21:59:46 +00:00
|
|
|
void GERBVIEW_FRAME::OnToggleCoordType( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
m_DisplayOptions.m_DisplayPolarCood = !m_DisplayOptions.m_DisplayPolarCood;
|
|
|
|
|
|
|
|
UpdateStatusBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateCoordType( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
aEvent.Check( m_DisplayOptions.m_DisplayPolarCood );
|
2018-03-13 21:59:46 +00:00
|
|
|
|
|
|
|
if( m_optionsToolBar )
|
|
|
|
m_optionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_SHOW_POLAR_COORD,
|
|
|
|
m_DisplayOptions.m_DisplayPolarCood ?
|
2018-03-16 13:41:53 +00:00
|
|
|
_( "Turn on rectangular coordinates" ) :
|
|
|
|
_( "Turn on polar coordinates" ) );
|
2012-05-04 17:44:42 +00:00
|
|
|
}
|
|
|
|
|
2018-03-13 21:59:46 +00:00
|
|
|
|
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 );
|
2018-03-13 21:59:46 +00:00
|
|
|
|
|
|
|
if( m_optionsToolBar )
|
|
|
|
m_optionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH,
|
|
|
|
m_DisplayOptions.m_DisplayFlashedItemsFill ?
|
|
|
|
_( "Show flashed items in outline mode" ) :
|
|
|
|
_( "Show flashed items in fill mode" ) );
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
|
2018-03-13 21:59:46 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateLineDrawMode( wxUpdateUIEvent& aEvent )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
aEvent.Check( !m_DisplayOptions.m_DisplayLinesFill );
|
2018-03-13 21:59:46 +00:00
|
|
|
|
|
|
|
if( m_optionsToolBar )
|
|
|
|
m_optionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_SHOW_LINES_SKETCH,
|
|
|
|
m_DisplayOptions.m_DisplayFlashedItemsFill ?
|
|
|
|
_( "Show lines in outline mode" ) :
|
|
|
|
_( "Show lines in fill mode" ) );
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
|
2018-03-13 21:59:46 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdatePolygonDrawMode( wxUpdateUIEvent& aEvent )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
aEvent.Check( !m_DisplayOptions.m_DisplayPolygonsFill );
|
2018-03-13 21:59:46 +00:00
|
|
|
|
|
|
|
if( m_optionsToolBar )
|
|
|
|
m_optionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_SHOW_POLYGONS_SKETCH,
|
|
|
|
m_DisplayOptions.m_DisplayFlashedItemsFill ?
|
|
|
|
_( "Show polygons in outline mode" ) :
|
|
|
|
_( "Show polygons in fill mode" ) );
|
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
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
aEvent.Check( IsElementVisible( LAYER_DCODES ) );
|
2018-03-13 21:59:46 +00:00
|
|
|
|
|
|
|
if( m_optionsToolBar )
|
|
|
|
m_optionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_SHOW_DCODES,
|
|
|
|
IsElementVisible( LAYER_DCODES ) ?
|
|
|
|
_( "Hide DCodes" ) : _( "Show DCodes" ) );
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2013-01-06 13:31:49 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateShowNegativeItems( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
aEvent.Check( IsElementVisible( LAYER_NEGATIVE_OBJECTS ) );
|
2018-03-13 21:59:46 +00:00
|
|
|
|
|
|
|
if( m_optionsToolBar )
|
|
|
|
m_optionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_SHOW_NEGATIVE_ITEMS,
|
|
|
|
IsElementVisible( LAYER_NEGATIVE_OBJECTS ) ?
|
|
|
|
_( "Show negative objects in normal color" ) :
|
|
|
|
_( "Show negative objects in ghost color" ) );
|
2013-01-06 13:31:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-18 01:26:07 +00:00
|
|
|
void GERBVIEW_FRAME::OnUpdateDiffMode( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
aEvent.Check( m_DisplayOptions.m_DiffMode );
|
2018-03-13 21:59:46 +00:00
|
|
|
|
|
|
|
if( m_optionsToolBar )
|
|
|
|
m_optionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_DIFF_MODE,
|
|
|
|
m_DisplayOptions.m_DiffMode ?
|
|
|
|
_( "Show layers in normal mode" ) :
|
|
|
|
_( "Show layers in differential mode" ) );
|
2017-09-18 01:26:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GERBVIEW_FRAME::OnUpdateHighContrastMode( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
aEvent.Check( m_DisplayOptions.m_HighContrastMode );
|
2018-03-13 21:59:46 +00:00
|
|
|
|
|
|
|
if( m_optionsToolBar )
|
|
|
|
m_optionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_HIGH_CONTRAST_MODE,
|
|
|
|
m_DisplayOptions.m_HighContrastMode ?
|
|
|
|
_( "Disable high contrast mode" ) :
|
|
|
|
_( "Enable high contrast mode" ) );
|
2017-09-18 01:26:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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 )
|
2018-03-13 21:59:46 +00:00
|
|
|
m_optionsToolBar->SetToolShortHelp( aEvent.GetId(), _( "Hide layers manager" ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
else
|
2018-03-13 21:59:46 +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
|
|
|
{
|
2016-08-17 08:19:10 +00:00
|
|
|
if( !m_DCodeSelector )
|
|
|
|
return;
|
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
int layer = GetActiveLayer();
|
2016-06-18 09:37:36 +00:00
|
|
|
GERBER_FILE_IMAGE* gerber = 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
|
|
|
aEvent.Enable( gerber != NULL );
|
2016-08-17 08:19:10 +00:00
|
|
|
|
|
|
|
if( m_DCodeSelector->GetSelectedDCodeId() != selected )
|
|
|
|
{
|
|
|
|
m_DCodeSelector->SetDCodeSelection( selected );
|
|
|
|
// Be sure the selection can be made. If no, set to
|
|
|
|
// a correct value
|
2016-09-26 17:29:00 +00:00
|
|
|
if( gerber )
|
|
|
|
gerber->m_Selected_Tool = m_DCodeSelector->GetSelectedDCodeId();
|
2016-08-17 08:19:10 +00:00
|
|
|
}
|
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
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
if( m_SelLayerBox->GetSelection() != GetActiveLayer() )
|
2011-02-21 13:54:29 +00:00
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
m_SelLayerBox->SetSelection( GetActiveLayer() );
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
|
|
|
}
|