26#include <wx/clipbrd.h>
27#include <wx/stattext.h>
28#include <wx/textentry.h>
34#include "wx/dcclient.h"
41 wxStaticText* aUnitLabel,
bool allowEval,
bool aBindFrameEvents ) :
42 UNIT_BINDER( aParent, aParent, aLabel, aValueCtrl, aUnitLabel, allowEval, aBindFrameEvents )
47 wxStaticText* aLabel, wxWindow* aValueCtrl, wxStaticText* aUnitLabel,
48 bool aAllowEval,
bool aBindFocusEvent ) :
49 m_eventSource( aEventSource ),
50 m_bindFocusEvent( aBindFocusEvent ),
52 m_valueCtrl( aValueCtrl ),
53 m_unitLabel( aUnitLabel ),
54 m_iuScale( &aUnitsProvider->GetIuScale() ),
55 m_negativeZero( false ),
59 m_unitsInValue( false ),
60 m_originTransforms( aUnitsProvider->GetOriginTransforms() ),
63 init( aUnitsProvider );
65 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
71 int minWidth = dc.GetTextExtent( wxT(
"XXX.XXXXXXX" ) ).GetWidth();
73 if(
minSize.GetWidth() < minWidth )
78 textEntry->ChangeValue( wxT(
"-0" ) );
80 textEntry->ChangeValue( wxT(
"0" ) );
195 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
201 textEntry->SelectAll();
211 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
219 if( oldStr.length() && oldStr != textEntry->GetValue() )
221 textEntry->SetValue( oldStr );
232 textEntry->SelectAll();
242 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
260 textEntry->ChangeValue( value );
264 if( wxTheClipboard->Open() )
266 wxString sel = textEntry->GetStringSelection();
267 bool clipTarget = wxTheClipboard->IsUsingPrimarySelection();
268 wxTheClipboard->UsePrimarySelection(
true );
269 wxTheClipboard->SetData(
new wxTextDataObject( sel ) );
270 wxTheClipboard->UsePrimarySelection( clipTarget );
271 wxTheClipboard->Close();
285 wxString desc = aLabel->GetLabel();
287 desc.EndsWith( wxT(
":" ), &desc );
304 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
321 val_min_iu,
true ) );
323 textEntry->SelectAll();
326 wxPostEvent(
this, wxCommandEvent( DELAY_FOCUS ) );
337 val_max_iu,
true ) );
339 textEntry->SelectAll();
342 wxPostEvent(
this, wxCommandEvent( DELAY_FOCUS ) );
386 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
387 wxStaticText* staticText =
dynamic_cast<wxStaticText*
>(
m_valueCtrl );
389 wxString value = aValue;
400 textEntry->SetValue( value );
401 else if( staticText )
402 staticText->SetLabel( value );
449 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
450 wxStaticText* staticText =
dynamic_cast<wxStaticText*
>(
m_valueCtrl );
452 wxString value = aValue;
463 textEntry->ChangeValue( value );
464 else if( staticText )
465 staticText->SetLabel( value );
477 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
478 wxStaticText* staticText =
dynamic_cast<wxStaticText*
>(
m_valueCtrl );
486 value = textEntry->GetValue();
488 else if( staticText )
490 value = staticText->GetLabel();
508 int64_t tmp = aValue;
509 if( !aValueUsesUserUnits )
514 aValue =
static_cast<double>( tmp ) /
scale;
516 if( !aValueUsesUserUnits )
526 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
527 wxStaticText* staticText =
dynamic_cast<wxStaticText*
>(
m_valueCtrl );
535 value = textEntry->GetValue();
537 else if( staticText )
539 value = staticText->GetLabel();
562 wxTextEntry* te =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
573 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>(
m_valueCtrl );
574 wxStaticText* staticText =
dynamic_cast<wxStaticText*
>(
m_valueCtrl );
579 return textEntry->GetValue();
580 else if( staticText )
581 return staticText->GetLabel();
583 return wxEmptyString;
634 UNIT_BINDER( aParent, nullptr, nullptr, nullptr, true, false )
655 [&]( wxShowEvent& e )
The base frame for deriving all KiCad main window classes.
The base class for create windows for drawing purpose.
wxString OriginalText() const
void SetDefaultUnits(EDA_UNITS aUnits)
bool Process(const wxString &aString)
void SetControl(wxWindow *aControl)
PROPERTY_EDITOR_UNIT_BINDER(EDA_DRAW_FRAME *aParent)
virtual ~PROPERTY_EDITOR_UNIT_BINDER()
const EDA_IU_SCALE & GetIuScale() const
EDA_UNITS GetUserUnits() const
ORIGIN_TRANSFORMS::COORD_TYPES_T m_coordType
Type of coordinate for display origin transforms.
virtual void ChangeDoubleValue(double aValue)
Set new value (in Internal Units) for the text field, taking care of units conversion WITHOUT trigger...
wxString GetOriginalText() const
Return the pre-evaluated text (or the current text if evaluation is not supported).
void onKillFocus(wxFocusEvent &aEvent)
virtual long long int GetValue()
Return the current value in Internal Units.
void Enable(bool aEnable)
Enable/disable the label, widget and units label.
void onClick(wxMouseEvent &aEvent)
virtual void SetPrecision(int aLength)
Normally not needed, but can be used to set the precision when using internal units that are floats (...
virtual void SetUnits(EDA_UNITS aUnits)
Normally not needed (as the UNIT_BINDER inherits from the parent frame), but can be used to set to DE...
const EDA_IU_SCALE * m_iuScale
virtual EDA_ANGLE GetAngleValue()
bool m_negativeZero
Indicates "-0" should be displayed for 0.
wxStaticText * m_unitLabel
Can be nullptr.
bool m_unitsInValue
Units label should be included in value text.
void onSetFocus(wxFocusEvent &aEvent)
UNIT_BINDER(EDA_DRAW_FRAME *aParent, wxStaticText *aLabel, wxWindow *aValueCtrl, wxStaticText *aUnitLabel, bool aAllowEval=true, bool aBindFocusEvent=true)
ORIGIN_TRANSFORMS & m_originTransforms
A reference to an ORIGIN_TRANSFORMS object.
bool m_bindFocusEvent
The bound widgets.
long m_selStart
Selection start and end of the original text.
virtual double GetDoubleValue()
Return the current value in Internal Units.
double setPrecision(double aValue, bool aValueUsesUserUnits)
When m_precision > 0 truncate the value aValue to show only m_precision digits in mantissa.
bool IsIndeterminate() const
Return true if the control holds the indeterminate value (for instance, if it represents a multiple s...
void SetDataType(EDA_DATA_TYPE aDataType)
Used to override the datatype of the displayed property (default is DISTANCE)
void delayedFocusHandler(wxCommandEvent &aEvent)
virtual void SetAngleValue(const EDA_ANGLE &aValue)
void SetLabel(const wxString &aLabel)
void init(UNITS_PROVIDER *aProvider)
virtual void ChangeAngleValue(const EDA_ANGLE &aValue)
virtual void SetDoubleValue(double aValue)
Set new value (in Internal Units) for the text field, taking care of units conversion.
virtual ~UNIT_BINDER() override
virtual bool Validate(double aMin, double aMax, EDA_UNITS aUnits=EDA_UNITS::UNSCALED)
Validate the control against the given range, informing the user of any errors found.
virtual void ChangeValue(int aValue)
Set new value (in Internal Units) for the text field, taking care of units conversion WITHOUT trigger...
virtual void SetValue(long long int aValue)
Set new value (in Internal Units) for the text field, taking care of units conversion.
void Show(bool aShow, bool aResize=false)
Show/hide the label, widget and units label.
void onUnitsChanged(wxCommandEvent &aEvent)
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
This file is part of the common library.
const int minSize
Push and Shove router track width and via size dialog.
EDA_DATA_TYPE
The type of unit.
double FromUserUnit(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnit, double aValue)
Return in internal units the value "val" given in a real unit such as "in", "mm" or "deg".
long long int ValueFromString(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnits, const wxString &aTextValue, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE)
Function ValueFromString converts aTextValue in aUnits to internal units used by the application.
wxString StringFromValue(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnits, double aValue, bool aAddUnitsText=false, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE)
Returns the string from aValue according to aUnits (inch, mm ...) for display.
double DoubleValueFromString(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnits, const wxString &aTextValue, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE)
Function DoubleValueFromString converts aTextValue to a double.
double ToUserUnit(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnit, double aValue)
Function To_User_Unit convert aValue in internal units to the appropriate user units defined by aUnit...
wxString GetLabel(EDA_UNITS aUnits, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE)
Get the units string for a given units type.
int GetUserUnits()
Return the currently selected user unit value for the interface.
void Format(OUTPUTFORMATTER *out, int aNestLevel, int aCtl, const CPTREE &aTree)
Output a PTREE into s-expression format via an OUTPUTFORMATTER derivative.
#define INDETERMINATE_ACTION
#define INDETERMINATE_STATE
Used for holding indeterminate values, such as with multiple selections holding different values or c...
wxDEFINE_EVENT(DELAY_FOCUS, wxCommandEvent)
wxString valueDescriptionFromLabel(wxStaticText *aLabel)