Computer Assited Medical Intervention Tool Kit  version 4.1
Public Slots | Signals | Public Member Functions | Protected Member Functions | Private Attributes | List of all members
QtDoublePropertyManager Class Reference

The QtDoublePropertyManager provides and manages double properties. More...

#include <qtpropertymanager.h>

Inherits QtAbstractPropertyManager.

Inherited by DecoratedDoublePropertyManager.

Public Slots

void setDecimals (QtProperty *property, int prec)
 
void setMaximum (QtProperty *property, double maxVal)
 
void setMinimum (QtProperty *property, double minVal)
 
void setRange (QtProperty *property, double minVal, double maxVal)
 
void setReadOnly (QtProperty *property, bool readOnly)
 
void setSingleStep (QtProperty *property, double step)
 
void setValue (QtProperty *property, double val)
 

Signals

void decimalsChanged (QtProperty *property, int prec)
 
void rangeChanged (QtProperty *property, double minVal, double maxVal)
 
void readOnlyChanged (QtProperty *property, bool readOnly)
 
void singleStepChanged (QtProperty *property, double step)
 
void valueChanged (QtProperty *property, double val)
 
- Signals inherited from QtAbstractPropertyManager
void propertyChanged (QtProperty *property)
 
void propertyDestroyed (QtProperty *property)
 
void propertyInserted (QtProperty *property, QtProperty *parent, QtProperty *after)
 
void propertyRemoved (QtProperty *property, QtProperty *parent)
 

Public Member Functions

int decimals (const QtProperty *property) const
 
bool isReadOnly (const QtProperty *property) const
 
double maximum (const QtProperty *property) const
 
double minimum (const QtProperty *property) const
 
 QtDoublePropertyManager (QObject *parent=nullptr)
 
double singleStep (const QtProperty *property) const
 
double value (const QtProperty *property) const
 
 ~QtDoublePropertyManager () override
 
- Public Member Functions inherited from QtAbstractPropertyManager
QtPropertyaddProperty (const QString &name=QString())
 
void clear () const
 
QSet< QtProperty * > properties () const
 
 QtAbstractPropertyManager (QObject *parent=nullptr)
 
 ~QtAbstractPropertyManager () override
 

Protected Member Functions

void initializeProperty (QtProperty *property) override
 
void uninitializeProperty (QtProperty *property) override
 
QString valueText (const QtProperty *property) const override
 
- Protected Member Functions inherited from QtAbstractPropertyManager
virtual QtPropertycreateProperty ()
 
virtual QString displayText (const QtProperty *property) const
 
virtual EchoMode echoMode (const QtProperty *) const
 
virtual bool hasValue (const QtProperty *property) const
 
virtual QIcon valueIcon (const QtProperty *property) const
 

Private Attributes

QtDoublePropertyManagerPrivated_ptr
 

Detailed Description

The QtDoublePropertyManager provides and manages double properties.

A double property has a current value, and a range specifying the valid values. The range is defined by a minimum and a maximum value.

The property's value and range can be retrieved using the value(), minimum() and maximum() functions, and can be set using the setValue(), setMinimum() and setMaximum() slots. Alternatively, the range can be defined in one go using the setRange() slot.

In addition, QtDoublePropertyManager provides the valueChanged() signal which is emitted whenever a property created by this manager changes, and the rangeChanged() signal which is emitted whenever such a property changes its range of valid values.

See also
QtAbstractPropertyManager, QtDoubleSpinBoxFactory

Constructor & Destructor Documentation

◆ QtDoublePropertyManager()

QtDoublePropertyManager::QtDoublePropertyManager ( QObject *  parent = nullptr)

Creates a manager with the given parent.

References d_ptr, and QtDoublePropertyManagerPrivate::q_ptr.

◆ ~QtDoublePropertyManager()

QtDoublePropertyManager::~QtDoublePropertyManager ( )
override

Destroys this manager, and all the properties it has created.

References QtAbstractPropertyManager::clear(), and d_ptr.

Member Function Documentation

◆ decimals()

int QtDoublePropertyManager::decimals ( const QtProperty property) const

Returns the given property's precision, in decimals.

See also
setDecimals()

References d_ptr, QtDoublePropertyManagerPrivate::Data::decimals, and QtDoublePropertyManagerPrivate::m_values.

Referenced by QtDoubleSpinBoxFactory::createEditor().

◆ decimalsChanged

void QtDoublePropertyManager::decimalsChanged ( QtProperty property,
int  prec 
)
signal

This signal is emitted whenever a property created by this manager changes its precision of value, passing a pointer to the property and the new prec value

See also
setDecimals()

Referenced by setDecimals().

◆ initializeProperty()

void QtDoublePropertyManager::initializeProperty ( QtProperty property)
overrideprotectedvirtual

◆ isReadOnly()

bool QtDoublePropertyManager::isReadOnly ( const QtProperty property) const

Returns read-only status of the property.

When property is read-only it's value can be selected and copied from editor but not modified.

See also
QtDoublePropertyManager::setReadOnly

References d_ptr, QtDoublePropertyManagerPrivate::m_values, and QtDoublePropertyManagerPrivate::Data::readOnly.

◆ maximum()

double QtDoublePropertyManager::maximum ( const QtProperty property) const

Returns the given property's maximum value.

