summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/inputDialog.h
blob: d4f5e12655d290d242929a0899167c9b6d111aa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#ifndef INPUTDIALOG_H
#define INPUTDIALOG_H

#include <qvariant.h>
#include <qdialog.h>

class QLineEdit;

class InputDialog : public QDialog {
    Q_OBJECT

public:
    InputDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
    ~InputDialog();
    QString inputText;
    QLineEdit* LineEdit1;
protected slots:
    void browse();
};

#endif // INPUTDIALOG_H