KiCad PCB EDA Suite
Loading...
Searching...
No Matches
template_fieldnames.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) 2010 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
5 * Copyright (C) 2014-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
26#ifndef _TEMPLATE_FIELDNAME_H_
27#define _TEMPLATE_FIELDNAME_H_
28
29#include <richio.h>
30#include <template_fieldnames_lexer.h>
31
32class TEMPLATE_FIELDNAMES_LEXER;
33
34
48
52};
53
54// A helper to call GetDefaultFieldName with or without translation.
55// Translation should be used only to display field names in dialogs
56#define DO_TRANSLATE true
57
64{
66 m_Visible( false ),
67 m_URL( false )
68 {
69 }
70
71 TEMPLATE_FIELDNAME( const wxString& aName ) :
72 m_Name( aName ),
73 m_Visible( false ),
74 m_URL( false )
75 {
76 }
77
79 {
80 m_Name = ref.m_Name;
81 m_Visible = ref.m_Visible;
82 m_URL = ref.m_URL;
83 }
84
88 void Format( OUTPUTFORMATTER* out, int nestLevel ) const ;
89
102 void Parse( TEMPLATE_FIELDNAMES_LEXER* aSpec );
103
113 static const wxString GetDefaultFieldName( int aFieldNdx, bool aTranslateForHI = false );
114
115 wxString m_Name; // The field name
116 bool m_Visible; // Field defaults to being visible in schematic.
117 bool m_URL; // If field should have a browse button
118};
119
120typedef std::vector< TEMPLATE_FIELDNAME > TEMPLATE_FIELDNAMES;
121
122
123inline wxString GetCanonicalFieldName( int idx )
124{
125 // While TEMPLATE_FIELDNAME::GetDefaultFieldName() still works for non-mandatory fields,
126 // it's confusing to call it through this function.
127 wxASSERT( idx < MANDATORY_FIELDS );
128
130}
131
132
134{
135public:
137 m_resolvedDirty( true )
138 { }
139
143 void Format( OUTPUTFORMATTER* out, int nestLevel, bool aGlobal ) const ;
144
155 void AddTemplateFieldName( const TEMPLATE_FIELDNAME& aFieldName, bool aGlobal );
156
160 void AddTemplateFieldNames( const wxString& aSerializedFieldNames );
161
165 void DeleteAllFieldNameTemplates( bool aGlobal );
166
171
175 const TEMPLATE_FIELDNAMES& GetTemplateFieldNames( bool aGlobal );
176
183 const TEMPLATE_FIELDNAME* GetFieldName( const wxString& aName );
184
185protected:
186 void resolveTemplates();
187
188 void parse( TEMPLATE_FIELDNAMES_LEXER* in, bool aGlobal );
189
190private:
193
194 // Combined list. Project templates override global ones.
197};
198
199#endif // _TEMPLATE_FIELDNAME_H_
An interface used to output 8 bit text in a convenient way.
Definition: richio.h:322
TEMPLATE_FIELDNAMES m_globals
void AddTemplateFieldName(const TEMPLATE_FIELDNAME &aFieldName, bool aGlobal)
Insert or append a wanted symbol field name into the field names template.
void AddTemplateFieldNames(const wxString &aSerializedFieldNames)
Add a serialized list of template field names.
TEMPLATE_FIELDNAMES m_project
TEMPLATE_FIELDNAMES m_resolved
const TEMPLATE_FIELDNAME * GetFieldName(const wxString &aName)
Search for aName in the template field name list.
void DeleteAllFieldNameTemplates(bool aGlobal)
Delete the entire contents.
const TEMPLATE_FIELDNAMES & GetTemplateFieldNames()
Return a template field name list for read only access.
void parse(TEMPLATE_FIELDNAMES_LEXER *in, bool aGlobal)
void Format(OUTPUTFORMATTER *out, int nestLevel, bool aGlobal) const
Serialize this object out as text into the given OUTPUTFORMATTER.
Hold a name of a symbol's field, field value, and default visibility.
void Format(OUTPUTFORMATTER *out, int nestLevel) const
Serialize this object out as text into the given OUTPUTFORMATTER.
void Parse(TEMPLATE_FIELDNAMES_LEXER *aSpec)
Fill this object from information in the input stream aSpec, which is a #TEMPLATE_FIELDNAMES_LEXER.
TEMPLATE_FIELDNAME(const wxString &aName)
static const wxString GetDefaultFieldName(int aFieldNdx, bool aTranslateForHI=false)
Return a default symbol field name for field aFieldNdx for all components.
TEMPLATE_FIELDNAME(const TEMPLATE_FIELDNAME &ref)
wxString GetCanonicalFieldName(int idx)
MANDATORY_FIELD_T
The set of all field indices assuming an array like sequence that a SCH_COMPONENT or LIB_PART can hol...
@ DATASHEET_FIELD
name of datasheet
@ FOOTPRINT_FIELD
Field Name Module PCB, i.e. "16DIP300".
@ VALUE_FIELD
Field Value of part, i.e. "3.3K".
@ MANDATORY_FIELDS
The first 5 are mandatory, and must be instantiated in SCH_COMPONENT and LIB_PART constructors.
@ REFERENCE_FIELD
Field Reference of part, i.e. "IC21".
@ DESCRIPTION_FIELD
Field Description of part, i.e. "1/4W 1% Metal Film Resistor".
std::vector< TEMPLATE_FIELDNAME > TEMPLATE_FIELDNAMES