See also
minimum(), setRange()

References d_ptr, and QtDoublePropertyManagerPrivate::m_values.

Referenced by QtDoubleSpinBoxFactory::createEditor().

◆ minimum()

double QtDoublePropertyManager::minimum ( const QtProperty property) const

Returns the given property's minimum value.

See also
maximum(), setRange()

References d_ptr, and QtDoublePropertyManagerPrivate::m_values.

Referenced by QtDoubleSpinBoxFactory::createEditor().

◆ rangeChanged

void QtDoublePropertyManager::rangeChanged ( QtProperty property,
double  minimum,
double  maximum 
)
signal

This signal is emitted whenever a property created by this manager changes its range of valid values, passing a pointer to the property and the new minimum and maximum values

See also
setRange()

Referenced by setMaximum(), setMinimum(), and setRange().

◆ readOnlyChanged

void QtDoublePropertyManager::readOnlyChanged ( QtProperty property,
bool  readOnly 
)
signal

Referenced by setReadOnly().

◆ setDecimals

void QtDoublePropertyManager::setDecimals ( QtProperty property,
int  prec 
)
slot

◆ setMaximum

void QtDoublePropertyManager::setMaximum ( QtProperty property,
double  maxVal 
)
slot

Sets the maximum value for the given property to maxVal.

When setting the maximum value, the minimum and current values are adjusted if necessary (ensuring that the range remains valid and that the current value is within in the range).

See also
maximum(), setRange(), rangeChanged()

References d_ptr, QtAbstractPropertyManager::propertyChanged(), rangeChanged(), and valueChanged().

◆ setMinimum

void QtDoublePropertyManager::setMinimum ( QtProperty property,
double  minVal 
)
slot

Sets the minimum value for the given property to minVal.

When setting the minimum value, the maximum and current values are adjusted if necessary (ensuring that the range remains valid and that the current value is within in the range).

See also
minimum(), setRange(), rangeChanged()

References d_ptr, QtAbstractPropertyManager::propertyChanged(), rangeChanged(), and valueChanged().

Referenced by QtSizeFPropertyManager::initializeProperty(), and QtRectFPropertyManager::initializeProperty().

◆ setRange

void QtDoublePropertyManager::setRange ( QtProperty property,
double  minimum,
double  maximum 
)
slot

Sets the range of valid values.

This is a convenience function defining the range of valid values in one go; setting the minimum and maximum values for the given property with a single function call.

When setting a new range, the current value is adjusted if necessary (ensuring that the value remains within range).

See also
setMinimum(), setMaximum(), rangeChanged()

References d_ptr, QtAbstractPropertyManager::propertyChanged(), rangeChanged(), and valueChanged().

Referenced by MainWindow::itemClicked().

◆ setReadOnly

void QtDoublePropertyManager::setReadOnly ( QtProperty property,
bool  readOnly 
)
slot

◆ setSingleStep

void QtDoublePropertyManager::setSingleStep ( QtProperty property,
double  step 
)
slot

Sets the step value for the given property to step.

The step is typically used to increment or decrement a property value while pressing an arrow key.

See also
singleStep()

References d_ptr, QtDoublePropertyManagerPrivate::m_values, QtDoublePropertyManagerPrivate::Data::singleStep, and singleStepChanged().

◆ setValue

void QtDoublePropertyManager::setValue ( QtProperty property,
double  value 
)
slot

◆ singleStep()

double QtDoublePropertyManager::singleStep ( const QtProperty property) const

Returns the given property's step value.

The step is typically used to increment or decrement a property value while pressing an arrow key.

See also
setSingleStep()

References d_ptr, QtDoublePropertyManagerPrivate::m_values, and QtDoublePropertyManagerPrivate::Data::singleStep.

Referenced by QtDoubleSpinBoxFactory::createEditor().

◆ singleStepChanged

void QtDoublePropertyManager::singleStepChanged ( QtProperty property,
double  step 
)
signal

This signal is emitted whenever a property created by this manager changes its single step property, passing a pointer to the property and the new step value

See also
setSingleStep()

Referenced by setSingleStep().

◆ uninitializeProperty()

void QtDoublePropertyManager::uninitializeProperty ( QtProperty property)
overrideprotectedvirtual

◆ value()

double QtDoublePropertyManager::value ( const QtProperty property) const

Returns the given property's value.

If the given property is not managed by this manager, this function returns 0.

See also
setValue()

References d_ptr, and QtDoublePropertyManagerPrivate::m_values.

Referenced by QtDoubleSpinBoxFactory::createEditor(), QtDoubleSpinBoxFactoryPrivate::slotDecimalsChanged(), and QtDoubleSpinBoxFactoryPrivate::slotRangeChanged().

◆ valueChanged

void QtDoublePropertyManager::valueChanged ( QtProperty property,
double  value 
)
signal

This signal is emitted whenever a property created by this manager changes its value, passing a pointer to the property and the new value as parameters.

See also
setValue()

Referenced by setMaximum(), setMinimum(), setRange(), and setValue().

◆ valueText()

QString QtDoublePropertyManager::valueText ( const QtProperty property) const
overrideprotectedvirtual

Member Data Documentation

◆ d_ptr

QtDoublePropertyManagerPrivate* QtDoublePropertyManager::d_ptr
private

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