216 lines
6.8 KiB
C++
216 lines
6.8 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2014-2015 CERN
|
|
* Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors.
|
|
* Author: Maciej Suminski <maciej.suminski@cern.ch>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you may find one here:
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef __UNIT_BINDER_H_
|
|
#define __UNIT_BINDER_H_
|
|
|
|
#include <common.h>
|
|
#include <base_units.h>
|
|
#include <base_struct.h>
|
|
#include <origin_transforms.h>
|
|
#include <libeval/numeric_evaluator.h>
|
|
|
|
|
|
class wxTextEntry;
|
|
class wxSpinButton;
|
|
class wxStaticText;
|
|
|
|
|
|
class UNIT_BINDER : public wxEvtHandler
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Constructor.
|
|
* @param aParent is the parent EDA_DRAW_FRAME.
|
|
* @param aLabel is the static text used to label the text input widget (note: the label
|
|
* text, trimmed of its colon, will also be used in error messages)
|
|
* @param aValue is the control used to edit or display the given value (wxTextCtrl,
|
|
* wxComboBox, wxStaticText, etc.).
|
|
* @param aUnitLabel is the units label displayed after the text input widget
|
|
* @param aUseMils specifies the use of mils for imperial units (instead of inches)
|
|
* @param aAllowEval indicates \a aTextInput's content should be eval'ed before storing
|
|
*/
|
|
UNIT_BINDER( EDA_DRAW_FRAME* aParent,
|
|
wxStaticText* aLabel, wxWindow* aValue, wxStaticText* aUnitLabel,
|
|
bool aUseMils = false, bool aAllowEval = true );
|
|
|
|
~UNIT_BINDER() override;
|
|
|
|
/**
|
|
* Function SetUnits
|
|
* Normally not needed (as the UNIT_BINDER inherits from the parent frame), but can be
|
|
* used to set to DEGREES for angular controls.
|
|
*/
|
|
virtual void SetUnits( EDA_UNITS aUnits, bool aUseMils = false );
|
|
|
|
/**
|
|
* Used to override the datatype of the displayed property (default is DISTANCE)
|
|
* @param aDataType is the datatype to use for the units text display
|
|
*/
|
|
void SetDataType( EDA_DATA_TYPE aDataType );
|
|
|
|
/**
|
|
* Function SetValue
|
|
* Sets new value (in Internal Units) for the text field, taking care of units conversion.
|
|
* @param aValue is the new value.
|
|
*/
|
|
virtual void SetValue( int aValue );
|
|
|
|
void SetValue( wxString aValue );
|
|
|
|
/**
|
|
* Function SetDoubleValue
|
|
* Sets new value (in Internal Units) for the text field, taking care of units conversion.
|
|
* @param aValue is the new value.
|
|
*/
|
|
virtual void SetDoubleValue( double aValue );
|
|
|
|
/**
|
|
* Function ChangeValue
|
|
* Changes the value (in Internal Units) for the text field, taking care of units conversion
|
|
* but does not trigger the update routine
|
|
* @param aValue is the new value.
|
|
*/
|
|
virtual void ChangeValue( int aValue );
|
|
|
|
void ChangeValue( const wxString& aValue );
|
|
|
|
/**
|
|
* Function GetValue
|
|
* Returns the current value in Internal Units.
|
|
*/
|
|
virtual long long int GetValue();
|
|
|
|
/**
|
|
* Function GetValue
|
|
* Returns the current value in Internal Units.
|
|
*/
|
|
virtual double GetDoubleValue();
|
|
|
|
/**
|
|
* Function IsIndeterminate
|
|
* Returns true if the control holds the indeterminate value (for instance, if it
|
|
* represents a multiple selection of differing values).
|
|
*/
|
|
bool IsIndeterminate() const;
|
|
|
|
/**
|
|
* Function GetOriginalText
|
|
* Returns the pre-evaluated text (or the current text if evaluation is not supported).
|
|
* Used primarily to remember values between dialog invocations.
|
|
*/
|
|
wxString GetOriginalText() const;
|
|
|
|
/**
|
|
* Function Validate
|
|
* Validates the control against the given range, informing the user of any errors found.
|
|
*
|
|
* @param aMin a minimum value for validation
|
|
* @param aMax a maximum value for validation
|
|
* @param aUnits the units of the min/max parameters (use UNSCALED for internal units)
|
|
* @param aUseMils if \a aUnits is EDA_UNITS::INCHES, interpret as mils
|
|
* @return false on error.
|
|
*/
|
|
virtual bool Validate( double aMin, double aMax, EDA_UNITS aUnits = EDA_UNITS::UNSCALED,
|
|
bool aUseMils = false );
|
|
|
|
void SetLabel( const wxString& aLabel );
|
|
|
|
/**
|
|
* Function Enable
|
|
* Enables/diasables the label, widget and units label.
|
|
*/
|
|
void Enable( bool aEnable );
|
|
|
|
/**
|
|
* Function Show
|
|
* Shows/hides the label, widget and units label.
|
|
*
|
|
* @param aShow called for the Show() routine in wx
|
|
* @param aResize if true, the element will be sized to 0 on hide and -1 on show
|
|
*/
|
|
void Show( bool aShow, bool aResize = false );
|
|
|
|
/**
|
|
* Get the origin transforms coordinate type
|
|
*
|
|
* @returns the origin transforms coordinate type
|
|
*/
|
|
ORIGIN_TRANSFORMS::COORD_TYPES_T GetCoordType() const
|
|
{
|
|
return m_coordType;
|
|
}
|
|
|
|
/**
|
|
* Function SetOriginTransform
|
|
* Sets the current origin transform mode
|
|
*/
|
|
void SetCoordType( ORIGIN_TRANSFORMS::COORD_TYPES_T aCoordType )
|
|
{
|
|
m_coordType = aCoordType;
|
|
}
|
|
|
|
protected:
|
|
|
|
void onSetFocus( wxFocusEvent& aEvent );
|
|
void onKillFocus( wxFocusEvent& aEvent );
|
|
void delayedFocusHandler( wxCommandEvent& aEvent );
|
|
|
|
void onUnitsChanged( wxCommandEvent& aEvent );
|
|
|
|
EDA_DRAW_FRAME* m_frame;
|
|
|
|
///> The bound widgets
|
|
wxStaticText* m_label;
|
|
wxWindow* m_value;
|
|
wxStaticText* m_unitLabel;
|
|
|
|
///> Currently used units.
|
|
EDA_UNITS m_units;
|
|
bool m_useMils;
|
|
EDA_DATA_TYPE m_dataType;
|
|
|
|
///> Validation support.
|
|
wxString m_errorMessage;
|
|
|
|
///> Evaluator
|
|
NUMERIC_EVALUATOR m_eval;
|
|
bool m_allowEval;
|
|
bool m_needsEval;
|
|
|
|
///> Selection start and end of the original text
|
|
long m_selStart;
|
|
long m_selEnd;
|
|
|
|
/// A reference to an ORIGIN_TRANSFORMS object
|
|
ORIGIN_TRANSFORMS& m_originTransforms;
|
|
|
|
/// Type of coordinate for display origin transforms
|
|
ORIGIN_TRANSFORMS::COORD_TYPES_T m_coordType;
|
|
};
|
|
|
|
#endif /* __UNIT_BINDER_H_ */
|