KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_viewer_tools.h
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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef PCB_VIEWER_TOOLS_H_
21#define PCB_VIEWER_TOOLS_H_
22
23#include <board.h>
25#include <pcbnew_settings.h>
26#include <pcb_base_frame.h>
27#include <pcb_view.h>
28
29
37{
38public:
40 TOOL_INTERACTIVE( "pcbnew.PCBViewerTools" ),
41 m_footprintFrame( false ),
42 m_isDefaultTool( false )
43 {}
44
45 ~PCB_VIEWER_TOOLS() override {}
46
47 bool Init() override;
48
50 void Reset( RESET_REASON aReason ) override;
51
53 int MeasureTool( const TOOL_EVENT& aEvent );
54 int NextLineMode( const TOOL_EVENT& aEvent );
55
56 // Display modes
57 int ShowPadNumbers( const TOOL_EVENT& aEvent );
58 int PadDisplayMode( const TOOL_EVENT& aEvent );
59 int GraphicOutlines( const TOOL_EVENT& aEvent );
60 int TextOutlines( const TOOL_EVENT& aEvent );
61
63 int FootprintAutoZoom( const TOOL_EVENT& aEvent );
64
66 int Show3DViewer( const TOOL_EVENT& aEvent );
67
69 void setTransitions() override;
70
79 void SetFootprintFrame( bool aIsFrame )
80 {
81 m_footprintFrame = aIsFrame;
82 }
83
84 void SetIsDefaultTool( bool aIsDefaultTool )
85 {
86 m_isDefaultTool = aIsDefaultTool;
87 }
88
89 bool IsFootprintFrame() const
90 {
91 return m_footprintFrame;
92 }
93
94protected:
96 {
98 }
99
101 {
102 return static_cast<KIGFX::PCB_VIEW*>( getView() );
103 }
104
109
111 {
112 return static_cast<PCB_DRAW_PANEL_GAL*>( frame()->GetCanvas() );
113 }
114
115 BOARD* board() const
116 {
117 return getModel<BOARD>();
118 }
119
121 {
122 return board()->GetFirstFootprint();
123 }
124
125protected:
128};
129
130#endif
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:372
FOOTPRINT * GetFirstFootprint() const
Get the first footprint on the board or nullptr.
Definition board.h:587
DISPLAY_OPTIONS m_Display
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
PCBNEW_SETTINGS * GetPcbNewSettings() const
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
bool Init() override
Init() is called once upon a registration of the tool.
void SetFootprintFrame(bool aIsFrame)
Toggle edit footprint mode.
bool m_isDefaultTool
Indicates no selection tool is present in the current toolset.
int FootprintAutoZoom(const TOOL_EVENT &aEvent)
Automatically zoom to fit on footprints.
PCBNEW_SETTINGS::DISPLAY_OPTIONS & displayOptions() const
~PCB_VIEWER_TOOLS() override
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
PCB_BASE_FRAME * frame() const
int PadDisplayMode(const TOOL_EVENT &aEvent)
FOOTPRINT * footprint() const
BOARD * board() const
KIGFX::PCB_VIEW * view() const
int MeasureTool(const TOOL_EVENT &aEvent)
int TextOutlines(const TOOL_EVENT &aEvent)
PCB_DRAW_PANEL_GAL * canvas() const
bool IsFootprintFrame() const
int Show3DViewer(const TOOL_EVENT &aEvent)
Show the 3D viewer.
int NextLineMode(const TOOL_EVENT &aEvent)
void SetIsDefaultTool(bool aIsDefaultTool)
int GraphicOutlines(const TOOL_EVENT &aEvent)
int ShowPadNumbers(const TOOL_EVENT &aEvent)
bool m_footprintFrame
Is this tool associated with a footprint frame.
T * getEditFrame() const
Return the application window object, casted to requested user type.
Definition tool_base.h:182
T * getModel() const
Return the model object if it matches the requested type.
Definition tool_base.h:195
KIGFX::VIEW * getView() const
Returns the instance of #VIEW object used in the application.
Definition tool_base.cpp:34
RESET_REASON
Determine the reason of reset for a tool.
Definition tool_base.h:74
Generic, UI-independent tool event.
Definition tool_event.h:167
TOOL_INTERACTIVE(TOOL_ID aId, const std::string &aName)
Create a tool with given id & name.
void Reset() override