summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/inputDialog.h
blob: 0f36ea49f28ad1697d56d0338f5a75203fc02774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

#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 text()const;
    
private:
    QLineEdit* LineEdit1;
    
protected slots:
    void browse();
};

#endif // INPUTDIALOG_H