KiCad PCB EDA Suite
FOOTPRINT_INFO Class Reference

#include <footprint_info.h>

Inheritance diagram for FOOTPRINT_INFO:
LIB_TREE_ITEM BASIC_FOOTPRINT_INFO FOOTPRINT_INFO_IMPL

Public Member Functions

virtual ~FOOTPRINT_INFO ()
 
const wxString & GetFootprintName () const
 
wxString GetLibNickname () const override
 
wxString GetName () const override
 
LIB_ID GetLibId () const override
 
wxString GetDescription () override
 
wxString GetKeywords ()
 
wxString GetSearchText () override
 
unsigned GetPadCount ()
 
unsigned GetUniquePadCount ()
 
int GetOrderNum ()
 
bool InLibrary (const wxString &aLibrary) const
 Test if the FOOTPRINT_INFO object was loaded from aLibrary. More...
 
virtual void GetChooserFields (std::map< wxString, wxString > &aColumnMap)
 Retrieves a key/value map of the fields on this item that should be exposed to the library browser/chooser for displaying in columns, searching, etc. More...
 
virtual bool IsRoot () const
 For items having aliases, IsRoot() indicates the principal item. More...
 
virtual wxString GetFootprint ()
 For items with footprint fields. More...
 
virtual int GetUnitCount () const
 For items with units, return the number of units. More...
 
virtual wxString GetUnitReference (int aUnit)
 For items with units, return an identifier for unit x. More...
 
virtual wxString GetUnitDisplayName (int aUnit)
 For items with units, return a display name for unit x. More...
 
virtual bool HasUnitDisplayName (int aUnit)
 For items with units, return true if a display name is set for x. More...
 

Protected Member Functions

void ensure_loaded ()
 
virtual void load ()
 lazily load stuff not filled in by constructor. This may throw IO_ERRORS. More...
 

Protected Attributes

FOOTPRINT_LISTm_owner
 provides access to FP_LIB_TABLE More...
 
bool m_loaded
 
wxString m_nickname
 library as known in FP_LIB_TABLE More...
 
wxString m_fpname
 Module name. More...
 
int m_num
 Order number in the display list. More...
 
unsigned m_pad_count
 Number of pads. More...
 
unsigned m_unique_pad_count
 Number of unique pads. More...
 
wxString m_doc
 Footprint description. More...
 
wxString m_keywords
 Footprint keywords. More...
 

Friends

bool operator< (const FOOTPRINT_INFO &lhs, const FOOTPRINT_INFO &rhs)
 Less than comparison operator, intended for sorting FOOTPRINT_INFO objects. More...
 

Detailed Description

Definition at line 59 of file footprint_info.h.

Constructor & Destructor Documentation

◆ ~FOOTPRINT_INFO()

virtual FOOTPRINT_INFO::~FOOTPRINT_INFO ( )
inlinevirtual

Definition at line 62 of file footprint_info.h.

63 {
64 }

Member Function Documentation

◆ ensure_loaded()

void FOOTPRINT_INFO::ensure_loaded ( )
inlineprotected

Definition at line 135 of file footprint_info.h.

136 {
137 if( !m_loaded )
138 load();
139 }
virtual void load()
lazily load stuff not filled in by constructor. This may throw IO_ERRORS.

◆ GetChooserFields()

virtual void LIB_TREE_ITEM::GetChooserFields ( std::map< wxString, wxString > &  aColumnMap)
inlinevirtualinherited

Retrieves a key/value map of the fields on this item that should be exposed to the library browser/chooser for displaying in columns, searching, etc.

Reimplemented in LIB_SYMBOL.

Definition at line 56 of file lib_tree_item.h.

56{}

Referenced by LIB_TREE_NODE_LIB_ID::LIB_TREE_NODE_LIB_ID(), and LIB_TREE_NODE_LIB_ID::Update().

◆ GetDescription()

wxString FOOTPRINT_INFO::GetDescription ( )
inlineoverridevirtual

Implements LIB_TREE_ITEM.

Definition at line 80 of file footprint_info.h.

81 {
83 return m_doc;
84 }
wxString m_doc
Footprint description.

Referenced by CVPCB_MAINFRAME::DisplayStatus().

