23#include <wx/propgrid/propgrid.h>
44 wxAnyToVariantRegistration( factory )
67 return wxTypeId(a) == wxTypeId(b);
74wxAnyValueTypeScopedPtr
86 wxAnyToVariantRegistration( factory )
109 return wxTypeId(a) == wxTypeId(b);
116wxAnyValueTypeScopedPtr
128 wxAnyToVariantRegistration( factory )
151 return wxTypeId(a) == wxTypeId(b);
169 wxAnyToVariantRegistration( factory )
192 return wxTypeId(a) == wxTypeId(b);
208 wxPGProperty* ret =
nullptr;
261 size_t typeId = aProperty->
TypeHash();
269 ret =
new wxEnumProperty( wxPG_LABEL, wxPG_LABEL,
270 const_cast<wxPGChoices&
>( aProperty->
Choices() ) );
274 ret =
new wxIntProperty();
276 else if( typeId ==
TYPE_HASH(
unsigned int ) || typeId ==
TYPE_HASH(
unsigned long ) )
278 ret =
new wxUIntProperty();
282 ret =
new wxFloatProperty();
288 else if( typeId ==
TYPE_HASH( wxString ) )
298 wxFAIL_MSG( wxString::Format( wxS(
"Property %s not supported by PGPropertyFactory" ),
299 aProperty->
Name() ) );
300 ret =
new wxPropertyCategory();
301 ret->Enable(
false );
310 ret->SetLabel( wxGetTranslation( aProperty->
Name() ) );
311 ret->SetName( aProperty->
Name() );
312 ret->SetHelpString( wxGetTranslation( aProperty->
Name() ) );
313 ret->SetClientData(
const_cast<PROPERTY_BASE*
>( aProperty ) );
333#if wxCHECK_VERSION( 3, 3, 0 )
335 wxPGPropValFormatFlags aFlags )
const
341 wxCHECK_MSG(
false,
false, wxS(
"PGPROPERTY_DISTANCE::StringToDistance should not be used." ) );
345#if wxCHECK_VERSION( 3, 3, 0 )
347 wxPGPropValFormatFlags aFlags )
const
352 if( aVariant.GetType() == wxPG_VARIANT_TYPE_DOUBLE )
354 double distanceIU = aVariant.GetDouble();
362 if( aVariant.GetType() == wxT(
"std::optional<int>" ) )
366 if( !variantData->Value().has_value() )
367 return wxEmptyString;
369 distanceIU = variantData->
Value().value();
371 else if( aVariant.GetType() == wxPG_VARIANT_TYPE_LONG )
373 distanceIU = aVariant.GetLong();
375 else if( aVariant.GetType() == wxPG_VARIANT_TYPE_LONGLONG )
377 distanceIU =
static_cast<long>( aVariant.GetLongLong().GetValue() );
379 else if( aVariant.GetType() == wxPG_VARIANT_TYPE_ULONGLONG )
381 distanceIU =
static_cast<long>( aVariant.GetULongLong().GetValue() );
385 wxFAIL_MSG( wxT(
"Expected int (or std::optional<int>) value type" ) );
386 return wxEmptyString;
398 wxIntProperty( wxPG_LABEL, wxPG_LABEL, 0 ),
404#if wxCHECK_VERSION( 3, 3, 0 )
406 wxPGPropValFormatFlags aArgFlags )
const
411 wxCHECK_MSG(
false,
false, wxS(
"PGPROPERTY_AREA::StringToValue should not be used." ) );
415#if wxCHECK_VERSION( 3, 3, 0 )
421 wxLongLongNative areaIU;
423 if( aVariant.GetType() == wxPG_VARIANT_TYPE_LONGLONG )
425 areaIU = aVariant.GetLongLong();
427 else if( aVariant.GetType() == wxPG_VARIANT_TYPE_LONG )
429 areaIU = wxLongLongNative( aVariant.GetLong() );
433 wxFAIL_MSG( wxString::Format( wxS(
"Unexpected variant type in PGPROPERTY_AREA: %s" ), aVariant.GetType() ) );
434 return wxEmptyString;
448 wxUIntProperty( wxPG_LABEL, wxPG_LABEL, 0 ),
456 if( aValue.GetType() == wxT(
"std::optional<int>" ) )
460 if( !data->Value().has_value() )
461 return wxEmptyString;
463 wxVariant value( data->Value().value() );
464 return wxUIntProperty::ValidateValue( value, aValidationInfo );
467 return wxUIntProperty::ValidateValue( aValue, aValidationInfo );
478 wxIntProperty( wxPG_LABEL, wxPG_LABEL, 0 ),
491 wxFloatProperty( wxPG_LABEL, wxPG_LABEL, 0 )
499 wxCHECK_MSG( m_customEditor, wxPGEditor_TextCtrl,
500 wxT(
"Make sure to RegisterEditorClass() for PGPROPERTY_RATIO!" ) );
501 return m_customEditor;
505#if wxCHECK_VERSION( 3, 3, 0 )
507 wxPGPropValFormatFlags aArgFlags )
const
512 wxCHECK_MSG(
false,
false, wxS(
"PGPROPERTY_RATIO::StringToValue should not be used." ) );
516#if wxCHECK_VERSION( 3, 3, 0 )
524 if( aVariant.GetType() == wxT(
"std::optional<double>" ) )
528 if( !variantData->Value().has_value() )
529 return wxEmptyString;
531 value = variantData->
Value().value();
533 else if( aVariant.GetType() == wxPG_VARIANT_TYPE_DOUBLE )
535 value = aVariant.GetDouble();
539 wxFAIL_MSG( wxT(
"Expected double (or std::optional<double>) value type" ) );
540 return wxEmptyString;
543 return wxString::Format( wxS(
"%g" ), value );
549 if( aValue.GetType() == wxT(
"std::optional<double>" ) )
553 if( !data->Value().has_value() )
554 return wxEmptyString;
556 wxVariant value( data->Value().value() );
557 return wxFloatProperty::ValidateValue( value, aValidationInfo );
560 return wxFloatProperty::ValidateValue( aValue, aValidationInfo );
570#if wxCHECK_VERSION( 3, 3, 0 )
572 wxPGPropValFormatFlags aArgFlags )
const
579 if( !aText.ToDouble( &value ) )
587 if( aVariant.IsNull() || aVariant.GetDouble() != value )
597#if wxCHECK_VERSION( 3, 3, 0 )
603 if( aVariant.GetType() == wxT(
"std::optional<double>" ) )
607 if( variantData->Value().has_value() )
608 return wxString::Format( wxS(
"%g\u00B0" ), variantData->Value().value() /
m_scale );
610 return wxEmptyString;
612 else if( aVariant.GetType() == wxPG_VARIANT_TYPE_DOUBLE )
614 return wxString::Format( wxS(
"%g\u00B0" ), aVariant.GetDouble() /
m_scale );
616 else if( aVariant.GetType() == wxS(
"EDA_ANGLE" ) )
622 else if( aVariant.GetType() == wxPG_VARIANT_TYPE_LONG )
624 return wxString::Format( wxS(
"%g\u00B0" ), (
double) aVariant.GetLong() /
m_scale );
628 wxCHECK_MSG(
false, wxEmptyString, wxS(
"Unexpected variant type in PGPROPERTY_ANGLE" ) );
641 wxSize size( 16, -1 );
643 if( wxPropertyGrid* pg = GetGrid() )
644 size = pg->FromDIP( size );
652 int index = aPaintData.m_choiceItem;
663 if( color == wxNullColour )
666 aDC.SetPen( *wxTRANSPARENT_PEN );
667 aDC.SetBrush( wxBrush( color ) );
668 aDC.DrawRectangle( aRect );
670 aPaintData.m_drawnWidth = aRect.width;
674#if wxCHECK_VERSION( 3, 3, 0 )
680 if( aValue.GetType() != wxPG_VARIANT_TYPE_STRING )
681 return wxEmptyString;
687#if wxCHECK_VERSION( 3, 3, 0 )
689 wxPGPropValFormatFlags aArgFlags )
const
700 wxBoolProperty( aLabel, aName, aValue )
708 wxCHECK_MSG( m_customEditor, wxPGEditor_CheckBox,
709 wxT(
"Make sure to RegisterEditorClass() for PGPROPERTY_BOOL!" ) );
710 return m_customEditor;
716 wxStringProperty( aLabel, aName, aValue.ToCSSString() ),
720#if wxCHECK_VERSION( 3, 3, 1 )
721 SetFlag( wxPGFlags::NoEditor );
722#elif wxCHECK_VERSION( 3, 3, 0 )
723 SetFlag( wxPGPropertyFlags::NoEditor );
725 SetFlag( wxPG_PROP_NOEDITOR );
730#if wxCHECK_VERSION( 3, 3, 0 )
732 wxPGPropValFormatFlags aArgFlags )
const
742#if wxCHECK_VERSION( 3, 3, 0 )
750 if( aValue.IsType( wxS(
"COLOR4D" ) ) )
753 return wxStringProperty::ValueToString( aValue, aFlags );
760 wxIntProperty( wxPG_LABEL, wxPG_LABEL, 0 ),
766#if wxCHECK_VERSION( 3, 3, 0 )
768 wxPGPropValFormatFlags aArgFlags )
const
773 wxCHECK_MSG(
false,
false, wxS(
"PGPROPERTY_RATIO::StringToValue should not be used." ) );
777#if wxCHECK_VERSION( 3, 3, 0 )
785 if( aVariant.GetType() == wxT(
"std::optional<int>" ) )
789 if( !variantData->Value().has_value() )
790 return wxEmptyString;
792 value = variantData->
Value().value();
794 else if( aVariant.GetType() == wxPG_VARIANT_TYPE_LONG )
796 value =
static_cast<int>( aVariant.GetInteger() );
800 wxFAIL_MSG( wxT(
"Expected int (or std::optional<int>) value type" ) );
801 return wxEmptyString;
821 wxEnumProperty( wxPG_LABEL, wxPG_LABEL, const_cast<wxPGChoices&>( aChoices ) )
823 SetEditor( wxS(
"PG_NET_SELECTOR_EDITOR" ) );
829 wxCHECK_MSG( m_customEditor, wxPGEditor_Choice,
830 wxT(
"Make sure to RegisterEditorClass() for PGPROPERTY_NET!" ) );
832 return m_customEditor;
bool Write(wxString &aString) const override
static wxVariantData * VariantDataFactory(const wxAny &aAny)
static wxVariantData * VariantDataFactory(const wxAny &aAny)
bool Write(wxString &aString) const override
The base class for create windows for drawing purpose.
A color representation with 4 components: red, green, blue, alpha.
A wxEnumProperty that displays a color next to the enum value.
void SetScale(double aScale)
wxString ValueToString(wxVariant &aVariant, int aArgFlags=0) const override
double m_scale
< Scale factor to convert between raw and displayed value
wxValidator * DoGetValidator() const override
Do not perform PG validation; the UX is not what we want.
bool StringToValue(wxVariant &aVariant, const wxString &aText, int aArgFlags=0) const override
PGPROPERTY_AREA(EDA_DRAW_FRAME *aParentFrame)
wxString ValueToString(wxVariant &aVariant, int aArgFlags=0) const override
wxValidator * DoGetValidator() const override
bool StringToValue(wxVariant &aVariant, const wxString &aText, int aArgFlags=0) const override
EDA_DRAW_FRAME * m_parentFrame
const wxPGEditor * DoGetEditorClass() const override
PGPROPERTY_BOOL(const wxString &aLabel=wxPG_LABEL, const wxString &aName=wxPG_LABEL, bool aValue=false)
KIGFX::COLOR4D m_backgroundColor
Used for rendering colors with opacity.
bool StringToValue(wxVariant &aVariant, const wxString &aText, int aFlags=0) const override
wxString ValueToString(wxVariant &aValue, int aFlags=0) const override
PGPROPERTY_COLOR4D(const wxString &aLabel=wxPG_LABEL, const wxString &aName=wxPG_LABEL, KIGFX::COLOR4D aValue=KIGFX::COLOR4D::UNSPECIFIED, KIGFX::COLOR4D aBackground=KIGFX::COLOR4D::UNSPECIFIED)
wxColour GetColor(int aValue)
wxSize OnMeasureImage(int aItem=-1) const override
void OnCustomPaint(wxDC &aDC, const wxRect &aRect, wxPGPaintData &aPaintData) override
Customized wxPGProperty class to handle angles.
PGPROPERTY_COORD(EDA_DRAW_FRAME *aParentFrame, ORIGIN_TRANSFORMS::COORD_TYPES_T aCoordType)
wxValidator * DoGetValidator() const override
EDA_DRAW_FRAME * m_parentFrame
wxString DistanceToString(wxVariant &aVariant, int aArgFlags=0) const
bool StringToDistance(wxVariant &aVariant, const wxString &aText, int aArgFlags=0) const
virtual ~PGPROPERTY_DISTANCE()=0
ORIGIN_TRANSFORMS::COORD_TYPES_T m_coordType
PGPROPERTY_DISTANCE(EDA_DRAW_FRAME *aParentFrame, ORIGIN_TRANSFORMS::COORD_TYPES_T aCoordType)
PGPROPERTY_NET(const wxPGChoices &aChoices=wxPGChoices())
const wxPGEditor * DoGetEditorClass() const override
wxValidator * DoGetValidator() const override
bool ValidateValue(wxVariant &aValue, wxPGValidationInfo &aValidationInfo) const override
bool StringToValue(wxVariant &aVariant, const wxString &aText, int aArgFlags=0) const override
wxString ValueToString(wxVariant &aVariant, int aArgFlags=0) const override
const wxPGEditor * DoGetEditorClass() const override
wxValidator * DoGetValidator() const override
bool ValidateValue(wxVariant &aValue, wxPGValidationInfo &aValidationInfo) const override
PGPROPERTY_SIZE(EDA_DRAW_FRAME *aParentFrame)
wxString ValueToString(wxVariant &aValue, int aFlags=0) const override
bool StringToValue(wxVariant &aVariant, const wxString &aString, int aFlags=0) const override
bool StringToValue(wxVariant &aVariant, const wxString &aText, int aArgFlags=0) const override
wxString ValueToString(wxVariant &aVariant, int aArgFlags=0) const override
EDA_DRAW_FRAME * m_parentFrame
PGPROPERTY_TIME(EDA_DRAW_FRAME *aParentFrame)
wxValidator * DoGetValidator() const override
bool ValidateValue(wxVariant &aValue, wxPGValidationInfo &aValidationInfo) const override
static const wxString EDITOR_NAME
static const wxString EDITOR_NAME
static const wxString EDITOR_NAME
static wxString BuildEditorName(EDA_DRAW_FRAME *aFrame)
virtual size_t TypeHash() const =0
Return type-id of the property type.
PROPERTY_DISPLAY Display() const
ORIGIN_TRANSFORMS::COORD_TYPES_T CoordType() const
virtual bool HasChoices() const
Return true if this PROPERTY has a limited set of possible values.
const wxString & Name() const
virtual const wxPGChoices & Choices() const
Return a limited set of possible values (e.g.
std::optional< double > Value() const
static wxVariantData * VariantDataFactory(const wxAny &aAny)
std::optional< int > Value() const
static wxVariantData * VariantDataFactory(const wxAny &aAny)
wxAnyToCOLOR4D_VARIANTRegistrationImpl(wxVariantDataFactory factory)
static wxAnyValueType * GetInstance()
static bool AreSameClasses(const wxAnyValueType &a, const wxAnyValueType &b)
static bool IsSameClass(const wxAnyValueType *otherType)
virtual wxAnyValueType * GetAssociatedType() override
static wxAnyValueTypeScopedPtr s_instance
static wxAnyValueTypeScopedPtr s_instance
static bool IsSameClass(const wxAnyValueType *otherType)
virtual wxAnyValueType * GetAssociatedType() override
static wxAnyValueType * GetInstance()
wxAnyToEDA_ANGLE_VARIANTRegistrationImpl(wxVariantDataFactory factory)
static bool AreSameClasses(const wxAnyValueType &a, const wxAnyValueType &b)
static bool IsSameClass(const wxAnyValueType *otherType)
static wxAnyValueType * GetInstance()
wxAnyToSTD_OPTIONAL_DOUBLE_VARIANTRegistrationImpl(wxVariantDataFactory factory)
static wxAnyValueTypeScopedPtr s_instance
virtual wxAnyValueType * GetAssociatedType() override
static bool AreSameClasses(const wxAnyValueType &a, const wxAnyValueType &b)
static bool AreSameClasses(const wxAnyValueType &a, const wxAnyValueType &b)
static wxAnyValueTypeScopedPtr s_instance
virtual wxAnyValueType * GetAssociatedType() override
static wxAnyValueType * GetInstance()
static bool IsSameClass(const wxAnyValueType *otherType)
wxAnyToSTD_OPTIONAL_INT_VARIANTRegistrationImpl(wxVariantDataFactory factory)
This file contains miscellaneous commonly used macros and functions.
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
wxPGProperty * PGPropertyFactory(const PROPERTY_BASE *aProperty, EDA_DRAW_FRAME *aFrame)
Customized abstract wxPGProperty class to handle coordinate/size units.
PROPERTY_DISPLAY
Common property types.
@ PT_DEGREE
Angle expressed in degrees.
@ PT_COORD
Coordinate expressed in distance units (mm/inch)
@ PT_DECIDEGREE
Angle expressed in decidegrees.
@ PT_AREA
Area expressed in distance units-squared (mm/inch)
@ PT_DEFAULT
Default property for a given type.
@ PT_SIZE
Size expressed in distance units (mm/inch)
@ PT_NET
Net selection property.
@ PT_TIME
Time expressed in ps.
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:...
Custom text control validator definitions.