KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
toolbars_symbol_viewer.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 * Copyright (C) 2019 CERN
8 *
9 * This program is free software: you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your
12 * option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#include <bitmaps.h>
24#include <macros.h>
25#include <symbol_library.h>
26#include <eeschema_id.h>
27#include <symbol_viewer_frame.h>
28#include <sch_painter.h>
29#include <tool/action_menu.h>
30#include <tool/action_toolbar.h>
31#include <tools/sch_actions.h>
33#include <widgets/wx_menubar.h>
35
36std::optional<TOOLBAR_CONFIGURATION> SYMBOL_VIEWER_TOOLBAR_SETTINGS::DefaultToolbarConfig( TOOLBAR_LOC aToolbar )
37{
39
40 // clang-format off
41 switch( aToolbar )
42 {
43 case TOOLBAR_LOC::LEFT:
44 case TOOLBAR_LOC::RIGHT:
45 case TOOLBAR_LOC::TOP_AUX:
46 return std::nullopt;
47
48 case TOOLBAR_LOC::TOP_MAIN:
49 /* TODO (ISM): Move these to actions
50 m_tbTopMain->AddTool( ID_LIBVIEW_PREVIOUS, wxEmptyString,
51 KiScaledBitmap( BITMAPS::lib_previous, this ),
52 _( "Display previous symbol" ) );
53
54 m_tbTopMain->AddTool( ID_LIBVIEW_NEXT, wxEmptyString,
55 KiScaledBitmap( BITMAPS::lib_next, this ),
56 _( "Display next symbol" ) );
57 */
58
59 config.AppendSeparator()
60 .AppendAction( ACTIONS::zoomRedraw )
61 .AppendAction( ACTIONS::zoomInCenter )
62 .AppendAction( ACTIONS::zoomOutCenter )
63 .AppendAction( ACTIONS::zoomFitScreen );
64
65 config.AppendSeparator()
67 .AppendAction( SCH_ACTIONS::showPinNumbers );
68
69 config.AppendSeparator()
72
73 config.AppendSeparator()
75
76 config.AppendSeparator()
77 .AppendAction( ACTIONS::showDatasheet );
78
79 config.AppendSeparator()
80 .AppendAction( SCH_ACTIONS::addSymbolToSchematic );
81 break;
82 }
83
84 // clang-format on
85 return config;
86}
87
88
90{
92
93 // Toolbar widget for selecting the unit to show in the symbol viewer
94 auto unitChoiceFactory =
95 [this]( ACTION_TOOLBAR* aToolbar )
96 {
97 if( !m_unitChoice )
98 {
100 wxDefaultPosition, wxSize( 150, -1 ) );
101 }
102
103 aToolbar->Add( m_unitChoice );
104 };
105
107}
108
109
111{
113 // wxWidgets handles the OSX Application menu behind the scenes, but that means
114 // we always have to start from scratch with a new wxMenuBar.
115 wxMenuBar* oldMenuBar = GetMenuBar();
116 WX_MENUBAR* menuBar = new WX_MENUBAR();
117
118 //-- File menu -----------------------------------------------------------
119 //
120 ACTION_MENU* fileMenu = new ACTION_MENU( false, libControl );
121
122 fileMenu->AddClose( _( "Symbol Viewer" ) );
123
124
125 //-- View menu -----------------------------------------------------------
126 //
127 ACTION_MENU* viewMenu = new ACTION_MENU( false, libControl );
128
129 viewMenu->Add( ACTIONS::zoomInCenter );
130 viewMenu->Add( ACTIONS::zoomOutCenter );
131 viewMenu->Add( ACTIONS::zoomFitScreen );
132 viewMenu->Add( ACTIONS::zoomRedraw );
133
134 viewMenu->AppendSeparator();
135
136 viewMenu->AppendSeparator();
139
140
141 //-- Menubar -------------------------------------------------------------
142 //
143 menuBar->Append( fileMenu, _( "&File" ) );
144 menuBar->Append( viewMenu, _( "&View" ) );
145 AddStandardHelpMenu( menuBar );
146
147 SetMenuBar( menuBar );
148 delete oldMenuBar;
149}
static TOOL_ACTION zoomRedraw
Definition: actions.h:131
static TOOL_ACTION zoomOutCenter
Definition: actions.h:135
static TOOL_ACTION showDatasheet
Definition: actions.h:261
static TOOL_ACTION zoomFitScreen
Definition: actions.h:141
static TOOL_ACTION zoomInCenter
Definition: actions.h:134
Define the structure of a menu based on ACTIONs.
Definition: action_menu.h:49
static constexpr bool CHECK
Definition: action_menu.h:201
void AddClose(const wxString &aAppname="")
Add a standard close item to the menu with the accelerator key CTRL-W.
wxMenuItem * Add(const wxString &aLabel, int aId, BITMAPS aIcon)
Add a wxWidgets-style entry to the menu.
static ACTION_TOOLBAR_CONTROL unitSelector
Define the structure of a toolbar with buttons that invoke ACTIONs.
void SetMenuBar(wxMenuBar *menu_bar) override
void RegisterCustomToolbarControlFactory(const ACTION_TOOLBAR_CONTROL &aControlDesc, const ACTION_TOOLBAR_CONTROL_FACTORY &aControlFactory)
Register a creation factory for toolbar controls that are present in this frame.
virtual void configureToolbars()
ACTION_TOOLBAR * m_tbTopMain
void AddStandardHelpMenu(wxMenuBar *aMenuBar)
Add the standard KiCad help menu to the menubar.
static TOOL_ACTION showDeMorganAlternate
Definition: sch_actions.h:130
static TOOL_ACTION showElectricalTypes
Definition: sch_actions.h:250
static TOOL_ACTION showPinNumbers
Definition: sch_actions.h:251
static TOOL_ACTION showDeMorganStandard
Definition: sch_actions.h:129
static TOOL_ACTION addSymbolToSchematic
Definition: sch_actions.h:178
Handle actions for the various symbol editor and viewers.
void configureToolbars() override
std::optional< TOOLBAR_CONFIGURATION > DefaultToolbarConfig(TOOLBAR_LOC aToolbar) override
Get the default tools to show on the specified canvas toolbar.
TOOL_MANAGER * m_toolManager
Definition: tools_holder.h:171
Wrapper around a wxMenuBar object that prevents the accelerator table from being used.
Definition: wx_menubar.h:47
#define _(s)
@ ID_LIBVIEW_SELECT_UNIT_NUMBER
Definition: eeschema_id.h:65
This file contains miscellaneous commonly used macros and functions.
Definition for symbol library class.