KiCad PCB EDA Suite
D Class Reference
Inheritance diagram for D:
A C INSPECTABLE E

Public Types

enum  enum_class { TESTA = 0 , TESTB = 1 , TESTC = 4 }
 

Public Member Functions

virtual void setA (int a) override
 
virtual int getA () const override
 
enum_glob getGlobEnum () const
 
void setGlobEnum (enum_glob val)
 
enum_class getClassEnum () const
 
void setClassEnum (enum_class val)
 
void setCond (int a)
 
int getCond () const
 
virtual const int & getA2 () const
 
virtual void setPoint (const wxPoint &p)
 
void setPoint2 (wxPoint &p)
 
void setPoint3 (wxPoint p)
 
void setPoint4 (wxPoint p)
 
const wxPoint & getPoint () const
 
wxPoint getPoint2 () const
 
wxPoint getPoint3 ()
 
const wxPoint & getPoint4 () const
 
bool Set (PROPERTY_BASE *aProperty, wxAny &aValue)
 
template<typename T >
bool Set (PROPERTY_BASE *aProperty, T aValue)
 
template<typename T >
bool Set (const wxString &aProperty, T aValue)
 
wxAny Get (PROPERTY_BASE *aProperty) const
 
template<typename T >
Get (PROPERTY_BASE *aProperty) const
 
template<typename T >
std::optional< T > Get (const wxString &aProperty) const
 
bool getBool () const
 
void setBool (bool a)
 
int getNew () const
 
void setNew (int m)
 

Public Attributes

enum_glob m_enum_glob
 
enum_class m_enum_class
 
int m_aa = 0
 
int m_cond = 0
 
int m_m = 0
 
bool m_bool = false
 

Protected Attributes

int m_a = 0
 
wxPoint m_p
 

Detailed Description

Definition at line 79 of file test_property.cpp.

Member Enumeration Documentation

◆ enum_class

Enumerator
TESTA 
TESTB 
TESTC 

Definition at line 82 of file test_property.cpp.

82{ TESTA = 0, TESTB = 1, TESTC = 4 };
@ TESTC
@ TESTA
@ TESTB

Member Function Documentation

◆ Get() [1/3]

template<typename T >
std::optional< T > INSPECTABLE::Get ( const wxString &  aProperty) const
inlineinherited

Definition at line 104 of file inspectable.h.

105 {
107 TYPE_ID thisType = TYPE_HASH( *this );
108 PROPERTY_BASE* prop = propMgr.GetProperty( thisType, aProperty );
109 std::optional<T> ret;
110
111 if( prop )
112 {
113 const void* object = propMgr.TypeCast( this, thisType, prop->OwnerHash() );
114
115 if( object )
116 ret = prop->get<T>( object );
117 }
118
119 return ret;
120 }
virtual size_t OwnerHash() const =0
Return type-id of the Owner class.
T get(const void *aObject) const
Definition: property.h:352
Provide class metadata.Helper macro to map type hashes to names.
Definition: property_mgr.h:74
static PROPERTY_MANAGER & Instance()
Definition: property_mgr.h:76
PROPERTY_BASE * GetProperty(TYPE_ID aType, const wxString &aProperty) const
Return a property for a specific type.
const void * TypeCast(const void *aSource, TYPE_ID aBase, TYPE_ID aTarget) const
Cast a type to another type.
#define TYPE_HASH(x)
Definition: property.h:63
size_t TYPE_ID
Unique type identifier.
Definition: property_mgr.h:46

References PROPERTY_BASE::get(), PROPERTY_MANAGER::GetProperty(), PROPERTY_MANAGER::Instance(), PROPERTY_BASE::OwnerHash(), TYPE_HASH, and PROPERTY_MANAGER::TypeCast().

◆ Get() [2/3]

wxAny INSPECTABLE::Get ( PROPERTY_BASE aProperty) const
inlineinherited

Definition at line 84 of file inspectable.h.

85 {
87 const void* object = propMgr.TypeCast( this, TYPE_HASH( *this ), aProperty->OwnerHash() );
88 return object ? aProperty->getter( object ) : wxAny();
89 }
virtual wxAny getter(const void *aObject) const =0

References PROPERTY_BASE::getter(), PROPERTY_MANAGER::Instance(), PROPERTY_BASE::OwnerHash(), TYPE_HASH, and PROPERTY_MANAGER::TypeCast().

Referenced by BOOST_AUTO_TEST_CASE(), CLASS_D_DESC::CLASS_D_DESC(), EDA_SHAPE_DESC::EDA_SHAPE_DESC(), PROPERTIES_PANEL::getItemValue(), PCB_EXPR_VAR_REF::GetValue(), and PAD_DESC::PAD_DESC().

◆ Get() [3/3]

template<typename T >
T INSPECTABLE::Get ( PROPERTY_BASE aProperty) const
inlineinherited

