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, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
26#include <widgets/wx_infobar.h>
27
28#include <default_values.h>
29#include <eda_draw_frame.h>
30#include <sch_validators.h>
31#include <template_fieldnames.h>
32
33
34static wxString getDerivativeName( const wxString& aParentName )
35{
36 return wxString::Format( "%s_1", aParentName );
37}
38
39
41 const wxArrayString& aSymbolNames,
42 const wxString& aInheritFromSymbolName,
43 std::function<bool( const wxString& newName )> aValidator ) :
44 DIALOG_LIB_NEW_SYMBOL_BASE( dynamic_cast<wxWindow*>( aParent ) ),
47 m_validator( std::move( aValidator ) ),
48 m_inheritFromSymbolName( aInheritFromSymbolName ),
49 m_nameIsDefaulted( true )
50{
51 if( aSymbolNames.GetCount() )
52 {
53 wxArrayString unescapedNames;
54
55 for( const wxString& name : aSymbolNames )
56 unescapedNames.Add( UnescapeString( name ) );
57
58 m_comboInheritanceSelect->SetStringList( unescapedNames );
59 }
60
61 m_textName->SetValidator( FIELD_VALIDATOR( FIELD_T::VALUE ) );
63
65
66 m_comboInheritanceSelect->Connect( FILTERED_ITEM_SELECTED,
67 wxCommandEventHandler( DIALOG_LIB_NEW_SYMBOL::onParentSymbolSelect ),
68 nullptr, this );
69
70 m_textName->Bind( wxEVT_TEXT,
71 [this]( wxCommandEvent& aEvent )
72 {
73 m_nameIsDefaulted = false;
74 } );
75
76 m_checkTransferUserFields->Connect( wxEVT_CHECKBOX,
78 nullptr, this );
79
80 // Trigger the event handler to show/hide the info bar message.
81 wxCommandEvent dummyEvent;
82 onParentSymbolSelect( dummyEvent );
83
84 // Trigger the event handler to handle other check boxes
85 onPowerCheckBox( dummyEvent );
86 onCheckTransferUserFields( dummyEvent );
87
88 // initial focus should be on first editable field.
89 m_textName->SetFocus();
90
92
93 // Now all widgets have the size fixed, call FinishDialogSettings
95}
96
97
99{
100 m_comboInheritanceSelect->Disconnect( FILTERED_ITEM_SELECTED,
101 wxCommandEventHandler( DIALOG_LIB_NEW_SYMBOL::onParentSymbolSelect ),
102 nullptr, this );
103 m_checkTransferUserFields->Disconnect( wxEVT_CHECKBOX,
105 nullptr, this );
106}
107
108
110{
111 if( !m_inheritFromSymbolName.IsEmpty() )
112 {
115 }
116
117 return true;
118}
119
120
125
126
128{
129 const wxString parent = m_comboInheritanceSelect->GetValue();
130
131 if( !parent.IsEmpty() )
132 {
133 m_infoBar->RemoveAllButtons();
134 m_infoBar->ShowMessage( wxString::Format( _( "Deriving from symbol '%s'." ), UnescapeString( parent ) ),
135 wxICON_INFORMATION );
136 }
137 else
138 {
139 m_infoBar->Dismiss();
140 }
141
142 if( m_textName->IsEmpty() || m_nameIsDefaulted )
143 {
144 m_textName->SetValue( getDerivativeName( parent ) );
145 m_textName->SetInsertionPointEnd();
146 m_nameIsDefaulted = true;
147 }
148
149 syncControls( !parent.IsEmpty() );
150}
151
152
153void DIALOG_LIB_NEW_SYMBOL::syncControls( bool aIsDerivedPart )
154{
155 m_staticTextDes->Enable( !aIsDerivedPart );
156 m_textReference->Enable( !aIsDerivedPart );
157 m_staticTextUnits->Enable( !aIsDerivedPart );
158 m_spinPartCount->Enable( !aIsDerivedPart );
159 m_checkUnitsInterchangeable->Enable( !aIsDerivedPart );
160 m_checkHasAlternateBodyStyle->Enable( !aIsDerivedPart );
161 m_checkIsPowerSymbol->Enable( !aIsDerivedPart );
162 m_excludeFromBomCheckBox->Enable( !aIsDerivedPart );
163 m_excludeFromBoardCheckBox->Enable( !aIsDerivedPart );
164 m_staticPinTextPositionLabel->Enable( !aIsDerivedPart );
165 m_textPinTextPosition->Enable( !aIsDerivedPart );
166 m_staticPinTextPositionUnits->Enable( !aIsDerivedPart );
167
168 m_checkShowPinNumber->Enable( !aIsDerivedPart );
169 m_checkShowPinName->Enable( !aIsDerivedPart );
170 m_checkShowPinNameInside->Enable( !aIsDerivedPart );
171
172 m_checkKeepDatasheet->Enable( aIsDerivedPart );
173 m_checkKeepFootprint->Enable( aIsDerivedPart );
174 m_checkTransferUserFields->Enable( aIsDerivedPart );
175 m_checkKeepContentUserFields->Enable( aIsDerivedPart );
176}
177
178
179void DIALOG_LIB_NEW_SYMBOL::onPowerCheckBox( wxCommandEvent& aEvent )
180{
181 if( m_checkIsPowerSymbol->IsChecked() )
182 {
183 m_excludeFromBomCheckBox->SetValue( true );
184 m_excludeFromBoardCheckBox->SetValue( true );
185 m_excludeFromBomCheckBox->Enable( false );
186 m_excludeFromBoardCheckBox->Enable( false );
187 }
188 else
189 {
190 m_excludeFromBomCheckBox->Enable( true );
191 m_excludeFromBoardCheckBox->Enable( true );
192 }
193}
194
195
197{
198 bool checked = m_checkTransferUserFields->IsChecked();
199 m_checkKeepContentUserFields->Enable( checked );
200}
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:114
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:142
#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".