Fix regressions
[kphotoalbum.git] / MainWindow / DeleteDialog.h
blob5de689582df7a51f0a7ff51d6c54ca345bce9a03
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 DELETEDIALOG_H
20 #define DELETEDIALOG_H
21 #include <KDialog>
22 #include <QLabel>
23 #include <kjob.h>
24 #include <qradiobutton.h>
25 #include "DB/Result.h"
27 class QLabel;
28 class QCheckBox;
29 class KJob;
30 namespace KIO {class Job; }
31 namespace MainWindow
34 class DeleteDialog :public KDialog {
35 Q_OBJECT
37 public:
38 DeleteDialog( QWidget* parent );
39 int exec(const DB::Result& list);
41 protected slots:
42 void deleteImages();
43 void slotKIOJobCompleted( KJob* );
45 private:
46 DB::Result _list;
47 QLabel* _label;
48 QRadioButton* _deleteFile;
49 QRadioButton* _useTrash;
50 QRadioButton* _deleteFromDb;
57 #endif /* DELETEDIALOG_H */