KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_lib_new_symbol.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) 2009 Wayne Stambaugh <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
22#include <widgets/wx_infobar.h>
23
24#include <default_values.h>
25#include <eda_draw_frame.h>
26#include <sch_validators.h>
27#include <template_fieldnames.h>
28
29
30static wxString getDerivativeName( const wxString& aParentName )
31{
32 return wxString::Format( "%s_1", aParentName );
33}
34
35
37 const wxArrayString& aSymbolNames,
38 const wxString& aInheritFromSymbolName,
39 std::function<bool( const wxString& newName )> aValidator ) :
40 DIALOG_LIB_NEW_SYMBOL_BASE( dynamic_cast<wxWindow*>( aParent ) ),
43 m_validator( std::move( aValidator ) ),
44 m_inheritFromSymbolName( aInheritFromSymbolName ),
45 m_nameIsDefaulted( true )
46{
47 if( aSymbolNames.GetCount() )
48 {
49 wxArrayString unescapedNames;
50
51 for( const wxString& name : aSymbolNames )
52 unescapedNames.Add( UnescapeString( name ) );
53
54 m_comboInheritanceSelect->SetStringList( unescapedNames );
55 }
56
57 m_textName->SetValidator( FIELD_VALIDATOR( FIELD_T::VALUE ) );
59
61
62 m_comboInheritanceSelect->Connect( FILTERED_ITEM_SELECTED,
63 wxCommandEventHandler( DIALOG_LIB_NEW_SYMBOL::onParentSymbolSelect ),
64 nullptr, this );
65
66 m_textName->Bind( wxEVT_TEXT,
67 [this]( wxCommandEvent& aEvent )
68 {
69 m_nameIsDefaulted = false;
70 } );
71
72 m_checkTransferUserFields->Connect( wxEVT_CHECKBOX,
74 nullptr, this );
75
76 // initial focus should be on first editable field.
77 m_textName->SetFocus();
78
80
81 // Now all widgets have the size fixed, call FinishDialogSettings
83}
84
85
87{
88 m_comboInheritanceSelect->Disconnect( FILTERED_ITEM_SELECTED,
89 wxCommandEventHandler( DIALOG_LIB_NEW_SYMBOL::onParentSymbolSelect ),
90 nullptr, this );
91 m_checkTransferUserFields->Disconnect( wxEVT_CHECKBOX,
93 nullptr, this );
94}
95
96
98{
99 if( !m_inheritFromSymbolName.IsEmpty() )
100 {
103 }
104
105 CallAfter(
106 [&]()
107 {
108 /* The combo box `m_comboInheritanceSelect` must first process an update event before the string can be read again.
109 * The CallAfter() method ensures that the string is available when onParentSymbolSelect() reads it again.
110 */
111 wxCommandEvent dummyEvent;
112
113 // Trigger the event handler to show/hide the info bar message.
114 onParentSymbolSelect( dummyEvent );
115 onCheckTransferUserFields( dummyEvent );
116
117 // Trigger the event handler to handle power boxes
118 onPowerCheckBox( dummyEvent );
119 } );
120
121 return true;
122}
123
124
129
130
132{
133 const wxString parent = m_comboInheritanceSelect->GetValue();
134
135 if( !parent.IsEmpty() )
136 {
137 m_infoBar->RemoveAllButtons();
138 m_infoBar->ShowMessage( wxString::Format( _( "Deriving from symbol '%s'." ), UnescapeString( parent ) ),
139 wxICON_INFORMATION );
140 }
141 else
142 {
143 m_infoBar->Dismiss();
144 }
145
146 if( m_textName->IsEmpty() || m_nameIsDefaulted )
147 {
148 m_textName->SetValue( getDerivativeName( parent ) );
149 m_textName->SetInsertionPointEnd();
150 m_nameIsDefaulted = true;
151 }
152
153 syncControls( !parent.IsEmpty() );
154
155 /* The banner changes the size of the dialog box, so it needs to be adjusted. */
156 Fit();
157}
158
159
160void DIALOG_LIB_NEW_SYMBOL::syncControls( bool aIsDerivedPart )
161{
162 m_staticTextDes->Enable( !aIsDerivedPart );
163 m_textReference->Enable( !aIsDerivedPart );
164 m_staticTextUnits->Enable( !aIsDerivedPart );
165 m_spinPartCount->Enable( !aIsDerivedPart );
166 m_checkUnitsInterchangeable->Enable( !aIsDerivedPart );
167 m_checkHasAlternateBodyStyle->Enable( !aIsDerivedPart );
168 m_checkIsPowerSymbol->Enable( !aIsDerivedPart );
169 m_excludeFromBomCheckBox->Enable( !aIsDerivedPart );
170 m_excludeFromBoardCheckBox->Enable( !aIsDerivedPart );
171 m_staticPinTextPositionLabel->Enable( !aIsDerivedPart );
172 m_textPinTextPosition->Enable( !aIsDerivedPart );
173 m_staticPinTextPositionUnits->Enable( !aIsDerivedPart );
174
175 m_checkShowPinNumber->Enable( !aIsDerivedPart );
176 m_checkShowPinName->Enable( !aIsDerivedPart );
177 m_checkShowPinNameInside->Enable( !aIsDerivedPart );
178
179 m_checkKeepDatasheet->Enable( aIsDerivedPart );
180 m_checkKeepFootprint->Enable( aIsDerivedPart );
181 m_checkTransferUserFields->Enable( aIsDerivedPart );
182 m_checkKeepContentUserFields->Enable( aIsDerivedPart );
183}
184
185
186void DIALOG_LIB_NEW_SYMBOL::onPowerCheckBox( wxCommandEvent& aEvent )
187{
188 if( m_checkIsPowerSymbol->IsChecked() )
189 {
190 m_excludeFromBomCheckBox->SetValue( true );
191 m_excludeFromBoardCheckBox->SetValue( true );
192 m_excludeFromBomCheckBox->Enable( false );
193 m_excludeFromBoardCheckBox->Enable( false );
194 }
195 else
196 {
197 m_excludeFromBomCheckBox->Enable( true );
198 m_excludeFromBoardCheckBox->Enable( true );
199 }
200}
201
202
204{
205 bool checked = m_checkTransferUserFields->IsChecked();
206 m_checkKeepContentUserFields->Enable( checked );
207}
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:123
DIALOG_LIB_NEW_SYMBOL_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("New Symbol"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
SYMBOL_FILTER_COMBOBOX * m_comboInheritanceSelect
DIALOG_LIB_NEW_SYMBOL(EDA_DRAW_FRAME *aParent, const wxArrayString &aSymbolNames, const wxString &aInheritFromSymbolName, std::function< bool(const wxString &newName)> aValidator)
wxString GetName() const override
std::function< bool(const wxString &newName)> m_validator
void syncControls(bool aIsDerivedPart)
virtual void onCheckTransferUserFields(wxCommandEvent &aEvent) override
virtual void onPowerCheckBox(wxCommandEvent &aEvent) override
void onParentSymbolSelect(wxCommandEvent &aEvent)
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...
The base class for create windows for drawing purpose.
A text control validator used for validating the text allowed in fields.
Definition validators.h:138
#define DEFAULT_PIN_NAME_OFFSET
The intersheets references prefix string.
static wxString getDerivativeName(const wxString &aParentName)
#define _(s)
STL namespace.
Definitions of control validators for schematic dialogs.
wxString UnescapeString(const wxString &aSource)
@ REFERENCE
Field Reference of part, i.e. "IC21".
@ VALUE
Field Value of part, i.e. "3.3K".