2017-01-21 21:06:18 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2023-03-30 11:49:23 +00:00
|
|
|
* Copyright (C) 2017-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2017-01-21 21:06:18 +00:00
|
|
|
*
|
|
|
|
* 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 __PAD_TOOL_H
|
|
|
|
#define __PAD_TOOL_H
|
|
|
|
|
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
#include <tools/pcb_tool_base.h>
|
2017-01-21 21:06:18 +00:00
|
|
|
|
2019-05-14 11:14:00 +00:00
|
|
|
class ACTION_MENU;
|
2023-03-30 11:49:23 +00:00
|
|
|
class PCB_SHAPE;
|
2017-01-21 21:06:18 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Tool relating to pads and pad settings.
|
2017-01-21 21:06:18 +00:00
|
|
|
*/
|
2019-05-12 11:49:58 +00:00
|
|
|
class PAD_TOOL : public PCB_TOOL_BASE
|
2017-01-21 21:06:18 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PAD_TOOL();
|
|
|
|
~PAD_TOOL();
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< React to model/view changes
|
2017-01-21 21:06:18 +00:00
|
|
|
void Reset( RESET_REASON aReason ) override;
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Basic initialization
|
2017-01-21 21:06:18 +00:00
|
|
|
bool Init() override;
|
|
|
|
|
2019-06-09 23:51:25 +00:00
|
|
|
/**
|
|
|
|
* Tool for quick pad enumeration.
|
|
|
|
*/
|
|
|
|
int EnumeratePads( const TOOL_EVENT& aEvent );
|
|
|
|
|
2020-06-27 11:57:40 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Place a pad in footprint editor.
|
2020-06-27 11:57:40 +00:00
|
|
|
*/
|
|
|
|
int PlacePad( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Enter/exit WYSIWYG pad shape editing.
|
2020-06-27 11:57:40 +00:00
|
|
|
*/
|
|
|
|
int EditPad( const TOOL_EVENT& aEvent );
|
|
|
|
|
2023-09-01 17:46:51 +00:00
|
|
|
int OnUndoRedo( const TOOL_EVENT& aEvent );
|
|
|
|
|
2022-02-19 19:29:27 +00:00
|
|
|
bool InPadEditMode() { return m_editPad != niluuid; }
|
2024-01-26 13:48:41 +00:00
|
|
|
void ExitPadEditMode();
|
2022-02-19 19:29:27 +00:00
|
|
|
|
2021-08-23 23:10:21 +00:00
|
|
|
wxString GetLastPadNumber() const { return m_lastPadNumber; }
|
|
|
|
void SetLastPadNumber( const wxString& aPadNumber ) { m_lastPadNumber = aPadNumber; }
|
2020-06-27 11:57:40 +00:00
|
|
|
|
2022-09-24 16:29:14 +00:00
|
|
|
/**
|
|
|
|
* Recombine an exploded pad (or one produced with overlapping polygons in an older version).
|
|
|
|
* @param aPad the pad to run the recombination algorithm on
|
|
|
|
* @param aIsDryRun if true the list will be generated but no changes will be made
|
2023-03-30 11:49:23 +00:00
|
|
|
* @return a list of PCB_SHAPEs that will be combined
|
2022-09-24 16:29:14 +00:00
|
|
|
*/
|
2023-10-13 12:51:27 +00:00
|
|
|
std::vector<PCB_SHAPE*> RecombinePad( PAD* aPad, bool aIsDryRun );
|
2022-09-24 16:29:14 +00:00
|
|
|
|
2020-06-27 11:57:40 +00:00
|
|
|
private:
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Bind handlers to corresponding TOOL_ACTIONs.
|
2017-07-31 12:30:51 +00:00
|
|
|
void setTransitions() override;
|
2017-01-21 21:06:18 +00:00
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Apply pad settings from board design settings to a pad.
|
2018-07-05 16:14:19 +00:00
|
|
|
int pastePadProperties( const TOOL_EVENT& aEvent );
|
2017-01-21 21:06:18 +00:00
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Copy pad settings from a pad to the board design settings.
|
2017-02-03 18:56:56 +00:00
|
|
|
int copyPadSettings( const TOOL_EVENT& aEvent );
|
2017-01-21 21:06:18 +00:00
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Push pad settings from a pad to other pads on board or footprint.
|
2017-01-21 21:06:18 +00:00
|
|
|
int pushPadSettings( const TOOL_EVENT& aEvent );
|
|
|
|
|
2024-01-31 15:45:39 +00:00
|
|
|
std::vector<PCB_SHAPE*> explodePad( PAD* aPad, PCB_LAYER_ID* aLayer );
|
2020-06-27 11:57:40 +00:00
|
|
|
|
2023-09-01 17:46:51 +00:00
|
|
|
void enterPadEditMode();
|
|
|
|
|
2022-09-24 16:29:14 +00:00
|
|
|
private:
|
2023-10-13 12:51:27 +00:00
|
|
|
wxString m_lastPadNumber;
|
2020-06-27 11:57:40 +00:00
|
|
|
|
2023-10-13 12:51:27 +00:00
|
|
|
HIGH_CONTRAST_MODE m_previousHighContrastMode;
|
|
|
|
KIID m_editPad;
|
2017-02-16 17:39:09 +00:00
|
|
|
};
|
2017-01-21 21:06:18 +00:00
|
|
|
|
|
|
|
#endif // __PAD_TOOL_H
|