Definition at line 92 of file inspectable.h.

93 {
95 const void* object = propMgr.TypeCast( this, TYPE_HASH( *this ), aProperty->OwnerHash() );
96
97 if( !object )
98 throw std::runtime_error( "Could not cast INSPECTABLE to the requested type" );
99
100 return aProperty->get<T>( object );
101 }

References PROPERTY_BASE::get(), PROPERTY_MANAGER::Instance(), PROPERTY_BASE::OwnerHash(), TYPE_HASH, and PROPERTY_MANAGER::TypeCast().

◆ getA()

virtual int D::getA ( ) const
inlineoverridevirtual

Implements A.

Definition at line 86 of file test_property.cpp.

86{ return m_aa; }
int m_aa

References m_aa.

◆ getA2()

virtual const int & A::getA2 ( ) const
inlinevirtualinherited

Definition at line 34 of file test_property.cpp.

34{ return m_a; }
int m_a

References A::m_a.

Referenced by CLASS_A_DESC::CLASS_A_DESC().

◆ getBool()

bool C::getBool ( ) const
inlineinherited

Definition at line 67 of file test_property.cpp.

67{ return m_bool; }
bool m_bool

References C::m_bool.

Referenced by CLASS_C_DESC::CLASS_C_DESC(), and CLASS_D_DESC::CLASS_D_DESC().

◆ getClassEnum()

enum_class D::getClassEnum ( ) const
inline

Definition at line 91 of file test_property.cpp.

91{ return m_enum_class; }
enum_class m_enum_class

References m_enum_class.

Referenced by CLASS_D_DESC::CLASS_D_DESC().

◆ getCond()

int D::getCond ( ) const
inline

Definition at line 95 of file test_property.cpp.

95{ return m_cond; }
int m_cond

References m_cond.

Referenced by CLASS_D_DESC::CLASS_D_DESC().

◆ getGlobEnum()

enum_glob D::getGlobEnum ( ) const
inline

Definition at line 88 of file test_property.cpp.

88{ return m_enum_glob; }
enum_glob m_enum_glob

References m_enum_glob.

Referenced by CLASS_D_DESC::CLASS_D_DESC(), and CLASS_E_DESC::CLASS_E_DESC().

◆ getNew()

int C::getNew ( ) const
inlineinherited

Definition at line 70 of file test_property.cpp.

70{ return m_m; }
int m_m

References C::m_m.

Referenced by CLASS_C_DESC::CLASS_C_DESC().

◆ getPoint()

const wxPoint & A::getPoint ( ) const
inlineinherited

Definition at line 41 of file test_property.cpp.

41{ return m_p; }
wxPoint m_p

References A::m_p.

Referenced by CLASS_A_DESC::CLASS_A_DESC(), and CLASS_D_DESC::CLASS_D_DESC().

◆ getPoint2()

wxPoint A::getPoint2 ( ) const
inlineinherited

Definition at line 42 of file test_property.cpp.

42{ return m_p; }

References A::m_p.

Referenced by CLASS_A_DESC::CLASS_A_DESC().

◆ getPoint3()

wxPoint A::getPoint3 ( )
inlineinherited

Definition at line 43 of file test_property.cpp.

43{ return m_p; }

References A::m_p.

◆ getPoint4()

const wxPoint & A::getPoint4 ( ) const
inlineinherited

Definition at line 44 of file test_property.cpp.

44{ return m_p; }

References A::m_p.

Referenced by CLASS_A_DESC::CLASS_A_DESC().

◆ Set() [1/3]

template<typename T >
bool INSPECTABLE::Set ( const wxString &  aProperty,
aValue 
)
inlineinherited

Definition at line 66 of file inspectable.h.

67 {
69 TYPE_ID thisType = TYPE_HASH( *this );
70 PROPERTY_BASE* prop = propMgr.GetProperty( thisType, aProperty );
71 void* object = nullptr;
72
73 if( prop )
74 {
75 object = propMgr.TypeCast( this, thisType, prop->OwnerHash() );
76
77 if( object )
78 prop->set<T>( object, aValue );
79 }
80
81 return object != nullptr;
82 }
void set(void *aObject, T aValue)
Definition: property.h:325

References PROPERTY_MANAGER::GetProperty(), PROPERTY_MANAGER::Instance(), PROPERTY_BASE::OwnerHash(), PROPERTY_BASE::set(), TYPE_HASH, and PROPERTY_MANAGER::TypeCast().

◆ Set() [2/3]

template<typename T >
bool INSPECTABLE::Set ( PROPERTY_BASE aProperty,
aValue 
)
inlineinherited

Definition at line 54 of file inspectable.h.

55 {
57 void* object = propMgr.TypeCast( this, TYPE_HASH( *this ), aProperty->OwnerHash() );
58
59 if( object )
60 aProperty->set<T>( object, aValue );
61
62 return object != nullptr;
63 }

