Inviwo  0.9.10.1
Inviwo documentation
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)
 
virtual void timerEvent (QTimerEvent *event) override
 Overrides the timerEvent to prevent spinbox to be updated twice in case of calculations being slow.
 

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 accomodate 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 focues the number is shown in regular notation, except for values less than 1e-6 which are depicted in scientific representation.


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