KiCad PCB EDA Suite
Loading...
Searching...
No Matches
group_tool.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#pragma once
21
23
24class COMMIT;
26class EDA_DRAW_FRAME;
27class EDA_GROUP;
28class SELECTION_TOOL;
29class wxString;
30
31
33{
34public:
35 GROUP_TOOL();
36
37 void Reset( RESET_REASON aReason ) override;
38
40 bool Init() override;
41
42 virtual int GroupProperties( const TOOL_EVENT& aEvent );
43
47 virtual int PickNewMember( const TOOL_EVENT& aEvent ) = 0;
48
50 virtual int Group( const TOOL_EVENT& aEvent ) = 0;
51
53 virtual int Ungroup( const TOOL_EVENT& aEvent );
54
56 virtual int AddToGroup( const TOOL_EVENT& aEvent );
57
59 virtual int RemoveFromGroup( const TOOL_EVENT& aEvent );
60
62 virtual int EnterGroup( const TOOL_EVENT& aEvent );
63
65 virtual int LeaveGroup( const TOOL_EVENT& aEvent );
66
67protected:
69 void setTransitions() override;
70
72 virtual bool canGroupItem( EDA_ITEM* aItem, wxString& aErrorMsg ) const = 0;
73
77
79 virtual std::shared_ptr<COMMIT> createCommit() = 0;
80
84 std::shared_ptr<COMMIT> m_commit;
85};
Represent a set of changes (additions, deletions or modifications) of a data model (e....
Definition commit.h:68
The base class for create windows for drawing purpose.
A set of EDA_ITEMs (i.e., without duplicates).
Definition eda_group.h:42
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:96
virtual int GroupProperties(const TOOL_EVENT &aEvent)
SELECTION_TOOL * m_selectionTool
Definition group_tool.h:83
virtual int LeaveGroup(const TOOL_EVENT &aEvent)
bool Init() override
Init() is called once upon a registration of the tool.
virtual int RemoveFromGroup(const TOOL_EVENT &aEvent)
Restrict selection to only member of the group.
DIALOG_GROUP_PROPERTIES * m_propertiesDialog
Definition group_tool.h:82
virtual std::shared_ptr< COMMIT > createCommit()=0
virtual EDA_GROUP * getGroupFromItem(EDA_ITEM *)=0
Subclasses implement to provide correct *_COMMIT object type.
EDA_DRAW_FRAME * m_frame
Definition group_tool.h:81
virtual int Ungroup(const TOOL_EVENT &aEvent)
Add selection to group.
virtual int AddToGroup(const TOOL_EVENT &aEvent)
Remove selection from group.
virtual int Group(const TOOL_EVENT &aEvent)=0
Ungroup selected items.
std::shared_ptr< COMMIT > m_commit
Definition group_tool.h:84
virtual int PickNewMember(const TOOL_EVENT &aEvent)=0
Invoke the picker tool to select a new member of the group.
void setTransitions() override
< Set up handlers for various events.
virtual bool canGroupItem(EDA_ITEM *aItem, wxString &aErrorMsg) const =0
Get the correctly casted group type from the item.
virtual int EnterGroup(const TOOL_EVENT &aEvent)
Leave the current group (deselect its members and select the group as a whole).
RESET_REASON
Determine the reason of reset for a tool.
Definition tool_base.h:74
Generic, UI-independent tool event.
Definition tool_event.h:167
TOOL_INTERACTIVE(TOOL_ID aId, const std::string &aName)
Create a tool with given id & name.
void Reset() override