KiCad PCB EDA Suite
Loading...
Searching...
No Matches
footprint_wizard.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) 2013 NBEE Embedded Systems SL, Miguel Angel Ajo <
[email protected]
>
5
* Copyright (C) 2013-2021 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
31
#ifndef FOOTPRINT_WIZARD_H
32
#define FOOTPRINT_WIZARD_H
33
34
#include <vector>
35
#include <
pcb_edit_frame.h
>
36
37
// Allowable parameter types for PCB wizards
38
const
wxString
WIZARD_PARAM_UNITS_MM
= wxT(
"mm"
);
// Millimetres
39
const
wxString
WIZARD_PARAM_UNITS_MILS
= wxT(
"mils"
);
// Mils / thou
40
const
wxString
WIZARD_PARAM_UNITS_FLOAT
= wxT(
"float"
);
// Floating point (dimensionless)
41
const
wxString
WIZARD_PARAM_UNITS_INTEGER
= wxT(
"integer"
);
// Integer (dimensionless)
42
const
wxString
WIZARD_PARAM_UNITS_BOOL
= wxT(
"bool"
);
// Boolean option
43
const
wxString
WIZARD_PARAM_UNITS_RADIANS
= wxT(
"radians"
);
// Angle (radians)
44
const
wxString
WIZARD_PARAM_UNITS_DEGREES
= wxT(
"degrees"
);
// Angle (degrees)
45
const
wxString
WIZARD_PARAM_UNITS_PERCENT
= wxT(
"%"
);
// Percent (0% -> 100%)
46
const
wxString
WIZARD_PARAM_UNITS_STRING
= wxT(
"string"
);
// String
47
51
class
FOOTPRINT_WIZARD
52
{
53
public
:
54
FOOTPRINT_WIZARD
() {}
55
virtual
~FOOTPRINT_WIZARD
();
56
60
virtual
wxString
GetName
() = 0;
61
65
virtual
wxString
GetImage
() = 0;
66
70
virtual
wxString
GetDescription
() = 0;
71
75
virtual
int
GetNumParameterPages
() = 0;
76
81
virtual
wxString
GetParameterPageName
(
int
aPage ) = 0;
82
87
virtual
wxArrayString
GetParameterNames
(
int
aPage ) = 0;
88
94
virtual
wxArrayString
GetParameterTypes
(
int
aPage ) = 0;
95
96
101
virtual
wxArrayString
GetParameterValues
(
int
aPage ) = 0;
102
107
virtual
wxArrayString
GetParameterErrors
(
int
aPage ) = 0;
108
113
virtual
wxArrayString
GetParameterHints
(
int
aPage ) = 0;
114
119
virtual
wxArrayString
GetParameterDesignators
(
int
aPage ) = 0;
120
126
virtual
wxString
SetParameterValues
(
int
aPage, wxArrayString& aValues ) = 0;
127
131
virtual
void
ResetParameters
() = 0;
132
139
virtual
FOOTPRINT
*
GetFootprint
( wxString* aMessage ) = 0;
140
146
virtual
void
*
GetObject
() = 0;
147
152
void
register_wizard
();
153
};
154
155
156
class
FOOTPRINT_WIZARD_LIST
157
{
158
public
:
159
169
static
void
register_wizard
(
FOOTPRINT_WIZARD
* aWizard );
170
178
static
bool
deregister_object
(
void
* aObject );
179
184
static
FOOTPRINT_WIZARD
*
GetWizard
(
const
wxString& aName );
185
190
static
FOOTPRINT_WIZARD
*
GetWizard
(
int
aIndex );
191
195
static
int
GetWizardsCount
();
196
197
private
:
201
static
std::vector<FOOTPRINT_WIZARD*>
m_FootprintWizards
;
202
};
203
204
#endif
/* PCBNEW_FOOTPRINT_WIZARDS_H */
FOOTPRINT_WIZARD_LIST
Definition:
footprint_wizard.h:157
FOOTPRINT_WIZARD_LIST::register_wizard
static void register_wizard(FOOTPRINT_WIZARD *aWizard)
A footprint wizard calls this static method when it wants to register itself into the system wizards.
Definition:
footprint_wizard.cpp:77
FOOTPRINT_WIZARD_LIST::m_FootprintWizards
static std::vector< FOOTPRINT_WIZARD * > m_FootprintWizards
FOOTPRINT_WIZARD system wide static list.
Definition:
footprint_wizard.h:201
FOOTPRINT_WIZARD_LIST::deregister_object
static bool deregister_object(void *aObject)
Unregister an object which builds a wizard.
Definition:
footprint_wizard.cpp:103
FOOTPRINT_WIZARD_LIST::GetWizardsCount
static int GetWizardsCount()
Definition:
footprint_wizard.cpp:71
FOOTPRINT_WIZARD_LIST::GetWizard
static FOOTPRINT_WIZARD * GetWizard(const wxString &aName)
Definition:
footprint_wizard.cpp:53
FOOTPRINT_WIZARD
The parent class from where any footprint wizard class must derive.
Definition:
footprint_wizard.h:52
FOOTPRINT_WIZARD::GetParameterHints
virtual wxArrayString GetParameterHints(int aPage)=0
FOOTPRINT_WIZARD::~FOOTPRINT_WIZARD
virtual ~FOOTPRINT_WIZARD()
Definition:
footprint_wizard.cpp:34
FOOTPRINT_WIZARD::SetParameterValues
virtual wxString SetParameterValues(int aPage, wxArrayString &aValues)=0
FOOTPRINT_WIZARD::ResetParameters
virtual void ResetParameters()=0
Reset all wizard parameters to default values.
FOOTPRINT_WIZARD::GetObject
virtual void * GetObject()=0
Get the object from where this wizard constructs.
FOOTPRINT_WIZARD::GetParameterNames
virtual wxArrayString GetParameterNames(int aPage)=0
FOOTPRINT_WIZARD::GetParameterValues
virtual wxArrayString GetParameterValues(int aPage)=0
FOOTPRINT_WIZARD::GetParameterPageName
virtual wxString GetParameterPageName(int aPage)=0
FOOTPRINT_WIZARD::GetParameterErrors
virtual wxArrayString GetParameterErrors(int aPage)=0
FOOTPRINT_WIZARD::GetName
virtual wxString GetName()=0
FOOTPRINT_WIZARD::register_wizard
void register_wizard()
The standard method of a "FOOTPRINT_WIZARD" to register itself into the FOOTPRINT_WIZARD_LIST singlet...
Definition:
footprint_wizard.cpp:39
FOOTPRINT_WIZARD::FOOTPRINT_WIZARD
FOOTPRINT_WIZARD()
Definition:
footprint_wizard.h:54
FOOTPRINT_WIZARD::GetParameterTypes
virtual wxArrayString GetParameterTypes(int aPage)=0
FOOTPRINT_WIZARD::GetNumParameterPages
virtual int GetNumParameterPages()=0
FOOTPRINT_WIZARD::GetDescription
virtual wxString GetDescription()=0
FOOTPRINT_WIZARD::GetFootprint
virtual FOOTPRINT * GetFootprint(wxString *aMessage)=0
Build the footprint itself and returns it to the caller function.
FOOTPRINT_WIZARD::GetParameterDesignators
virtual wxArrayString GetParameterDesignators(int aPage)=0
FOOTPRINT_WIZARD::GetImage
virtual wxString GetImage()=0
FOOTPRINT
Definition:
footprint.h:119
WIZARD_PARAM_UNITS_PERCENT
const wxString WIZARD_PARAM_UNITS_PERCENT
Definition:
footprint_wizard.h:45
WIZARD_PARAM_UNITS_RADIANS
const wxString WIZARD_PARAM_UNITS_RADIANS
Definition:
footprint_wizard.h:43
WIZARD_PARAM_UNITS_MM
const wxString WIZARD_PARAM_UNITS_MM
Definition:
footprint_wizard.h:38
WIZARD_PARAM_UNITS_INTEGER
const wxString WIZARD_PARAM_UNITS_INTEGER
Definition:
footprint_wizard.h:41
WIZARD_PARAM_UNITS_BOOL
const wxString WIZARD_PARAM_UNITS_BOOL
Definition:
footprint_wizard.h:42
WIZARD_PARAM_UNITS_FLOAT
const wxString WIZARD_PARAM_UNITS_FLOAT
Definition:
footprint_wizard.h:40
WIZARD_PARAM_UNITS_STRING
const wxString WIZARD_PARAM_UNITS_STRING
Definition:
footprint_wizard.h:46
WIZARD_PARAM_UNITS_MILS
const wxString WIZARD_PARAM_UNITS_MILS
Definition:
footprint_wizard.h:39
WIZARD_PARAM_UNITS_DEGREES
const wxString WIZARD_PARAM_UNITS_DEGREES
Definition:
footprint_wizard.h:44
pcb_edit_frame.h
src
pcbnew
footprint_wizard.h
Generated on Fri Nov 22 2024 00:04:57 for KiCad PCB EDA Suite by
1.9.6