KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_lib_new_symbol.h
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) 2015-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#ifndef __dialog_lib_new_symbol__
26#define __dialog_lib_new_symbol__
27
28#include <widgets/unit_binder.h>
29#include <string_utils.h>
31
32class EDA_DRAW_FRAME;
33class wxArrayString;
34
36{
37public:
38 DIALOG_LIB_NEW_SYMBOL( EDA_DRAW_FRAME* aParent, const wxString& aMessage,
39 const wxArrayString* aRootSymbolNames,
40 const wxString& aInheritFromSymbolName,
41 std::function<bool( wxString newName )> aValidator );
42
43 void SetName( const wxString& name ) override
44 {
45 m_textName->SetValue( UnescapeString( name ) );
46 }
47
48 wxString GetName() const override
49 {
50 wxString name = EscapeString( m_textName->GetValue(), CTX_LIBID );
51
52 // Currently, symbol names cannot include a space, that breaks libraries:
53 name.Replace( " ", "_" );
54
55 return name;
56 }
57
58 wxString GetParentSymbolName() const
59 {
60 return EscapeString( m_comboInheritanceSelect->GetValue(), CTX_LIBID );
61 }
62
63 void SetReference( const wxString& reference ) { m_textReference->SetValue( reference ); }
64 wxString GetReference() { return m_textReference->GetValue(); }
65
66 void SetPartCount( int count ) { m_spinPartCount->SetValue( count ); }
67 int GetUnitCount() { return m_spinPartCount->GetValue(); }
68
69 void SetAlternateBodyStyle( bool enable ) { m_checkHasAlternateBodyStyle->SetValue( enable ); }
71
72 void SetPowerSymbol( bool enable ) { m_checkIsPowerSymbol->SetValue( enable ); }
73 bool GetPowerSymbol() { return m_checkIsPowerSymbol->GetValue(); }
74
75 void SetUnitsInterchangeable( bool enable ) { m_checkUnitsInterchangeable->SetValue( enable ); }
77
78 void SetIncludeInBom( bool aInclude ) { m_excludeFromBomCheckBox->SetValue( !aInclude ); }
79 bool GetIncludeInBom() const { return !m_excludeFromBomCheckBox->GetValue(); }
80
81 void SetIncludeOnBoard( bool aInclude ) { m_excludeFromBoardCheckBox->SetValue( !aInclude ); }
82 bool GetIncludeOnBoard() const { return !m_excludeFromBoardCheckBox->GetValue(); }
83
84 void SetPinTextPosition( int position ) { m_pinTextPosition.SetValue( position ); }
86
87 void SetShowPinNumber( bool show ) { m_checkShowPinNumber->SetValue( show ); }
88 bool GetShowPinNumber() { return m_checkShowPinNumber->GetValue(); }
89
90 void SetShowPinName( bool show ) { m_checkShowPinName->SetValue( show ); }
91 bool GetShowPinName() { return m_checkShowPinName->GetValue(); }
92
93 void SetPinNameInside( bool show ) { m_checkShowPinNameInside->SetValue( show ); }
94 bool GetPinNameInside() { return m_checkShowPinNameInside->GetValue(); }
95
96protected:
97 bool TransferDataFromWindow() override;
98
99 virtual void OnParentSymbolSelect( wxCommandEvent& aEvent ) override;
100 virtual void onPowerCheckBox( wxCommandEvent& aEvent ) override;
101
102private:
103 void syncControls( bool aIsDerivedPart );
104
105private:
107 std::function<bool( wxString newName )> m_validator;
108};
109
110#endif // __dialog_lib_new_symbol__
const char * name
Definition: DXF_plotter.cpp:57
Class DIALOG_LIB_NEW_SYMBOL_BASE.
void SetIncludeOnBoard(bool aInclude)
wxString GetParentSymbolName() const
void SetPinNameInside(bool show)
virtual void OnParentSymbolSelect(wxCommandEvent &aEvent) override
wxString GetName() const override
void SetName(const wxString &name) override
void syncControls(bool aIsDerivedPart)
bool TransferDataFromWindow() override
void SetShowPinName(bool show)
void SetPinTextPosition(int position)
std::function< bool(wxString newName)> m_validator
void SetIncludeInBom(bool aInclude)
virtual void onPowerCheckBox(wxCommandEvent &aEvent) override
void SetReference(const wxString &reference)
void SetAlternateBodyStyle(bool enable)
void SetShowPinNumber(bool show)
void SetUnitsInterchangeable(bool enable)
void SetPowerSymbol(bool enable)
The base class for create windows for drawing purpose.
virtual long long int GetValue()
Return the current value in Internal Units.
virtual void SetValue(long long int aValue)
Set new value (in Internal Units) for the text field, taking care of units conversion.
wxString UnescapeString(const wxString &aSource)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
@ CTX_LIBID
Definition: string_utils.h:54