delay a few things on startup, such as setting the visibility mode, which ensures...
[personal-kdebase.git] / apps / dolphin / src / renamedialog.cpp
blob02dd2e9f6dbfe15fd4a330d9f4a1fdec11f4853c
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 ***************************************************************************/
20 #include "renamedialog.h"
22 #include <kfileitem.h>
23 #include <klineedit.h>
24 #include <klocale.h>
26 #include <QtGui/QLabel>
27 #include <QtGui/QBoxLayout>
29 RenameDialog::RenameDialog(QWidget *parent, const KFileItemList& items) :
30 KDialog(parent),
31 m_renameOneItem(false)
33 const QSize minSize = minimumSize();
34 setMinimumSize(QSize(320, minSize.height()));
36 const int itemCount = items.count();
37 Q_ASSERT(itemCount >= 1);
38 m_renameOneItem = (itemCount == 1);
40 setCaption(m_renameOneItem ?
41 i18nc("@title:window", "Rename Item") :
42 i18nc("@title:window", "Rename Items"));
43 setButtons(Ok | Cancel);
44 setDefaultButton(Ok);
46 setButtonGuiItem(Ok, KGuiItem(i18nc("@action:button", "Rename"), "dialog-ok-apply"));
48 QWidget* page = new QWidget(this);
49 setMainWidget(page);
51 QVBoxLayout* topLayout = new QVBoxLayout(page);
52 topLayout->setMargin(KDialog::marginHint());
54 QLabel* editLabel = 0;
55 if (m_renameOneItem) {
56 m_newName = items.first().name();
57 editLabel = new QLabel(i18nc("@label:textbox", "Rename the item <filename>%1</filename> to:", m_newName),
58 page);
59 } else {
60 m_newName = i18nc("@info:status", "New name #");
61 editLabel = new QLabel(i18ncp("@label:textbox",
62 "Rename the %1 selected item to:",
63 "Rename the %1 selected items to:", itemCount),
64 page);
67 m_lineEdit = new KLineEdit(page);
68 QString extension = KMimeType::extractKnownExtension(items[0].url().prettyUrl());
69 if (extension.length() > 0) {
70 extension.insert(0, '.');
71 // The first item seems to have a extension (e. g. '.jpg' or '.txt'). Now
72 // check whether all other URLs have the same extension. If this is the
73 // case, add this extension to the name suggestion.
74 for (int i = 1; i < itemCount; ++i) {
75 if (!items[i].url().prettyUrl().contains(extension)) {
76 // at least one item does not have the same extension
77 extension.truncate(0);
78 break;
83 int selectionLength = m_newName.length();
84 if (!m_renameOneItem) {
85 --selectionLength; // don't select the # character
88 const int extensionLength = extension.length();
89 if (extensionLength > 0) {
90 if (m_renameOneItem) {
91 selectionLength -= extensionLength;
92 } else {
93 m_newName.append(extension);
97 m_lineEdit->setText(m_newName);
98 m_lineEdit->setSelection(0, selectionLength);
99 m_lineEdit->setFocus();
101 topLayout->addWidget(editLabel);
102 topLayout->addWidget(m_lineEdit);
104 if (!m_renameOneItem) {
105 QLabel* infoLabel = new QLabel(i18nc("@info", "(# will be replaced by ascending numbers)"), page);
106 topLayout->addWidget(infoLabel);
110 RenameDialog::~RenameDialog()
114 void RenameDialog::slotButtonClicked(int button)
116 if (button == Ok) {
117 m_newName = m_lineEdit->text();
118 if (m_newName.isEmpty()) {
119 m_errorString = i18nc("@info:status",
120 "The new name is empty. A name with at least one character must be entered.");
121 } else if (!m_renameOneItem && (m_newName.count('#') == 0)) {
122 m_newName.truncate(0);
123 m_errorString = i18nc("@info:status", "The name must contain at least one # character.");
127 KDialog::slotButtonClicked(button);
130 #include "renamedialog.moc"