KiCad PCB EDA Suite
Loading...
Searching...
No Matches
tool_base.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) 2013 CERN
5 * @author Tomasz Wlostowski <[email protected]>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#include <tool/tool_event.h>
26#include <tool/tool_manager.h>
27
28#include <eda_draw_frame.h>
29#include <eda_base_frame.h>
30
32{
34}
35
37{
38 return m_toolMgr->GetView();
39}
40
41
43{
44 return m_toolMgr->GetViewControls();
45}
46
47
49{
50 return m_toolMgr->GetToolHolder();
51}
52
53
55{
56 return m_toolMgr->GetModel();
57}
58
59
61{
62 m_toolMgr = aManager;
63}
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:88
An interface for classes handling user events controlling the view behavior such as zooming,...
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
TOOLS_HOLDER * getToolHolderInt() const
Definition: tool_base.cpp:48
EDA_ITEM * getModelInt() const
Definition: tool_base.cpp:54
KIGFX::VIEW_CONTROLS * getViewControls() const
Return the instance of VIEW_CONTROLS object used in the application.
Definition: tool_base.cpp:42
TOOL_MANAGER * m_toolMgr
Definition: tool_base.h:216
KIGFX::VIEW * getView() const
Returns the instance of #VIEW object used in the application.
Definition: tool_base.cpp:36
bool IsToolActive() const
Definition: tool_base.cpp:31
TOOL_ID m_toolId
Name of the tool.
Definition: tool_base.h:211
void attachManager(TOOL_MANAGER *aManager)
Set the TOOL_MANAGER the tool will belong to.
Definition: tool_base.cpp:60
Master controller class:
Definition: tool_manager.h:57
TOOLS_HOLDER * GetToolHolder() const
Definition: tool_manager.h:397
KIGFX::VIEW_CONTROLS * GetViewControls() const
Definition: tool_manager.h:388
EDA_ITEM * GetModel() const
Definition: tool_manager.h:393
KIGFX::VIEW * GetView() const
Definition: tool_manager.h:386
bool IsToolActive(TOOL_ID aId) const
Return true if a tool with given id is active (executing)
Base window classes and related definitions.