mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
(Also moves editing of unit display names to the Symbol Properties dialog and retires the Set Unit Display Name dialog.) Fixes https://gitlab.com/kicad/code/kicad/-/issues/16069 Fixes https://gitlab.com/kicad/code/kicad/-/issues/14843
202 lines
7.4 KiB
C++
202 lines
7.4 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#include <advanced_config.h>
|
|
#include <eeschema_id.h>
|
|
#include <symbol_edit_frame.h>
|
|
#include <sch_painter.h>
|
|
#include <symbol_editor_settings.h>
|
|
#include <symbol_library_manager.h>
|
|
#include <toolbars_symbol_editor.h>
|
|
#include <tool/action_toolbar.h>
|
|
#include <tool/tool_manager.h>
|
|
#include <tools/sch_actions.h>
|
|
#include <tools/sch_selection_tool.h>
|
|
#include <widgets/sch_properties_panel.h>
|
|
#include <widgets/sch_properties_panel.h>
|
|
#include <widgets/wx_aui_utils.h>
|
|
#include <wx/combobox.h>
|
|
|
|
#ifdef __UNIX__
|
|
#define LISTBOX_WIDTH 140
|
|
#else
|
|
#define LISTBOX_WIDTH 120
|
|
#endif
|
|
|
|
|
|
std::optional<TOOLBAR_CONFIGURATION> SYMBOL_EDIT_TOOLBAR_SETTINGS::DefaultToolbarConfig( TOOLBAR_LOC aToolbar )
|
|
{
|
|
TOOLBAR_CONFIGURATION config;
|
|
|
|
// clang-format off
|
|
switch( aToolbar )
|
|
{
|
|
case TOOLBAR_LOC::TOP_AUX:
|
|
return std::nullopt;
|
|
|
|
case TOOLBAR_LOC::LEFT:
|
|
config.AppendAction( ACTIONS::toggleGrid )
|
|
.AppendAction( ACTIONS::toggleGridOverrides )
|
|
.AppendAction( ACTIONS::inchesUnits )
|
|
.AppendAction( ACTIONS::milsUnits )
|
|
.AppendAction( ACTIONS::millimetersUnits )
|
|
.AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Crosshair modes" ) )
|
|
.AddAction( ACTIONS::cursorSmallCrosshairs )
|
|
.AddAction( ACTIONS::cursorFullCrosshairs )
|
|
.AddAction( ACTIONS::cursor45Crosshairs ) );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( SCH_ACTIONS::showElectricalTypes )
|
|
.AppendAction( SCH_ACTIONS::showHiddenPins )
|
|
.AppendAction( SCH_ACTIONS::showHiddenFields );
|
|
// .AppendAction( SCH_ACTIONS::togglePinAltIcons );
|
|
|
|
if( ADVANCED_CFG::GetCfg().m_DrawBoundingBoxes )
|
|
config.AppendAction( ACTIONS::toggleBoundingBoxes );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( ACTIONS::showLibraryTree )
|
|
.AppendAction( ACTIONS::showProperties );
|
|
|
|
/* TODO: Implement context menus
|
|
EE_SELECTION_TOOL* selTool = m_toolManager->GetTool<EE_SELECTION_TOOL>();
|
|
std::unique_ptr<ACTION_MENU> gridMenu = std::make_unique<ACTION_MENU>( false, selTool );
|
|
gridMenu->Add( ACTIONS::gridProperties );
|
|
m_tbLeft->AddToolContextMenu( ACTIONS::toggleGrid, std::move( gridMenu ) );
|
|
*/
|
|
break;
|
|
|
|
case TOOLBAR_LOC::RIGHT:
|
|
config.AppendAction( ACTIONS::selectionTool );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( SCH_ACTIONS::placeSymbolPin )
|
|
.AppendAction( SCH_ACTIONS::placeSymbolText )
|
|
.AppendAction( SCH_ACTIONS::drawSymbolTextBox )
|
|
.AppendAction( SCH_ACTIONS::drawRectangle )
|
|
.AppendAction( SCH_ACTIONS::drawCircle )
|
|
.AppendAction( SCH_ACTIONS::drawArc )
|
|
.AppendAction( SCH_ACTIONS::drawBezier )
|
|
.AppendAction( SCH_ACTIONS::drawSymbolLines )
|
|
.AppendAction( SCH_ACTIONS::drawSymbolPolygon )
|
|
.AppendAction( SCH_ACTIONS::placeSymbolAnchor )
|
|
.AppendAction( ACTIONS::deleteTool);
|
|
break;
|
|
|
|
case TOOLBAR_LOC::TOP_MAIN:
|
|
config.AppendAction( SCH_ACTIONS::newSymbol );
|
|
|
|
/* TODO (ISM): Handle visibility changes
|
|
if( !IsSymbolFromSchematic() )
|
|
config.AppendAction( ACTIONS::saveAll );
|
|
else
|
|
config.AppendAction( ACTIONS::save );
|
|
*/
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( ACTIONS::undo )
|
|
.AppendAction( ACTIONS::redo );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( ACTIONS::find )
|
|
.AppendAction( ACTIONS::findAndReplace );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( ACTIONS::zoomRedraw )
|
|
.AppendAction( ACTIONS::zoomInCenter )
|
|
.AppendAction( ACTIONS::zoomOutCenter )
|
|
.AppendAction( ACTIONS::zoomFitScreen )
|
|
.AppendAction( ACTIONS::zoomTool );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( SCH_ACTIONS::rotateCCW )
|
|
.AppendAction( SCH_ACTIONS::rotateCW )
|
|
.AppendAction( SCH_ACTIONS::mirrorV )
|
|
.AppendAction( SCH_ACTIONS::mirrorH );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( SCH_ACTIONS::symbolProperties )
|
|
.AppendAction( SCH_ACTIONS::pinTable );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( ACTIONS::showDatasheet )
|
|
.AppendAction( SCH_ACTIONS::checkSymbol );
|
|
|
|
config.AppendSeparator()
|
|
.AppendControl( ACTION_TOOLBAR_CONTROLS::bodyStyleSelector );
|
|
|
|
config.AppendSeparator()
|
|
.AppendControl( ACTION_TOOLBAR_CONTROLS::unitSelector );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( SCH_ACTIONS::toggleSyncedPinsMode );
|
|
|
|
config.AppendSeparator()
|
|
.AppendAction( SCH_ACTIONS::addSymbolToSchematic );
|
|
break;
|
|
}
|
|
|
|
// clang-format on
|
|
return config;
|
|
}
|
|
|
|
|
|
void SYMBOL_EDIT_FRAME::configureToolbars()
|
|
{
|
|
SCH_BASE_FRAME::configureToolbars();
|
|
|
|
auto unitDisplayFactory =
|
|
[this]( ACTION_TOOLBAR* aToolbar )
|
|
{
|
|
if( !m_unitSelectBox )
|
|
{
|
|
m_unitSelectBox = new wxComboBox( aToolbar, ID_LIBEDIT_SELECT_UNIT_NUMBER,
|
|
wxEmptyString, wxDefaultPosition,
|
|
wxSize( LISTBOX_WIDTH, -1 ), 0,
|
|
nullptr, wxCB_READONLY );
|
|
}
|
|
|
|
aToolbar->Add( m_unitSelectBox );
|
|
};
|
|
|
|
auto bodyDisplayFactory =
|
|
[this]( ACTION_TOOLBAR* aToolbar )
|
|
{
|
|
if( !m_bodyStyleSelectBox )
|
|
{
|
|
m_bodyStyleSelectBox = new wxComboBox( aToolbar, ID_LIBEDIT_SELECT_BODY_STYLE,
|
|
wxEmptyString, wxDefaultPosition,
|
|
wxSize( LISTBOX_WIDTH, -1 ), 0,
|
|
nullptr, wxCB_READONLY );
|
|
}
|
|
|
|
aToolbar->Add( m_bodyStyleSelectBox );
|
|
};
|
|
|
|
RegisterCustomToolbarControlFactory( ACTION_TOOLBAR_CONTROLS::unitSelector, unitDisplayFactory );
|
|
RegisterCustomToolbarControlFactory( ACTION_TOOLBAR_CONTROLS::bodyStyleSelector, bodyDisplayFactory );
|
|
}
|
|
|