#ifndef INPUTDIALOG_H
#define INPUTDIALOG_H

#include "dialogbase.h"

class QLineEdit;

class InputDialog : public DialogBase
{
    Q_OBJECT
public:
    InputDialog( );
    static DialogBase *createWidget( const QString &text, const QString &initialText, bool password);

protected slots:
    void slotInputAccepted();

private:
    QLineEdit *m_input;
};

#endif // INPUTDIALOG_H

