]> cloud.milkyroute.net Git - dolphin.git/blob - src/views/renamedialog.h
Build TerminalPanel also on Windows
[dolphin.git] / src / views / renamedialog.h
1 /***************************************************************************
2 * Copyright (C) 2006-2010 by Peter Penz (peter.penz@gmx.at) *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
18 ***************************************************************************/
19
20 #ifndef RENAMEDIALOG_H
21 #define RENAMEDIALOG_H
22
23 #include "dolphin_export.h"
24
25 #include <QDialog>
26 #include <KFileItem>
27 #include <QString>
28
29 class QLineEdit;
30 class QSpinBox;
31 class QPushButton;
32 class KJob;
33 /**
34 * @brief Dialog for renaming a variable number of files.
35 */
36 class DOLPHIN_EXPORT RenameDialog : public QDialog
37 {
38 Q_OBJECT
39
40 public:
41 explicit RenameDialog(QWidget* parent, const KFileItemList& items);
42 ~RenameDialog() override;
43
44 signals:
45 void renamingFinished(const QList<QUrl>& urls);
46
47 private slots:
48 void slotAccepted();
49 void slotTextChanged(const QString& newName);
50 void slotFileRenamed(const QUrl& oldUrl, const QUrl& newUrl);
51 void slotResult(KJob* job);
52
53 protected:
54 void showEvent(QShowEvent* event) override;
55
56 private:
57 bool m_renameOneItem;
58 QList<QUrl> m_renamedItems;
59 QString m_newName;
60 QLineEdit* m_lineEdit;
61 KFileItemList m_items;
62 bool m_allExtensionsDifferent;
63 QSpinBox* m_spinBox;
64 QPushButton* m_okButton;
65 };
66
67 #endif