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
25#include <default_values.h>
27#include <eda_draw_frame.h>
28#include <sch_validators.h>
29#include <template_fieldnames.h>
30
32 const wxArrayString* aRootSymbolNames,
33 const wxString& aInheritFromSymbolName,
34 std::function<bool( wxString newName )> aValidator ) :
35 DIALOG_LIB_NEW_SYMBOL_BASE( dynamic_cast<wxWindow*>( aParent ) ),
36 m_pinTextPosition( aParent, m_staticPinTextPositionLabel, m_textPinTextPosition,
37 m_staticPinTextPositionUnits, true ),
38 m_validator( std::move( aValidator ) )
39{
40 if( aRootSymbolNames && aRootSymbolNames->GetCount() )
41 {
42 wxArrayString escapedNames;
43
44 for( const wxString& name : *aRootSymbolNames )
45 escapedNames.Add( UnescapeString( name ) );
46
47 m_comboInheritanceSelect->Append( escapedNames );
48
49 if( !aInheritFromSymbolName.IsEmpty() )
50 {
51 m_comboInheritanceSelect->SetStringSelection( aInheritFromSymbolName );
52 syncControls( !m_comboInheritanceSelect->GetValue().IsEmpty() );
53 }
54 }
55
56 if( !aMessage.IsEmpty() )
57 {
59 m_infoBar->ShowMessage( aMessage );
60 }
61
62 m_textName->SetValidator( FIELD_VALIDATOR( VALUE_FIELD ) );
64
66
67 // initial focus should be on first editable field.
68 m_textName->SetFocus();
69
71
72 // Now all widgets have the size fixed, call FinishDialogSettings
74}
75
76
78{
79 return m_validator( GetName() );
80}
81
82
83void DIALOG_LIB_NEW_SYMBOL::OnParentSymbolSelect( wxCommandEvent& aEvent )
84{
85 syncControls( !m_comboInheritanceSelect->GetValue().IsEmpty() );
86}
87
88
89void DIALOG_LIB_NEW_SYMBOL::syncControls( bool aIsDerivedPart )
90{
91 m_staticTextDes->Enable( !aIsDerivedPart );
92 m_textReference->Enable( !aIsDerivedPart );
93 m_staticTextUnits->Enable( !aIsDerivedPart );
94 m_spinPartCount->Enable( !aIsDerivedPart );
95 m_checkUnitsInterchangeable->Enable( !aIsDerivedPart );
96 m_checkHasAlternateBodyStyle->Enable( !aIsDerivedPart );
97 m_checkIsPowerSymbol->Enable( !aIsDerivedPart );
98 m_excludeFromBomCheckBox->Enable( !aIsDerivedPart );
99 m_excludeFromBoardCheckBox->Enable( !aIsDerivedPart );
100 m_staticPinTextPositionLabel->Enable( !aIsDerivedPart );
101 m_textPinTextPosition->Enable( !aIsDerivedPart );
102 m_staticPinTextPositionUnits->Enable( !aIsDerivedPart );
103 m_checkShowPinNumber->Enable( !aIsDerivedPart );
104 m_checkShowPinName->Enable( !aIsDerivedPart );
105 m_checkShowPinNameInside->Enable( !aIsDerivedPart );
106}
107
108
109void DIALOG_LIB_NEW_SYMBOL::onPowerCheckBox( wxCommandEvent& aEvent )
110{
111 if( m_checkIsPowerSymbol->IsChecked() )
112 {
113 m_excludeFromBomCheckBox->SetValue( true );
114 m_excludeFromBoardCheckBox->SetValue( true );
115 m_excludeFromBomCheckBox->Enable( false );
116 m_excludeFromBoardCheckBox->Enable( false );
117 }
118 else
119 {
120 m_excludeFromBomCheckBox->Enable( true );
121 m_excludeFromBoardCheckBox->Enable( true );
122 }
123}
124
const char * name
Definition: DXF_plotter.cpp:57
constexpr EDA_IU_SCALE schIUScale
Definition: base_units.h:111
Class DIALOG_LIB_NEW_SYMBOL_BASE.
DIALOG_LIB_NEW_SYMBOL(EDA_DRAW_FRAME *aParent, const wxString &aMessage, const wxArrayString *aRootSymbolNames, const wxString &aInheritFromSymbolName, std::function< bool(wxString newName)> aValidator)
virtual void OnParentSymbolSelect(wxCommandEvent &aEvent) override
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 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:238
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:301
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:94
@ VALUE_FIELD
Field Value of part, i.e. "3.3K".
@ REFERENCE_FIELD
Field Reference of part, i.e. "IC21".