2012-02-09 20:33:38 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2014-10-15 11:40:38 +00:00
|
|
|
* Copyright (C) 2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2012-06-08 09:56:42 +00:00
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2018-03-16 12:38:36 +00:00
|
|
|
* Copyright (C) 2012 Wayne Stambaugh <stambaughw@gmail.com>
|
2021-07-19 23:56:05 +00:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-02-09 20:33:38 +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.
|
2012-02-09 20:33:38 +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.
|
2012-02-09 20:33:38 +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/>.
|
2012-02-09 20:33:38 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-09 21:57:23 +00:00
|
|
|
|
2022-01-17 11:55:55 +00:00
|
|
|
#include <advanced_config.h>
|
2016-03-11 16:40:24 +00:00
|
|
|
#include <macros.h>
|
2019-06-09 21:57:23 +00:00
|
|
|
#include <bitmaps.h>
|
|
|
|
#include <tool/action_toolbar.h>
|
2019-05-18 10:27:36 +00:00
|
|
|
#include <tool/conditional_menu.h>
|
|
|
|
#include <tool/tool_manager.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include <tools/pcb_selection_tool.h>
|
2019-06-02 14:34:19 +00:00
|
|
|
#include <tools/pcb_actions.h>
|
2018-01-31 12:37:36 +00:00
|
|
|
#include "footprint_viewer_frame.h"
|
2016-03-11 16:40:24 +00:00
|
|
|
#include "pcbnew_id.h"
|
2020-06-06 17:42:04 +00:00
|
|
|
#include <widgets/wx_menubar.h>
|
2023-04-09 21:59:01 +00:00
|
|
|
#include <wx/choice.h>
|
2012-02-09 20:33:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
void FOOTPRINT_VIEWER_FRAME::ReCreateHToolbar()
|
|
|
|
{
|
2019-01-18 16:24:40 +00:00
|
|
|
// Note:
|
|
|
|
// To rebuild the aui toolbar, the more easy way is to clear ( calling m_mainToolBar.Clear() )
|
|
|
|
// all wxAuiToolBarItems.
|
|
|
|
// However the wxAuiToolBarItems are not the owners of controls managed by
|
|
|
|
// them ( m_zoomSelectBox and m_gridSelectBox ), and therefore do not delete them
|
|
|
|
// So we do not recreate them after clearing the tools.
|
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
if( m_mainToolBar )
|
2020-09-26 23:55:59 +00:00
|
|
|
{
|
2020-06-23 10:42:23 +00:00
|
|
|
m_mainToolBar->ClearToolbar();
|
2020-09-26 23:55:59 +00:00
|
|
|
}
|
2018-01-08 04:05:03 +00:00
|
|
|
else
|
2020-09-26 23:55:59 +00:00
|
|
|
{
|
2019-05-14 19:21:10 +00:00
|
|
|
m_mainToolBar = new ACTION_TOOLBAR( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
|
2021-07-19 23:56:05 +00:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_HORZ_LAYOUT |
|
|
|
|
wxAUI_TB_HORIZONTAL );
|
2020-09-26 23:55:59 +00:00
|
|
|
m_mainToolBar->SetAuiManager( &m_auimgr );
|
|
|
|
}
|
2012-02-09 20:33:38 +00:00
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
// Set up toolbar
|
|
|
|
m_mainToolBar->AddTool( ID_MODVIEW_PREVIOUS, wxEmptyString,
|
2021-03-08 02:59:07 +00:00
|
|
|
KiScaledBitmap( BITMAPS::lib_previous, this ),
|
2018-01-08 04:05:03 +00:00
|
|
|
_( "Display previous footprint" ) );
|
|
|
|
m_mainToolBar->AddTool( ID_MODVIEW_NEXT, wxEmptyString,
|
2021-03-08 02:59:07 +00:00
|
|
|
KiScaledBitmap( BITMAPS::lib_next, this ),
|
2018-01-08 04:05:03 +00:00
|
|
|
_( "Display next footprint" ) );
|
|
|
|
|
2020-06-17 11:03:25 +00:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-05-14 19:21:10 +00:00
|
|
|
m_mainToolBar->Add( ACTIONS::zoomRedraw );
|
|
|
|
m_mainToolBar->Add( ACTIONS::zoomInCenter );
|
|
|
|
m_mainToolBar->Add( ACTIONS::zoomOutCenter );
|
|
|
|
m_mainToolBar->Add( ACTIONS::zoomFitScreen );
|
2021-09-19 16:31:10 +00:00
|
|
|
m_mainToolBar->Add( ACTIONS::zoomTool, ACTION_TOOLBAR::TOGGLE, ACTION_TOOLBAR::CANCEL );
|
2018-01-08 04:05:03 +00:00
|
|
|
|
2020-06-17 11:03:25 +00:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-06-02 14:34:19 +00:00
|
|
|
m_mainToolBar->Add( ACTIONS::show3DViewer );
|
2019-04-15 21:09:14 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ADD_FOOTPRINT_TO_BOARD, wxEmptyString,
|
2021-03-08 02:59:07 +00:00
|
|
|
KiScaledBitmap( BITMAPS::insert_module_board, this ),
|
2019-04-15 21:09:14 +00:00
|
|
|
_( "Insert footprint in board" ) );
|
2012-02-09 20:33:38 +00:00
|
|
|
|
2020-06-17 11:03:25 +00:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2018-09-11 15:28:57 +00:00
|
|
|
|
|
|
|
// Grid selection choice box.
|
2019-01-18 16:24:40 +00:00
|
|
|
if( m_gridSelectBox == nullptr )
|
2021-09-19 16:31:10 +00:00
|
|
|
{
|
2023-04-09 21:59:01 +00:00
|
|
|
m_gridSelectBox = new wxChoice( m_mainToolBar, ID_ON_GRID_SELECT, wxDefaultPosition,
|
|
|
|
wxDefaultSize, 0, nullptr );
|
2021-09-19 16:31:10 +00:00
|
|
|
}
|
2019-01-28 14:15:32 +00:00
|
|
|
|
2018-11-23 23:33:02 +00:00
|
|
|
UpdateGridSelectBox();
|
2018-09-11 15:28:57 +00:00
|
|
|
m_mainToolBar->AddControl( m_gridSelectBox );
|
|
|
|
|
2020-06-17 11:03:25 +00:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2018-09-11 15:28:57 +00:00
|
|
|
|
|
|
|
// Zoom selection choice box.
|
2019-01-18 16:24:40 +00:00
|
|
|
if( m_zoomSelectBox == nullptr )
|
2021-09-19 16:31:10 +00:00
|
|
|
{
|
2023-04-09 21:59:01 +00:00
|
|
|
m_zoomSelectBox = new wxChoice( m_mainToolBar, ID_ON_ZOOM_SELECT, wxDefaultPosition,
|
|
|
|
wxDefaultSize, 0, nullptr );
|
2021-09-19 16:31:10 +00:00
|
|
|
}
|
2019-01-28 14:15:32 +00:00
|
|
|
|
2020-06-14 15:08:47 +00:00
|
|
|
UpdateZoomSelectBox();
|
2018-09-11 15:28:57 +00:00
|
|
|
m_mainToolBar->AddControl( m_zoomSelectBox );
|
|
|
|
|
Fix typos in pcbnew sub-directory
Found via `codespell -q 3 -S *.po,./thirdparty,./Documentation/changelogs -L aactual,acount,aline,alocation,alog,anormal,anumber,aother,apoints,aparent,aray,ba,busses,dout,einstance,leaded,modul,ontext,ot,overide,serie,te,,tesselate,tesselator,tht`
2022-06-29 20:21:10 +00:00
|
|
|
// Option to run Zoom automatique on footprint selection change
|
2022-04-18 08:32:36 +00:00
|
|
|
m_mainToolBar->AddTool( ID_FPVIEWER_AUTOZOOM_TOOL, wxEmptyString,
|
|
|
|
KiScaledBitmap( BITMAPS::zoom_auto_fit_in_page, this ),
|
|
|
|
_( "Automatic Zoom on footprint change" ),
|
|
|
|
wxITEM_CHECK );
|
|
|
|
|
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
// after adding the buttons to the toolbar, must call Realize() to
|
|
|
|
// reflect the changes
|
2020-11-06 01:56:02 +00:00
|
|
|
m_mainToolBar->KiRealize();
|
2012-02-09 20:33:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-23 17:14:49 +00:00
|
|
|
void FOOTPRINT_VIEWER_FRAME::ReCreateOptToolbar()
|
|
|
|
{
|
|
|
|
if( m_optionsToolBar )
|
2020-09-26 23:55:59 +00:00
|
|
|
{
|
2020-06-23 10:42:23 +00:00
|
|
|
m_optionsToolBar->ClearToolbar();
|
2020-09-26 23:55:59 +00:00
|
|
|
}
|
2020-06-17 11:03:25 +00:00
|
|
|
else
|
2020-09-26 23:55:59 +00:00
|
|
|
{
|
2021-07-19 23:56:05 +00:00
|
|
|
m_optionsToolBar = new ACTION_TOOLBAR( this, ID_OPT_TOOLBAR, wxDefaultPosition,
|
|
|
|
wxDefaultSize,
|
2020-06-17 11:03:25 +00:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_VERTICAL );
|
2020-09-26 23:55:59 +00:00
|
|
|
m_optionsToolBar->SetAuiManager( &m_auimgr );
|
|
|
|
}
|
2020-05-23 17:14:49 +00:00
|
|
|
|
|
|
|
m_optionsToolBar->Add( ACTIONS::selectionTool, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( ACTIONS::measureTool, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
|
2020-06-17 11:03:25 +00:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2020-05-23 17:14:49 +00:00
|
|
|
m_optionsToolBar->Add( ACTIONS::toggleGrid, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( ACTIONS::togglePolarCoords, ACTION_TOOLBAR::TOGGLE );
|
2020-10-03 23:34:23 +00:00
|
|
|
m_optionsToolBar->Add( ACTIONS::inchesUnits, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( ACTIONS::milsUnits, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( ACTIONS::millimetersUnits, ACTION_TOOLBAR::TOGGLE );
|
2020-05-23 17:14:49 +00:00
|
|
|
m_optionsToolBar->Add( ACTIONS::toggleCursorStyle, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
|
2020-06-17 11:03:25 +00:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2020-05-23 17:14:49 +00:00
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::showPadNumbers, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::padDisplayMode, ACTION_TOOLBAR::TOGGLE );
|
2020-05-26 22:21:38 +00:00
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::textOutlines, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::graphicsOutlines, ACTION_TOOLBAR::TOGGLE );
|
2020-05-23 17:14:49 +00:00
|
|
|
|
2022-01-17 11:55:55 +00:00
|
|
|
if( ADVANCED_CFG::GetCfg().m_DrawBoundingBoxes )
|
|
|
|
m_optionsToolBar->Add( ACTIONS::toggleBoundingBoxes, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
|
2020-11-06 01:56:02 +00:00
|
|
|
m_optionsToolBar->KiRealize();
|
2020-05-23 17:14:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-09 20:33:38 +00:00
|
|
|
void FOOTPRINT_VIEWER_FRAME::ReCreateVToolbar()
|
|
|
|
{
|
2020-06-17 11:03:25 +00:00
|
|
|
// This toolbar is not currently used
|
2012-02-09 20:33:38 +00:00
|
|
|
}
|
2014-10-15 11:40:38 +00:00
|
|
|
|
|
|
|
|
2022-12-16 21:37:32 +00:00
|
|
|
void FOOTPRINT_VIEWER_FRAME::doReCreateMenuBar()
|
2014-10-15 11:40:38 +00:00
|
|
|
{
|
2020-12-16 13:31:32 +00:00
|
|
|
PCB_SELECTION_TOOL* selTool = m_toolManager->GetTool<PCB_SELECTION_TOOL>();
|
2021-07-19 23:56:05 +00:00
|
|
|
|
2018-04-07 13:13:38 +00:00
|
|
|
// wxWidgets handles the Mac Application menu behind the scenes, but that means
|
|
|
|
// we always have to start from scratch with a new wxMenuBar.
|
2020-06-06 17:42:04 +00:00
|
|
|
wxMenuBar* oldMenuBar = GetMenuBar();
|
|
|
|
WX_MENUBAR* menuBar = new WX_MENUBAR();
|
2014-10-15 11:40:38 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
//----- File menu -----------------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* fileMenu = new ACTION_MENU( false, selTool );
|
2014-10-15 11:40:38 +00:00
|
|
|
|
2019-08-13 23:34:05 +00:00
|
|
|
fileMenu->AddClose( _( "Footprint Viewer" ) );
|
2019-06-25 04:44:34 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
//----- View menu -----------------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* viewMenu = new ACTION_MENU( false, selTool );
|
2014-10-15 11:40:38 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
viewMenu->Add( ACTIONS::zoomInCenter );
|
|
|
|
viewMenu->Add( ACTIONS::zoomOutCenter );
|
|
|
|
viewMenu->Add( ACTIONS::zoomFitScreen );
|
|
|
|
viewMenu->Add( ACTIONS::zoomRedraw );
|
2014-10-15 11:40:38 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
viewMenu->Add( ACTIONS::show3DViewer );
|
2014-10-15 11:40:38 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
//----- Menubar -------------------------------------------------------------
|
|
|
|
//
|
2014-10-15 11:40:38 +00:00
|
|
|
menuBar->Append( fileMenu, _( "&File" ) );
|
|
|
|
menuBar->Append( viewMenu, _( "&View" ) );
|
2019-05-18 10:27:36 +00:00
|
|
|
AddStandardHelpMenu( menuBar );
|
2014-10-15 11:40:38 +00:00
|
|
|
|
2018-04-07 13:13:38 +00:00
|
|
|
SetMenuBar( menuBar );
|
|
|
|
delete oldMenuBar;
|
2014-10-15 11:40:38 +00:00
|
|
|
}
|