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 (C) 2016-2023 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
27#include <default_values.h>
28#include <eda_draw_frame.h>
29#include <sch_validators.h>
30#include <template_fieldnames.h>
31
32
34 const wxArrayString* aRootSymbolNames,
35 const wxString& aInheritFromSymbolName,
36 std::function<bool( wxString newName )> aValidator ) :
37 DIALOG_LIB_NEW_SYMBOL_BASE( dynamic_cast<wxWindow*>( aParent ) ),
38 m_pinTextPosition( aParent, m_staticPinTextPositionLabel, m_textPinTextPosition,
39 m_staticPinTextPositionUnits, true ),
40 m_validator( std::move( aValidator ) )
41{
42 if( aRootSymbolNames && aRootSymbolNames->GetCount() )
43 {
44 wxArrayString escapedNames;
45
46 for( const wxString& name : *aRootSymbolNames )
47 escapedNames.Add( UnescapeString( name ) );
48
50
51 if( !aInheritFromSymbolName.IsEmpty() )
52 {
53 m_comboInheritanceSelect->SetSelectedSymbol( aInheritFromSymbolName );
54 syncControls( !m_comboInheritanceSelect->GetValue().IsEmpty() );
55 }
56 }
57
58 if( !aMessage.IsEmpty() )
59 {
61 m_infoBar->ShowMessage( aMessage );
62 }
63
64 m_textName->SetValidator( FIELD_VALIDATOR( VALUE_FIELD ) );
66
68
70 FILTERED_ITEM_SELECTED,
71 wxCommandEventHandler( DIALOG_LIB_NEW_SYMBOL::onParentSymbolSelect ), nullptr, this );
72
73 // initial focus should be on first editable field.
74 m_textName->SetFocus();
75
77
78 // Now all widgets have the size fixed, call FinishDialogSettings
80}
81
82
84{
85 m_comboInheritanceSelect->Disconnect(
86 FILTERED_ITEM_SELECTED,
87 wxCommandEventHandler( DIALOG_LIB_NEW_SYMBOL::onParentSymbolSelect ), nullptr, this );
88}
89
90
92{
93 return m_validator( GetName() );
94}
95
96
97void DIALOG_LIB_NEW_SYMBOL::onParentSymbolSelect( wxCommandEvent& aEvent )
98{
99 syncControls( !m_comboInheritanceSelect->GetValue().IsEmpty() );
100}
101
102
103void DIALOG_LIB_NEW_SYMBOL::syncControls( bool aIsDerivedPart )
104{
105 m_staticTextDes->Enable( !aIsDerivedPart );
106 m_textReference->Enable( !aIsDerivedPart );
107 m_staticTextUnits->Enable( !aIsDerivedPart );
108 m_spinPartCount->Enable( !aIsDerivedPart );
109 m_checkUnitsInterchangeable->Enable( !aIsDerivedPart );
110 m_checkHasAlternateBodyStyle->Enable( !aIsDerivedPart );
111 m_checkIsPowerSymbol->Enable( !aIsDerivedPart );
112 m_excludeFromBomCheckBox->Enable( !aIsDerivedPart );
113 m_excludeFromBoardCheckBox->Enable( !aIsDerivedPart );
114 m_staticPinTextPositionLabel->Enable( !aIsDerivedPart );
115 m_textPinTextPosition->Enable( !aIsDerivedPart );
116 m_staticPinTextPositionUnits->Enable( !aIsDerivedPart );
117 m_checkShowPinNumber->Enable( !aIsDerivedPart );
118 m_checkShowPinName->Enable( !aIsDerivedPart );
119 m_checkShowPinNameInside->Enable( !aIsDerivedPart );
120}
121
122
123void DIALOG_LIB_NEW_SYMBOL::onPowerCheckBox( wxCommandEvent& aEvent )
124{
125 if( m_checkIsPowerSymbol->IsChecked() )
126 {
127 m_excludeFromBomCheckBox->SetValue( true );
128 m_excludeFromBoardCheckBox->SetValue( true );
129 m_excludeFromBomCheckBox->Enable( false );
130 m_excludeFromBoardCheckBox->Enable( false );
131 }
132 else
133 {
134 m_excludeFromBomCheckBox->Enable( true );
135 m_excludeFromBoardCheckBox->Enable( true );
136 }
137}
138
const char * name
Definition: DXF_plotter.cpp:57
constexpr EDA_IU_SCALE schIUScale
Definition: base_units.h:110
Class DIALOG_LIB_NEW_SYMBOL_BASE.
SYMBOL_FILTER_COMBOBOX * m_comboInheritanceSelect
DIALOG_LIB_NEW_SYMBOL(EDA_DRAW_FRAME *aParent, const wxString &aMessage, const wxArrayString *aRootSymbolNames, const wxString &aInheritFromSymbolName, std::function< bool(wxString newName)> aValidator)
wxString GetName() const override
void syncControls(bool aIsDerivedPart)
bool TransferDataFromWindow() override
std::function< bool(wxString newName)> m_validator
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:221
void SetSelectedSymbol(const wxString &aSymbolName)
void SetSymbolList(const wxArrayString &aSymbolList)
virtual void SetValue(long long int aValue)
Set new value (in Internal Units) for the text field, taking care of units conversion.
void RemoveAllButtons()
Remove all the buttons that have been added by the user.
Definition: wx_infobar.cpp:304
void ShowMessage(const wxString &aMessage, int aFlags=wxICON_INFORMATION) override
Show the info bar with the provided message and icon.
Definition: wx_infobar.cpp:154
#define DEFAULT_PIN_NAME_OFFSET
The intersheets references prefix string.
STL namespace.
Definitions of control validators for schematic dialogs.
wxString UnescapeString(const wxString &aSource)
constexpr int MilsToIU(int mils) const
Definition: base_units.h:93
@ VALUE_FIELD
Field Value of part, i.e. "3.3K".
@ REFERENCE_FIELD
Field Reference of part, i.e. "IC21".