2014-07-09 13:02:56 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 CERN
|
2021-01-27 22:15:38 +00:00
|
|
|
* Copyright (C) 2021 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
2014-07-09 13:02:56 +00:00
|
|
|
* @author Maciej Suminski <maciej.suminski@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
|
|
|
|
*/
|
|
|
|
|
2020-12-25 16:26:32 +00:00
|
|
|
#ifndef FOOTPRINT_EDITOR_CONTROL_H
|
|
|
|
#define FOOTPRINT_EDITOR_CONTROL_H
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
#include <tools/pcb_tool_base.h>
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2019-06-05 19:15:57 +00:00
|
|
|
|
|
|
|
class FOOTPRINT_EDIT_FRAME;
|
2020-11-21 20:42:27 +00:00
|
|
|
class DIALOG_FOOTPRINT_CHECKER;
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Module editor specific tools.
|
|
|
|
*/
|
2020-12-25 16:26:32 +00:00
|
|
|
class FOOTPRINT_EDITOR_CONTROL : public PCB_TOOL_BASE
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-12-25 16:26:32 +00:00
|
|
|
FOOTPRINT_EDITOR_CONTROL();
|
|
|
|
~FOOTPRINT_EDITOR_CONTROL() override;
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Reset()
|
2016-09-24 18:53:15 +00:00
|
|
|
void Reset( RESET_REASON aReason ) override;
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2019-06-05 19:15:57 +00:00
|
|
|
/// @copydoc TOOL_INTERACTIVE::Init()
|
|
|
|
bool Init() override;
|
|
|
|
|
2019-06-04 18:46:52 +00:00
|
|
|
int NewFootprint( const TOOL_EVENT& aEvent );
|
|
|
|
int CreateFootprint( const TOOL_EVENT& aEvent );
|
2021-01-27 22:15:38 +00:00
|
|
|
|
2019-06-03 23:50:44 +00:00
|
|
|
int Save( const TOOL_EVENT& aEvent );
|
|
|
|
int SaveAs( const TOOL_EVENT& aEvent );
|
2019-06-03 20:06:58 +00:00
|
|
|
int Revert( const TOOL_EVENT& aEvent );
|
2019-06-03 23:50:44 +00:00
|
|
|
|
2019-06-06 11:45:28 +00:00
|
|
|
int EditFootprint( const TOOL_EVENT& aEvent );
|
|
|
|
int CutCopyFootprint( const TOOL_EVENT& aEvent );
|
|
|
|
int PasteFootprint( const TOOL_EVENT& aEvent );
|
2022-04-21 10:57:15 +00:00
|
|
|
int DuplicateFootprint( const TOOL_EVENT& aEvent );
|
|
|
|
int RenameFootprint( const TOOL_EVENT& aEvent );
|
2019-06-06 11:45:28 +00:00
|
|
|
int DeleteFootprint( const TOOL_EVENT& aEvent );
|
|
|
|
int ImportFootprint( const TOOL_EVENT& aEvent );
|
|
|
|
int ExportFootprint( const TOOL_EVENT& aEvent );
|
2020-02-07 17:06:24 +00:00
|
|
|
|
|
|
|
int PinLibrary( const TOOL_EVENT& aEvent );
|
|
|
|
int UnpinLibrary( const TOOL_EVENT& aEvent );
|
2019-06-06 11:45:28 +00:00
|
|
|
int ToggleFootprintTree( const TOOL_EVENT& aEvent );
|
2021-10-30 22:21:15 +00:00
|
|
|
int ToggleLayersManager( const TOOL_EVENT& aEvent );
|
2023-02-16 03:16:49 +00:00
|
|
|
int ToggleProperties( const TOOL_EVENT& aEvent );
|
2019-06-03 23:50:44 +00:00
|
|
|
int Properties( const TOOL_EVENT& aEvent );
|
|
|
|
|
2021-11-20 22:05:57 +00:00
|
|
|
int EditTextAndGraphics( const TOOL_EVENT& aEvent );
|
2020-06-17 12:46:50 +00:00
|
|
|
|
2020-11-21 20:42:27 +00:00
|
|
|
int CheckFootprint( const TOOL_EVENT& aEvent );
|
2022-08-20 10:01:43 +00:00
|
|
|
void CrossProbe( const PCB_MARKER* aMarker );
|
2020-11-21 20:42:27 +00:00
|
|
|
void DestroyCheckerDialog();
|
|
|
|
|
2021-11-20 22:05:57 +00:00
|
|
|
int CleanupGraphics( const TOOL_EVENT& aEvent );
|
2021-05-21 16:52:11 +00:00
|
|
|
int RepairFootprint( const TOOL_EVENT& aEvent );
|
|
|
|
|
2019-06-03 23:50:44 +00:00
|
|
|
/**
|
|
|
|
* Edit the properties used for new pad creation.
|
|
|
|
*/
|
|
|
|
int DefaultPadProperties( const TOOL_EVENT& aEvent );
|
2019-06-03 20:06:58 +00:00
|
|
|
|
2019-06-03 23:50:44 +00:00
|
|
|
private:
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Set up handlers for various events.
|
2017-07-31 12:30:51 +00:00
|
|
|
void setTransitions() override;
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT_EDIT_FRAME* m_frame;
|
2020-11-21 20:42:27 +00:00
|
|
|
DIALOG_FOOTPRINT_CHECKER* m_checkerDialog;
|
2020-05-03 07:59:05 +00:00
|
|
|
|
2019-06-06 11:45:28 +00:00
|
|
|
// A private clipboard for cut/copy/past of an entire footprint
|
2020-11-13 15:15:52 +00:00
|
|
|
std::unique_ptr<FOOTPRINT> m_copiedFootprint;
|
2014-07-09 13:02:56 +00:00
|
|
|
};
|
|
|
|
|
2020-12-25 16:26:32 +00:00
|
|
|
#endif // FOOTPRINT_EDITOR_CONTROL_H
|