◆ GetFootprint()

virtual wxString LIB_TREE_ITEM::GetFootprint ( )
inlinevirtualinherited

For items with footprint fields.

Reimplemented in LIB_SYMBOL.

Definition at line 68 of file lib_tree_item.h.

68{ return wxEmptyString; }

Referenced by LIB_TREE_NODE_LIB_ID::LIB_TREE_NODE_LIB_ID().

◆ GetFootprintName()

const wxString & FOOTPRINT_INFO::GetFootprintName ( ) const
inline

◆ GetKeywords()

wxString FOOTPRINT_INFO::GetKeywords ( )
inline

Definition at line 86 of file footprint_info.h.

87 {
89 return m_keywords;
90 }
wxString m_keywords
Footprint keywords.

Referenced by CVPCB_MAINFRAME::DisplayStatus().

◆ GetLibId()

LIB_ID FOOTPRINT_INFO::GetLibId ( ) const
inlineoverridevirtual

Implements LIB_TREE_ITEM.

Definition at line 75 of file footprint_info.h.

76 {
77 return LIB_ID( m_nickname, m_fpname );
78 }
wxString m_nickname
library as known in FP_LIB_TABLE
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49

◆ GetLibNickname()

wxString FOOTPRINT_INFO::GetLibNickname ( ) const
inlineoverridevirtual

◆ GetName()

wxString FOOTPRINT_INFO::GetName ( void  ) const
inlineoverridevirtual

Implements LIB_TREE_ITEM.

Definition at line 73 of file footprint_info.h.

73{ return m_fpname; }

◆ GetOrderNum()

int FOOTPRINT_INFO::GetOrderNum ( )
inline

Definition at line 113 of file footprint_info.h.

114 {
116 return m_num;
117 }
int m_num
Order number in the display list.

◆ GetPadCount()

unsigned FOOTPRINT_INFO::GetPadCount ( )
inline

Definition at line 101 of file footprint_info.h.

102 {
104 return m_pad_count;
105 }
unsigned m_pad_count
Number of pads.

◆ GetSearchText()

wxString FOOTPRINT_INFO::GetSearchText ( )
inlineoverridevirtual

Reimplemented from LIB_TREE_ITEM.

Definition at line 92 of file footprint_info.h.

93 {
94 // Matches are scored by offset from front of string, so inclusion of this spacer
95 // discounts matches found after it.
96 static const wxString discount( wxT( " " ) );
97
98 return GetKeywords() + discount + GetDescription();
99 }
wxString GetDescription() override
wxString GetKeywords()

References LIB_TREE_ITEM::GetDescription().

Referenced by FOOTPRINT_FILTER::ITERATOR::increment().

◆ GetUniquePadCount()

unsigned FOOTPRINT_INFO::GetUniquePadCount ( )
inline

Definition at line 107 of file footprint_info.h.

108 {
110 return m_unique_pad_count;
111 }
unsigned m_unique_pad_count
Number of unique pads.

Referenced by FOOTPRINT_FILTER::ITERATOR::PinCountMatch().

◆ GetUnitCount()

virtual int LIB_TREE_ITEM::GetUnitCount ( void  ) const
inlinevirtualinherited

For items with units, return the number of units.

Reimplemented in LIB_SYMBOL.

Definition at line 73 of file lib_tree_item.h.

73{ return 0; }

Referenced by LIB_TREE_NODE_LIB_ID::LIB_TREE_NODE_LIB_ID(), and LIB_TREE_NODE_LIB_ID::Update().

◆ GetUnitDisplayName()

virtual wxString LIB_TREE_ITEM::GetUnitDisplayName ( int  aUnit)
inlinevirtualinherited

For items with units, return a display name for unit x.

Reimplemented in LIB_SYMBOL.

Definition at line 83 of file lib_tree_item.h.

83{ return wxEmptyString; }

Referenced by LIB_TREE_NODE_UNIT::LIB_TREE_NODE_UNIT().

◆ GetUnitReference()

virtual wxString LIB_TREE_ITEM::GetUnitReference ( int  aUnit)
inlinevirtualinherited

For items with units, return an identifier for unit x.

Reimplemented in LIB_SYMBOL.

