1 /***************************************************************************
2 * Copyright (C) 2006-2010 by Peter Penz (peter.penz@gmx.at) *
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. *
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. *
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 ***************************************************************************/
20 #ifndef RENAMEDIALOG_H
21 #define RENAMEDIALOG_H
23 #include "dolphin_export.h"
34 * @brief Dialog for renaming a variable number of files.
36 class DOLPHIN_EXPORT RenameDialog
: public QDialog
41 explicit RenameDialog(QWidget
* parent
, const KFileItemList
& items
);
42 virtual ~RenameDialog();
46 void slotTextChanged(const QString
& newName
);
49 void showEvent(QShowEvent
* event
) override
;
53 void renameItem(const KFileItem
&item
, const QString
& newName
);
56 * @return Returns the string \p name, where the characters represented by
57 * \p indexPlaceHolder get replaced by the index \p index.
58 * E. g. Calling indexedName("Test #.jpg", 12, '#') returns "Test 12.jpg".
59 * A connected sequence of placeholders results in leading zeros:
60 * indexedName("Test ####.jpg", 12, '#') returns "Test 0012.jpg".
62 static QString
indexedName(const QString
& name
, int index
, const QChar
& indexPlaceHolder
);
67 QLineEdit
* m_lineEdit
;
68 KFileItemList m_items
;
69 bool m_allExtensionsDifferent
;
71 QPushButton
* m_okButton
;