summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/inputDialog.h
Unidiff
Diffstat (limited to 'noncore/multimedia/opieplayer2/inputDialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/inputDialog.h35
1 files changed, 33 insertions, 2 deletions
diff --git a/noncore/multimedia/opieplayer2/inputDialog.h b/noncore/multimedia/opieplayer2/inputDialog.h
index 0f36ea4..f64f6d4 100644
--- a/noncore/multimedia/opieplayer2/inputDialog.h
+++ b/noncore/multimedia/opieplayer2/inputDialog.h
@@ -1,25 +1,56 @@
1/*
2                This file is part of the Opie Project
3
4              Copyright (c) 2002,2003 Max Reiss <harlekin@handhelds.org>
5 Copyright (c) 2002 L. Potter <ljp@llornkcor.com>
6 =.
7 .=l.
8           .>+-=
9 _;:,     .>    :=|. This program is free software; you can
10.> <`_,   >  .   <= redistribute it and/or modify it under
11:`=1 )Y*s>-.--   : the terms of the GNU General Public
12.="- .-=="i,     .._ License as published by the Free Software
13 - .   .-<_>     .<> Foundation; either version 2 of the License,
14     ._= =}       : or (at your option) any later version.
15    .%`+i>       _;_.
16    .i_,=:_.      -<s. This program is distributed in the hope that
17     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
18    : ..    .:,     . . . without even the implied warranty of
19    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
20  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
21..}^=.=       =       ; General Public License for more
22++=   -.     .`     .: details.
23 :     =  ...= . :.=-
24 -.   .:....=;==+<; You should have received a copy of the GNU
25  -_. . .   )=.  = General Public License along with
26    --        :-=` this library; see the file COPYING.LIB.
27 If not, write to the Free Software Foundation,
28 Inc., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA.
30
31*/
32
33
1 34
2#ifndef INPUTDIALOG_H 35#ifndef INPUTDIALOG_H
3#define INPUTDIALOG_H 36#define INPUTDIALOG_H
4 37
5#include <qvariant.h> 38#include <qvariant.h>
6#include <qdialog.h> 39#include <qdialog.h>
7 40
8class QLineEdit; 41class QLineEdit;
9 42
10class InputDialog : public QDialog { 43class InputDialog : public QDialog {
11 Q_OBJECT 44 Q_OBJECT
12 45
13public: 46public:
14 InputDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); 47 InputDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
15 ~InputDialog(); 48 ~InputDialog();
16 QString text()const; 49 QString text()const;
17 50
18private: 51private:
19 QLineEdit* LineEdit1; 52 QLineEdit* LineEdit1;
20 53
21protected slots:
22 void browse();
23}; 54};
24 55
25#endif // INPUTDIALOG_H 56#endif // INPUTDIALOG_H