mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Added a new widget 'MinMaxAvgWidget'
Added a new widget, MinMaxAvgWidget, a simple widget that displays values in 'min, max, avg' fashion. it has a setMaximum, setAverage and setMinimum methods, that is userful for setting the minimum, maximum and average of stuff. Ah, it also shows the minimum, maximum and average of things. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
parent
b38e2ab485
commit
48dda4192f
9 changed files with 370 additions and 239 deletions
28
qt-ui/simplewidgets.h
Normal file
28
qt-ui/simplewidgets.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
#ifndef SIMPLEWIDGETS_H
|
||||
#define SIMPLEWIDGETS_H
|
||||
|
||||
class MinMaxAvgWidgetPrivate;
|
||||
#include <QWidget>
|
||||
|
||||
class MinMaxAvgWidget : public QWidget{
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(double minimum READ minimum WRITE setMinimum)
|
||||
Q_PROPERTY(double maximum READ maximum WRITE setMaximum)
|
||||
Q_PROPERTY(double average READ average WRITE setAverage)
|
||||
public:
|
||||
MinMaxAvgWidget(QWidget *parent);
|
||||
double minimum() const;
|
||||
double maximum() const;
|
||||
double average() const;
|
||||
void setMinimum(double minimum);
|
||||
void setMaximum(double maximum);
|
||||
void setAverage(double average);
|
||||
void setMinimum(const QString& minimum);
|
||||
void setMaximum(const QString& maximum);
|
||||
void setAverage(const QString& average);
|
||||
void clear();
|
||||
private:
|
||||
MinMaxAvgWidgetPrivate *d;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue