Inviwo 0.9.12-pre
Inviwo documentation
Loading...
Searching...
No Matches
inviwo::NumberLineEdit Class Reference

widget for entering numbers with spinbox functionality. It uses less horizontal space than a QSpinBox and allows entering numbers in scientific notation. More...

#include <numberlineedit.h>

+ Inheritance diagram for inviwo::NumberLineEdit:

Public Member Functions

 NumberLineEdit (QWidget *parent=nullptr)
 
 NumberLineEdit (bool intMode, QWidget *parent=nullptr)
 
virtual QSize sizeHint () const override
 
virtual QSize minimumSizeHint () const override
 
virtual QString textFromValue (double value) const override
 
virtual double valueFromText (const QString &str) const override
 
void setDecimals (int decimals)
 
void setMinimum (double min)
 
void setMaximum (double max)
 
void setRange (double min, double max)
 
void setIncrement (double inc)
 
virtual void timerEvent (QTimerEvent *event) override
 Overrides the timerEvent to prevent spinbox to be updated twice in case of calculations being slow.
 
bool isValid () const
 
void setInvalid (bool invalid=true)
 

Protected Member Functions

virtual QValidator::State validate (QString &text, int &pos) const override
 
virtual void focusInEvent (QFocusEvent *e) override
 
virtual void focusOutEvent (QFocusEvent *e) override
 
virtual void resizeEvent (QResizeEvent *e) override
 
virtual void changeEvent (QEvent *e) override
 
virtual void wheelEvent (QWheelEvent *e) override
 

Detailed Description

widget for entering numbers with spinbox functionality. It uses less horizontal space than a QSpinBox and allows entering numbers in scientific notation.

The widget supports the functionality of a regular QSpinBox, i.e. the value can also be adjusted using arrow keys and mouse wheel. If the widget cannot accommodate the current number representation of the value, the representation will be changed to scientific notation once the widget looses focus. While the widget is in focus the number is shown in regular notation, except for values less than 1e-6 which are depicted in scientific representation.

Member Function Documentation

◆ setIncrement()

void inviwo::NumberLineEdit::setIncrement ( double inc)

Sets the increment of a single step to inc. If inc is zero, the spinbox buttons will be hidden.

See also
QDoubleSpinBox::setSingleStep

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