Krazy/EBN: qMin is better than QMIN
[kphotoalbum.git] / MainWindow / WelcomeDialog.h
blob2524b9350fa3908b6ff8fd91c3d903d6e881b32a
1 /* Copyright (C) 2003-2006 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
19 #ifndef WELCOMEDIALOG_H
20 #define WELCOMEDIALOG_H
22 #include <kdialog.h>
23 #include <qdialog.h>
24 class QLineEdit;
26 namespace MainWindow
29 class WelcomeDialog : public QDialog
31 Q_OBJECT
33 public:
34 WelcomeDialog( QWidget* parent = 0 );
35 QString configFileName() const;
37 protected slots:
38 void slotLoadDemo();
39 void createSetup();
40 void checkFeatures();
42 private:
43 QString _configFile;
47 class FileDialog : public KDialog
49 Q_OBJECT
50 public:
51 FileDialog( QWidget* parent );
52 QString getFileName();
53 protected slots:
54 void slotBrowseForDirecory();
55 private:
56 QLineEdit* _lineEdit;
61 #endif // WELCOMEDIALOG_H