Definition at line 78 of file lib_tree_item.h.

78{ return wxEmptyString; }

Referenced by LIB_TREE_NODE_UNIT::LIB_TREE_NODE_UNIT().

◆ HasUnitDisplayName()

virtual bool LIB_TREE_ITEM::HasUnitDisplayName ( int  aUnit)
inlinevirtualinherited

For items with units, return true if a display name is set for x.

Reimplemented in LIB_SYMBOL.

Definition at line 88 of file lib_tree_item.h.

88{ return false; }

Referenced by LIB_TREE_NODE_UNIT::LIB_TREE_NODE_UNIT().

◆ InLibrary()

bool FOOTPRINT_INFO::InLibrary ( const wxString &  aLibrary) const

Test if the FOOTPRINT_INFO object was loaded from aLibrary.

Parameters
aLibraryis the nickname of the library to test.
Returns
true if the FOOTPRINT_INFO object was loaded from aLibrary. Otherwise false.

Definition at line 72 of file footprint_info.cpp.

73{
74 return aLibrary == m_nickname;
75}

References m_nickname.

Referenced by FOOTPRINT_FILTER::ITERATOR::increment().

◆ IsRoot()

virtual bool LIB_TREE_ITEM::IsRoot ( ) const
inlinevirtualinherited

For items having aliases, IsRoot() indicates the principal item.

Reimplemented in LIB_SYMBOL.

Definition at line 63 of file lib_tree_item.h.

63{ return true; }

Referenced by LIB_TREE_NODE_LIB_ID::LIB_TREE_NODE_LIB_ID(), and LIB_TREE_NODE_LIB_ID::Update().

◆ load()

virtual void FOOTPRINT_INFO::load ( )
inlineprotectedvirtual

lazily load stuff not filled in by constructor. This may throw IO_ERRORS.

Reimplemented in FOOTPRINT_INFO_IMPL.

Definition at line 142 of file footprint_info.h.

142{ };

Friends And Related Function Documentation

◆ operator<

bool operator< ( const FOOTPRINT_INFO lhs,
const FOOTPRINT_INFO rhs 
)
friend

Less than comparison operator, intended for sorting FOOTPRINT_INFO objects.

Definition at line 78 of file footprint_info.cpp.

79{
80 int retv = StrNumCmp( lhs.m_nickname, rhs.m_nickname, false );
81
82 if( retv != 0 )
83 return retv < 0;
84
85 // Technically footprint names are not case sensitive because the file name is used
86 // as the footprint name. On windows this would be problematic because windows does
87 // not support case sensitive file names by default. This should not cause any issues
88 // and allow for a future change to use the name defined in the footprint file.
89 return StrNumCmp( lhs.m_fpname, rhs.m_fpname, false ) < 0;
90}
int StrNumCmp(const wxString &aString1, const wxString &aString2, bool aIgnoreCase)
Compare two strings with alphanumerical content.

Member Data Documentation

◆ m_doc

wxString FOOTPRINT_INFO::m_doc
protected

◆ m_fpname

wxString FOOTPRINT_INFO::m_fpname
protected

◆ m_keywords

wxString FOOTPRINT_INFO::m_keywords
protected

◆ m_loaded

bool FOOTPRINT_INFO::m_loaded
protected

◆ m_nickname

wxString FOOTPRINT_INFO::m_nickname
protected

◆ m_num

int FOOTPRINT_INFO::m_num
protected

Order number in the display list.

Definition at line 150 of file footprint_info.h.

Referenced by FOOTPRINT_INFO_IMPL::FOOTPRINT_INFO_IMPL().

◆ m_owner

FOOTPRINT_LIST* FOOTPRINT_INFO::m_owner
protected

provides access to FP_LIB_TABLE

Definition at line 144 of file footprint_info.h.

Referenced by FOOTPRINT_INFO_IMPL::FOOTPRINT_INFO_IMPL(), and FOOTPRINT_INFO_IMPL::load().

◆ m_pad_count

unsigned FOOTPRINT_INFO::m_pad_count
protected

◆ m_unique_pad_count

unsigned FOOTPRINT_INFO::m_unique_pad_count
protected

The documentation for this class was generated from the following files: