KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_group_properties.cpp
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 (C) 2020-2022 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, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#include <tool/tool_manager.h>
25#include <tools/pcb_actions.h>
27#include <pcb_base_edit_frame.h>
28#include <pcb_group.h>
29#include <status_popup.h>
30#include <board_commit.h>
31#include <bitmaps.h>
34
35
37 PCB_GROUP* aGroup ) :
39 m_brdEditor( aParent ),
40 m_toolMgr( aParent->GetToolManager() ),
41 m_group( aGroup )
42{
43 m_bpAddMember->SetBitmap( KiBitmap( BITMAPS::small_plus ) );
44 m_bpRemoveMember->SetBitmap( KiBitmap( BITMAPS::small_trash ) );
45
46 m_nameCtrl->SetValue( m_group->GetName() );
47
48 m_locked->SetValue( m_group->IsLocked() );
49 m_locked->Show( dynamic_cast<PCB_EDIT_FRAME*>( aParent ) != nullptr );
50
51 for( BOARD_ITEM* item : m_group->GetItems() )
52 m_membersList->Append( item->GetItemDescription( m_brdEditor ), item );
53
55
57
58 // Now all widgets have the size fixed, call FinishDialogSettings
60}
61
62
64{
65 if( m_brdEditor->IsBeingDeleted() )
66 return;
67
68 m_brdEditor->FocusOnItem( nullptr );
70}
71
72
74{
75 // Don't do anything here; it gets called every time we re-show the dialog after
76 // picking a new member.
77 return true;
78}
79
80
82{
83 BOARD_COMMIT commit( m_brdEditor );
84 commit.Modify( m_group );
85
87 [&]( BOARD_ITEM* descendant )
88 {
89 commit.Modify( descendant );
90 } );
91
92 for( size_t ii = 0; ii < m_membersList->GetCount(); ++ii )
93 {
94 BOARD_ITEM* item = static_cast<BOARD_ITEM*>( m_membersList->GetClientData( ii ) );
95 PCB_GROUP* existingGroup = item->GetParentGroup();
96
97 if( existingGroup != m_group )
98 {
99 commit.Modify( item );
100
101 if( existingGroup )
102 commit.Modify( existingGroup );
103 }
104 }
105
106 m_group->SetName( m_nameCtrl->GetValue() );
107 m_group->SetLocked( m_locked->GetValue() );
108
111
112 for( size_t ii = 0; ii < m_membersList->GetCount(); ++ii )
113 {
114 BOARD_ITEM* item = static_cast<BOARD_ITEM*>( m_membersList->GetClientData( ii ) );
115 m_group->AddItem( item );
116 }
117
119
120 commit.Push( _( "Modified group" ) );
121 return true;
122}
123
124
125void DIALOG_GROUP_PROPERTIES::OnMemberSelected( wxCommandEvent& aEvent )
126{
127 int selected = m_membersList->GetSelection();
128
129 if( selected >= 0 )
130 {
131 WINDOW_THAWER thawer( m_brdEditor );
132 BOARD_ITEM* item = static_cast<BOARD_ITEM*>( m_membersList->GetClientData( selected ) );
133
134 m_brdEditor->FocusOnItem( item );
136 }
137
138 aEvent.Skip();
139}
140
141
142void DIALOG_GROUP_PROPERTIES::OnAddMember( wxCommandEvent& event )
143{
145}
146
147
149{
150
151 for( size_t ii = 0; ii < m_membersList->GetCount(); ++ii )
152 {
153 if( aItem == static_cast<BOARD_ITEM*>( m_membersList->GetClientData( ii ) ) )
154 return;
155 }
156
157 if( aItem == m_group )
158 return;
159
160 m_membersList->Append( aItem->GetItemDescription( m_brdEditor ), aItem );
161}
162
163
164void DIALOG_GROUP_PROPERTIES::OnRemoveMember( wxCommandEvent& event )
165{
166 int selected = m_membersList->GetSelection();
167
168 if( selected >= 0 )
169 m_membersList->Delete( selected );
170
171 m_brdEditor->FocusOnItem( nullptr );
173}
174
175
wxBitmap KiBitmap(BITMAPS aBitmap, int aHeightTag)
Construct a wxBitmap from an image identifier Returns the image from the active theme if the image ha...
Definition: bitmap.cpp:106
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Revert the commit by restoring the modified items state.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:71
PCB_GROUP * GetParentGroup() const
Definition: board_item.h:85
virtual bool IsLocked() const
Definition: board_item.cpp:72
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Create an undo entry for an item that has been already modified.
Definition: commit.h:104
Class DIALOG_GROUP_PROPERTIES_BASE.
DIALOG_GROUP_PROPERTIES(PCB_BASE_EDIT_FRAME *aParent, PCB_GROUP *aTarget)
void OnRemoveMember(wxCommandEvent &event) override
void DoAddMember(EDA_ITEM *aItem)
void OnAddMember(wxCommandEvent &event) override
void OnMemberSelected(wxCommandEvent &event) override
PCB_BASE_EDIT_FRAME * m_brdEditor
void SetInitialFocus(wxWindow *aWindow)
Sets the window (usually a wxTextCtrl) that should be focused when the dialog is shown.
Definition: dialog_shim.h:97
void SetupStandardButtons(std::map< int, wxString > aLabels={})
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:85
virtual wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider) const
Return a user-visible description string of this item.
Definition: eda_item.cpp:107
static TOOL_ACTION selectionClear
Clear the current selection.
Definition: pcb_actions.h:59
static TOOL_ACTION pickNewGroupMember
Definition: pcb_actions.h:254
static TOOL_ACTION selectItem
Select an item (specified as the event parameter).
Definition: pcb_actions.h:62
Common, abstract interface for edit frames.
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
void FocusOnItem(BOARD_ITEM *aItem, PCB_LAYER_ID aLayer=UNDEFINED_LAYER)
The main frame for Pcbnew.
A set of BOARD_ITEMs (i.e., without duplicates).
Definition: pcb_group.h:51
std::unordered_set< BOARD_ITEM * > & GetItems()
Definition: pcb_group.h:68
void RemoveAll()
Definition: pcb_group.cpp:99
void SetName(const wxString &aName)
Definition: pcb_group.h:66
bool AddItem(BOARD_ITEM *aItem)
Add item to group.
Definition: pcb_group.cpp:71
wxString GetName() const
Definition: pcb_group.h:65
void RunOnDescendants(const std::function< void(BOARD_ITEM *)> &aFunction) const
Invoke a function on all descendants of the group.
Definition: pcb_group.cpp:412
void SetLocked(bool aLocked) override
Definition: pcb_group.cpp:190
void SetBitmap(const wxBitmap &aBmp)
bool RunAction(const std::string &aActionName, bool aNow=false, T aParam=NULL)
Run the specified action.
Definition: tool_manager.h:142
#define _(s)
Class to handle a set of BOARD_ITEMs.