2016-05-10 15:57:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 CERN
|
2023-01-23 16:23:43 +00:00
|
|
|
* Copyright (C) 2016-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2016-05-10 15:57:21 +00:00
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2022-02-24 09:59:54 +00:00
|
|
|
#ifndef BOARD_COMMIT_H
|
|
|
|
#define BOARD_COMMIT_H
|
2016-05-10 15:57:21 +00:00
|
|
|
|
|
|
|
#include <commit.h>
|
|
|
|
|
|
|
|
class BOARD_ITEM;
|
2022-03-02 14:18:46 +00:00
|
|
|
class BOARD;
|
2016-05-10 15:57:21 +00:00
|
|
|
class PICKED_ITEMS_LIST;
|
2019-05-12 11:49:58 +00:00
|
|
|
class PCB_TOOL_BASE;
|
2016-06-16 10:19:07 +00:00
|
|
|
class TOOL_MANAGER;
|
2017-10-31 11:03:37 +00:00
|
|
|
class EDA_DRAW_FRAME;
|
|
|
|
class TOOL_BASE;
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2022-02-25 13:05:25 +00:00
|
|
|
#define SKIP_UNDO 0x0001
|
|
|
|
#define APPEND_UNDO 0x0002
|
|
|
|
#define SKIP_SET_DIRTY 0x0004
|
|
|
|
#define SKIP_CONNECTIVITY 0x0008
|
|
|
|
#define ZONE_FILL_OP 0x0010
|
2023-05-12 21:03:54 +00:00
|
|
|
#define SKIP_TEARDROPS 0x0020
|
2022-02-25 13:05:25 +00:00
|
|
|
|
2016-05-10 15:57:21 +00:00
|
|
|
class BOARD_COMMIT : public COMMIT
|
|
|
|
{
|
|
|
|
public:
|
2017-10-31 11:03:37 +00:00
|
|
|
BOARD_COMMIT( EDA_DRAW_FRAME* aFrame );
|
2023-08-09 23:38:43 +00:00
|
|
|
BOARD_COMMIT( TOOL_BASE* aTool );
|
|
|
|
BOARD_COMMIT( TOOL_MANAGER* aMgr );
|
2017-10-31 11:03:37 +00:00
|
|
|
|
2023-07-15 16:37:17 +00:00
|
|
|
virtual ~BOARD_COMMIT() {}
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2022-03-02 14:18:46 +00:00
|
|
|
BOARD* GetBoard() const;
|
|
|
|
|
2023-10-09 14:22:16 +00:00
|
|
|
virtual void Push( const wxString& aMessage = wxEmptyString, int aCommitFlags = 0 ) override;
|
2018-04-09 19:56:27 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void Revert() override;
|
2023-04-29 00:02:42 +00:00
|
|
|
COMMIT& Stage( EDA_ITEM* aItem, CHANGE_TYPE aChangeType,
|
|
|
|
BASE_SCREEN* aScreen = nullptr ) override;
|
|
|
|
COMMIT& Stage( std::vector<EDA_ITEM*>& container, CHANGE_TYPE aChangeType,
|
|
|
|
BASE_SCREEN* aScreen = nullptr ) override;
|
2022-02-25 13:05:25 +00:00
|
|
|
COMMIT& Stage( const PICKED_ITEMS_LIST& aItems,
|
2023-04-29 00:02:42 +00:00
|
|
|
UNDO_REDO aModFlag = UNDO_REDO::UNSPECIFIED,
|
|
|
|
BASE_SCREEN* aScreen = nullptr ) override;
|
2016-05-10 15:57:21 +00:00
|
|
|
|
2024-01-27 20:02:40 +00:00
|
|
|
static EDA_ITEM* MakeImage( EDA_ITEM* aItem );
|
|
|
|
|
2016-05-10 15:57:21 +00:00
|
|
|
private:
|
2022-11-15 23:51:42 +00:00
|
|
|
EDA_ITEM* parentObject( EDA_ITEM* aItem ) const override;
|
|
|
|
|
|
|
|
EDA_ITEM* makeImage( EDA_ITEM* aItem ) const override;
|
2020-11-08 21:29:04 +00:00
|
|
|
|
2023-01-13 19:07:52 +00:00
|
|
|
void dirtyIntersectingZones( BOARD_ITEM* item, int aChangeType );
|
2022-02-24 09:59:54 +00:00
|
|
|
|
2020-11-08 21:29:04 +00:00
|
|
|
private:
|
2022-02-24 09:59:54 +00:00
|
|
|
TOOL_MANAGER* m_toolMgr;
|
|
|
|
bool m_isBoardEditor;
|
2024-01-26 12:47:01 +00:00
|
|
|
bool m_isFootprintEditor;
|
2016-05-10 15:57:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|