2013-08-07 09:20:12 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 CERN
|
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2013-08-02 14:46:53 +00:00
|
|
|
#include <tool/tool_event.h>
|
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
|
2019-06-08 22:14:57 +00:00
|
|
|
#include <eda_draw_frame.h>
|
2019-05-14 12:39:34 +00:00
|
|
|
#include <eda_base_frame.h>
|
2015-07-02 14:09:51 +00:00
|
|
|
|
2017-08-29 23:15:23 +00:00
|
|
|
bool TOOL_BASE::IsToolActive() const
|
|
|
|
{
|
|
|
|
return m_toolMgr->IsToolActive( m_toolId );
|
|
|
|
}
|
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
KIGFX::VIEW* TOOL_BASE::getView() const
|
2013-08-02 14:46:53 +00:00
|
|
|
{
|
2013-10-14 11:43:57 +00:00
|
|
|
return m_toolMgr->GetView();
|
2013-08-02 14:46:53 +00:00
|
|
|
}
|
|
|
|
|
2013-08-07 09:20:12 +00:00
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
KIGFX::VIEW_CONTROLS* TOOL_BASE::getViewControls() const
|
2013-10-14 11:43:57 +00:00
|
|
|
{
|
|
|
|
return m_toolMgr->GetViewControls();
|
2013-08-02 14:46:53 +00:00
|
|
|
}
|
2013-08-07 09:20:12 +00:00
|
|
|
|
|
|
|
|
2020-03-24 01:01:23 +00:00
|
|
|
TOOLS_HOLDER* TOOL_BASE::getToolHolderInt() const
|
2013-08-02 14:46:53 +00:00
|
|
|
{
|
2020-03-24 01:01:23 +00:00
|
|
|
return m_toolMgr->GetToolHolder();
|
2013-08-02 14:46:53 +00:00
|
|
|
}
|
|
|
|
|
2013-08-07 09:20:12 +00:00
|
|
|
|
2013-09-26 09:22:59 +00:00
|
|
|
EDA_ITEM* TOOL_BASE::getModelInt() const
|
2013-08-02 14:46:53 +00:00
|
|
|
{
|
2013-10-14 11:43:57 +00:00
|
|
|
return m_toolMgr->GetModel();
|
2013-08-07 09:20:12 +00:00
|
|
|
}
|
2015-07-02 14:09:51 +00:00
|
|
|
|
2015-07-02 14:11:15 +00:00
|
|
|
|
2015-07-02 14:09:51 +00:00
|
|
|
void TOOL_BASE::attachManager( TOOL_MANAGER* aManager )
|
|
|
|
{
|
|
|
|
m_toolMgr = aManager;
|
2015-08-07 16:17:51 +00:00
|
|
|
}
|