1/****************************************************************************
2**
3** Copyright (C) 2008 Ralf Habacker <ralf.habacker@freenet.de>
4** All rights reserved.
5**
6** This file is part of the KDE installer for windows
7**
8** This file may be used under the terms of the GNU General Public
9** License version 2.0 as published by the Free Software Foundation
10** and appearing in the file LICENSE.GPL included in the packaging of
11** this file. Please review the following information to ensure GNU
12** General Public Licensing requirements will be met:
13** http://www.trolltech.com/products/qt/opensource.html
14**
15** If you are unsure which license is appropriate for your use, please
16** review the following information:
17** http://www.trolltech.com/products/qt/licensing.html or contact the
18** sales department at sales@trolltech.com.
19**
20** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
21** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22**
23****************************************************************************/
24
25#ifndef DOWNLOADSETTINGSPAGE_H
26#define DOWNLOADSETTINGSPAGE_H
27
28#include "installwizard.h"
29#include "ui_downloadsettingspage.h"
30
31class DownloadSettingsPage : public InstallWizardPage
32{
33 Q_OBJECT
34
35public:
36 DownloadSettingsPage();
37
38 void initializePage();
39 bool isComplete();
40 bool validatePage();
41
42protected:
43 Ui::DownloadSettingsPage ui;
44
45protected slots:
46 void tempPathSelectClicked();
47};
48
49#endif
50