qt-material-widgets/examples/sliderexamples.h

24 lines
354 B
C
Raw Normal View History

2016-03-22 14:20:06 +00:00
#ifndef SLIDEREXAMPLES_H
#define SLIDEREXAMPLES_H
#include "examplelist.h"
class QLineEdit;
class SliderExamples : public ExampleList
{
Q_OBJECT
public:
explicit SliderExamples(QWidget *parent = 0);
~SliderExamples();
protected slots:
void updateValue(int value);
private:
QLineEdit *const _edit;
};
2016-03-22 14:20:06 +00:00
#endif // SLIDEREXAMPLES_H