kicad-source/pcbnew/tools/footprint_wizard_tools.h
2025-04-19 14:14:14 +02:00

78 lines
2.4 KiB
C++

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* 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
*/
#ifndef FOOTPRINT_WIZARD_TOOLS_H
#define FOOTPRINT_WIZARD_TOOLS_H
#include <tool/tool_interactive.h>
#include <footprint_wizard_frame.h>
class FOOTPRINT_WIZARD_FRAME;
/**
* Tool useful for viewing footprints.
*
* This tool is designed to be lighter-weight so that it doesn't bring in as many PcbNew
* dependencies (since it is used in cvpcb).
*/
class FOOTPRINT_WIZARD_TOOLS : public TOOL_INTERACTIVE
{
public:
FOOTPRINT_WIZARD_TOOLS() :
TOOL_INTERACTIVE( "pcbnew.FpWizard" ),
m_wizardFrame( nullptr )
{}
~FOOTPRINT_WIZARD_TOOLS() override {}
bool Init() override;
/// @copydoc TOOL_BASE::Reset()
void Reset( RESET_REASON aReason ) override;
///< Set up handlers for various events.
void setTransitions() override;
protected:
int ShowWizards( const TOOL_EVENT& aEvent );
int ResetWizardPrms( const TOOL_EVENT& aEvent );
int SelectPreviousWizardPage( const TOOL_EVENT& aEvent );
int SelectNextWizardPage( const TOOL_EVENT& aEvent );
int ExportFpToEditor( const TOOL_EVENT& aEvent );
FOOTPRINT_WIZARD_FRAME* frame() const
{
return getEditFrame<FOOTPRINT_WIZARD_FRAME>();
}
/*FOOTPRINT_WIZARD_FRAME* frame() const
{
return m_wizardFrame;
}*/
protected:
FOOTPRINT_WIZARD_FRAME* m_wizardFrame; ///< the associated footprint wizard frame
};
#endif