]> cloud.milkyroute.net Git - dolphin.git/blob - src/views/renamedialog.cpp
Sourcecode hierarchy cleanup: Move class PixmapViewer from "src" to "src/panels/infor...
[dolphin.git] / src / views / renamedialog.cpp
1 /***************************************************************************
2 * Copyright (C) 2006 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 #include "renamedialog.h"
21
22 #include <kfileitem.h>
23 #include <klineedit.h>
24 #include <klocale.h>
25
26 #include <QtGui/QLabel>
27 #include <QtGui/QBoxLayout>
28
29 RenameDialog::RenameDialog(QWidget *parent, const KFileItemList& items) :
30 KDialog(parent),
31 m_renameOneItem(false)
32 {
33 const QSize minSize = minimumSize();
34 setMinimumSize(QSize(320, minSize.height()));
35
36 const int itemCount = items.count();
37 Q_ASSERT(itemCount >= 1);
38 m_renameOneItem = (itemCount == 1);
39
40 setCaption(m_renameOneItem ?
41 i18nc("@title:window", "Rename Item") :
42 i18nc("@title:window", "Rename Items"));
43 setButtons(Ok | Cancel);
44 setDefaultButton(Ok);
45
46 setButtonGuiItem(Ok, KGuiItem(i18nc("@action:button", "&Rename"), "dialog-ok-apply"));
47
48 QWidget* page = new QWidget(this);
49 setMainWidget(page);
50
51 QVBoxLayout* topLayout = new QVBoxLayout(page);
52
53 QLabel* editLabel = 0;
54 if (m_renameOneItem) {
55 m_newName = items.first().name();
56 editLabel = new QLabel(i18nc("@label:textbox", "Rename the item <filename>%1</filename> to:", m_newName),
57 page);
58 } else {
59 m_newName = i18nc("@info:status", "New name #");
60 editLabel = new QLabel(i18ncp("@label:textbox",
61 "Rename the %1 selected item to:",
62 "Rename the %1 selected items to:", itemCount),
63 page);
64 }
65
66 m_lineEdit = new KLineEdit(page);
67
68 QString fileName = items[0].url().prettyUrl();
69 QString extension = KMimeType::extractKnownExtension(fileName.toLower());
70 if (!extension.isEmpty()) {
71 extension.insert(0, '.');
72 // The first item seems to have a extension (e. g. '.jpg' or '.txt'). Now
73 // check whether all other URLs have the same extension. If this is the
74 // case, add this extension to the name suggestion.
75 for (int i = 1; i < itemCount; ++i) {
76 fileName = items[i].url().prettyUrl().toLower();
77 if (!fileName.endsWith(extension)) {
78 // at least one item does not have the same extension
79 extension.truncate(0);
80 break;
81 }
82 }
83 }
84
85 int selectionLength = m_newName.length();
86 if (!m_renameOneItem) {
87 --selectionLength; // don't select the # character
88 }
89
90 const int extensionLength = extension.length();
91 if (extensionLength > 0) {
92 if (m_renameOneItem) {
93 selectionLength -= extensionLength;
94 } else {
95 m_newName.append(extension);
96 }
97 }
98
99 m_lineEdit->setText(m_newName);
100 m_lineEdit->setSelection(0, selectionLength);
101 m_lineEdit->setFocus();
102
103 topLayout->addWidget(editLabel);
104 topLayout->addWidget(m_lineEdit);
105
106 if (!m_renameOneItem) {
107 QLabel* infoLabel = new QLabel(i18nc("@info", "(# will be replaced by ascending numbers)"), page);
108 topLayout->addWidget(infoLabel);
109 }
110 }
111
112 RenameDialog::~RenameDialog()
113 {
114 }
115
116 void RenameDialog::slotButtonClicked(int button)
117 {
118 if (button == Ok) {
119 m_newName = m_lineEdit->text();
120 if (m_newName.isEmpty()) {
121 m_errorString = i18nc("@info:status",
122 "The new name is empty. A name with at least one character must be entered.");
123 } else if (!m_renameOneItem && (m_newName.count('#') == 0)) {
124 m_newName.truncate(0);
125 m_errorString = i18nc("@info:status", "The name must contain at least one # character.");
126 }
127 }
128
129 KDialog::slotButtonClicked(button);
130 }
131
132 #include "renamedialog.moc"