#ifndef RANGEDIALOG_H
#define RANGEDIALOG_H

#include "dialogbase.h"

class QSlider;

class RangeDialog : public DialogBase
{
    Q_OBJECT
public:
    RangeDialog( );
    static DialogBase *createWidget( const QString &text, const QString &minValue, const QString &maxValue, const QString &defaultValue );
protected slots:
    void slotInputAccepted();

private:
    QSlider *m_input;
};

#endif // RANGEDIALOG_H

