Kraxy/EBN: missing Q_OBJECT
[kphotoalbum.git] / HTMLGenerator / HTMLDialog.h
blobc7b8a8068708756e87d328cdba3ed0c2bea9bd70
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 HTMLGENERATOR_HTMLDIALOG_H
20 #define HTMLGENERATOR_HTMLDIALOG_H
21 #include <KPageDialog>
22 class QComboBox;
23 class QTextEdit;
24 class KLineEdit;
25 class QSpinBox;
26 class QCheckBox;
27 #include "DB/Result.h"
29 namespace HTMLGenerator
31 class ImageSizeCheckBox;
32 class Generator;
33 class Setup;
35 class HTMLDialog :public KPageDialog {
36 Q_OBJECT
38 public:
39 HTMLDialog( QWidget* parent );
40 int exec(const DB::Result& list);
42 protected slots:
43 void slotOk();
44 void selectDir();
46 protected:
47 bool checkVars();
48 Setup setup() const;
49 QList<ImageSizeCheckBox*> activeResolutions() const;
50 QString activeSizes() const;
51 QString includeSelections() const;
52 void populateThemesCombo();
53 void createContentPage();
54 void createLayoutPage();
55 void createDestinationPage();
57 private:
58 KLineEdit* _title;
59 KLineEdit* _baseDir;
60 KLineEdit* _baseURL;
61 KLineEdit* _destURL;
62 KLineEdit* _outputDir;
63 KLineEdit* _copyright;
64 QCheckBox* _date;
65 QSpinBox* _thumbSize;
66 QTextEdit* _description;
67 QSpinBox* _numOfCols;
68 QCheckBox* _generateKimFile;
69 QCheckBox* _inlineMovies;
70 QMap<int,QString> _themes;
71 QComboBox *_themeBox;
72 QMap< QString, QCheckBox* > _whatToIncludeMap;
73 QList<ImageSizeCheckBox*> _cbs;
74 DB::Result _list;
79 #endif /* HTMLGENERATOR_HTMLDIALOG_H */