References PROPERTY_MANAGER::Instance(), PROPERTY_BASE::OwnerHash(), PROPERTY_BASE::set(), TYPE_HASH, and PROPERTY_MANAGER::TypeCast().

◆ Set() [3/3]

bool INSPECTABLE::Set ( PROPERTY_BASE aProperty,
wxAny &  aValue 
)
inlineinherited

Definition at line 42 of file inspectable.h.

43 {
45 void* object = propMgr.TypeCast( this, TYPE_HASH( *this ), aProperty->OwnerHash() );
46
47 if( object )
48 aProperty->setter( object, aValue );
49
50 return object != nullptr;
51 }
virtual void setter(void *aObject, wxAny &aValue)=0

References PROPERTY_MANAGER::Instance(), PROPERTY_BASE::OwnerHash(), PROPERTY_BASE::setter(), TYPE_HASH, and PROPERTY_MANAGER::TypeCast().

Referenced by PCB_PROPERTIES_PANEL::valueChanged().

◆ setA()

virtual void D::setA ( int  a)
inlineoverridevirtual

Implements A.

Definition at line 85 of file test_property.cpp.

85{ m_aa = 2 * a; }

References m_aa.

◆ setBool()

void C::setBool ( bool  a)
inlineinherited

Definition at line 68 of file test_property.cpp.

68{ m_bool = a; }

References C::m_bool.

Referenced by CLASS_C_DESC::CLASS_C_DESC(), and CLASS_D_DESC::CLASS_D_DESC().

◆ setClassEnum()

void D::setClassEnum ( enum_class  val)
inline

Definition at line 92 of file test_property.cpp.

92{ m_enum_class = val; }

References m_enum_class.

Referenced by CLASS_D_DESC::CLASS_D_DESC().

◆ setCond()

void D::setCond ( int  a)
inline

Definition at line 94 of file test_property.cpp.

94{ m_cond = a; }

References m_cond.

Referenced by CLASS_D_DESC::CLASS_D_DESC().

◆ setGlobEnum()

void D::setGlobEnum ( enum_glob  val)
inline

Definition at line 89 of file test_property.cpp.

89{ m_enum_glob = val; }

References m_enum_glob.

Referenced by BOOST_AUTO_TEST_CASE(), CLASS_D_DESC::CLASS_D_DESC(), and CLASS_E_DESC::CLASS_E_DESC().

◆ setNew()

void C::setNew ( int  m)
inlineinherited

Definition at line 71 of file test_property.cpp.

71{ m_m = m; }

References C::m_m.

Referenced by CLASS_C_DESC::CLASS_C_DESC().

◆ setPoint()

virtual void A::setPoint ( const wxPoint &  p)
inlinevirtualinherited

Definition at line 36 of file test_property.cpp.

36{ m_p = p; }

References A::m_p.

Referenced by CLASS_A_DESC::CLASS_A_DESC(), and CLASS_D_DESC::CLASS_D_DESC().

◆ setPoint2()

void A::setPoint2 ( wxPoint &  p)
inlineinherited

Definition at line 37 of file test_property.cpp.

37{ m_p = p; }

References A::m_p.

◆ setPoint3()

void A::setPoint3 ( wxPoint  p)
inlineinherited

Definition at line 38 of file test_property.cpp.

38{ m_p = p; }

References A::m_p.

◆ setPoint4()

void A::setPoint4 ( wxPoint  p)
inlineinherited

Definition at line 39 of file test_property.cpp.

39{ m_p = p; }

References A::m_p.

Referenced by CLASS_A_DESC::CLASS_A_DESC().

Member Data Documentation

◆ m_a

int A::m_a = 0
protectedinherited

Definition at line 47 of file test_property.cpp.

Referenced by B::getA(), A::getA2(), and B::setA().

◆ m_aa

int D::m_aa = 0

Definition at line 99 of file test_property.cpp.

Referenced by getA(), and setA().

◆ m_bool

bool C::m_bool = false
inherited

Definition at line 74 of file test_property.cpp.

Referenced by C::getBool(), and C::setBool().

◆ m_cond

int D::m_cond = 0

Definition at line 100 of file test_property.cpp.

Referenced by getCond(), and setCond().

◆ m_enum_class

enum_class D::m_enum_class

Definition at line 98 of file test_property.cpp.

Referenced by getClassEnum(), and setClassEnum().

◆ m_enum_glob

enum_glob D::m_enum_glob

Definition at line 97 of file test_property.cpp.

Referenced by getGlobEnum(), and setGlobEnum().

◆ m_m

int C::m_m = 0
inherited

Definition at line 73 of file test_property.cpp.

Referenced by C::getNew(), and C::setNew().

◆ m_p

wxPoint A::m_p
protectedinherited

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