Files
qt-creator/src/plugins/coreplugin/dialogs/saveitemsdialog.cpp

168 lines
5.9 KiB
C++
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01:00
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
2010-12-17 16:01:08 +01:00
**
****************************************************************************/
2008-12-02 14:09:21 +01:00
2008-12-02 12:01:29 +01:00
#include "saveitemsdialog.h"
#include <coreplugin/fileiconprovider.h>
#include <coreplugin/idocument.h>
#include <utils/fileutils.h>
#include <utils/hostosinfo.h>
2008-12-02 12:01:29 +01:00
#include <QDir>
#include <QFileInfo>
#include <QPushButton>
#include <QDebug>
2008-12-02 12:01:29 +01:00
Q_DECLARE_METATYPE(Core::IDocument*)
2009-03-24 12:27:58 +01:00
2008-12-02 12:01:29 +01:00
using namespace Core;
using namespace Core::Internal;
2009-03-24 12:27:58 +01:00
SaveItemsDialog::SaveItemsDialog(QWidget *parent,
QList<IDocument *> items)
2009-03-24 12:27:58 +01:00
: QDialog(parent)
2008-12-02 12:01:29 +01:00
{
m_ui.setupUi(this);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
// QDialogButtonBox's behavior for "destructive" is wrong, the "do not save" should be left-aligned
const QDialogButtonBox::ButtonRole discardButtonRole = Utils::HostOsInfo::isMacHost()
? QDialogButtonBox::ResetRole : QDialogButtonBox::DestructiveRole;
QPushButton *discardButton = m_ui.buttonBox->addButton(tr("Do not Save"), discardButtonRole);
2009-03-24 12:27:58 +01:00
m_ui.buttonBox->button(QDialogButtonBox::Save)->setDefault(true);
m_ui.treeWidget->setFocus();
2008-12-02 12:01:29 +01:00
m_ui.saveBeforeBuildCheckBox->setVisible(false);
foreach (IDocument *document, items) {
2009-03-24 12:27:58 +01:00
QString visibleName;
QString directory;
QString fileName = document->filePath().toString();
2009-03-24 12:27:58 +01:00
if (fileName.isEmpty()) {
visibleName = document->fallbackSaveAsFileName();
2009-03-24 12:27:58 +01:00
} else {
QFileInfo info = QFileInfo(fileName);
directory = info.absolutePath();
visibleName = info.fileName();
}
QTreeWidgetItem *item = new QTreeWidgetItem(m_ui.treeWidget, QStringList()
<< visibleName << QDir::toNativeSeparators(directory));
if (!fileName.isEmpty())
item->setIcon(0, FileIconProvider::icon(fileName));
item->setData(0, Qt::UserRole, qVariantFromValue(document));
2008-12-02 12:01:29 +01:00
}
m_ui.treeWidget->resizeColumnToContents(0);
2009-03-24 12:27:58 +01:00
m_ui.treeWidget->selectAll();
if (Utils::HostOsInfo::isMacHost())
m_ui.treeWidget->setAlternatingRowColors(true);
adjustButtonWidths();
2009-03-24 12:27:58 +01:00
updateSaveButton();
2008-12-02 12:01:29 +01:00
2009-03-24 12:27:58 +01:00
connect(m_ui.buttonBox->button(QDialogButtonBox::Save), SIGNAL(clicked()),
2008-12-02 12:01:29 +01:00
this, SLOT(collectItemsToSave()));
connect(discardButton, SIGNAL(clicked()), this, SLOT(discardAll()));
2009-03-24 12:27:58 +01:00
connect(m_ui.treeWidget, SIGNAL(itemSelectionChanged()), this, SLOT(updateSaveButton()));
2008-12-02 12:01:29 +01:00
}
void SaveItemsDialog::setMessage(const QString &msg)
{
m_ui.msgLabel->setText(msg);
}
2009-03-24 12:27:58 +01:00
void SaveItemsDialog::updateSaveButton()
{
int count = m_ui.treeWidget->selectedItems().count();
QPushButton *button = m_ui.buttonBox->button(QDialogButtonBox::Save);
if (count == m_ui.treeWidget->topLevelItemCount()) {
button->setEnabled(true);
button->setText(tr("Save All"));
} else if (count == 0) {
button->setEnabled(false);
button->setText(tr("Save"));
} else {
button->setEnabled(true);
button->setText(tr("Save Selected"));
}
}
void SaveItemsDialog::adjustButtonWidths()
{
// give save button a size that all texts fit in, so it doesn't get resized
// Mac: make cancel + save button same size (work around dialog button box issue)
QStringList possibleTexts;
possibleTexts << tr("Save") << tr("Save All");
if (m_ui.treeWidget->topLevelItemCount() > 1)
possibleTexts << tr("Save Selected");
int maxTextWidth = 0;
QPushButton *saveButton = m_ui.buttonBox->button(QDialogButtonBox::Save);
foreach (const QString &text, possibleTexts) {
saveButton->setText(text);
int hint = saveButton->sizeHint().width();
if (hint > maxTextWidth)
maxTextWidth = hint;
}
if (Utils::HostOsInfo::isMacHost()) {
QPushButton *cancelButton = m_ui.buttonBox->button(QDialogButtonBox::Cancel);
int cancelButtonWidth = cancelButton->sizeHint().width();
if (cancelButtonWidth > maxTextWidth)
maxTextWidth = cancelButtonWidth;
cancelButton->setMinimumWidth(maxTextWidth);
}
saveButton->setMinimumWidth(maxTextWidth);
}
2008-12-02 12:01:29 +01:00
void SaveItemsDialog::collectItemsToSave()
{
m_itemsToSave.clear();
2009-03-24 12:27:58 +01:00
foreach (QTreeWidgetItem *item, m_ui.treeWidget->selectedItems()) {
m_itemsToSave.append(item->data(0, Qt::UserRole).value<IDocument*>());
2008-12-02 12:01:29 +01:00
}
accept();
}
void SaveItemsDialog::discardAll()
{
2009-03-24 12:27:58 +01:00
m_ui.treeWidget->clearSelection();
2008-12-02 12:01:29 +01:00
collectItemsToSave();
}
QList<IDocument*> SaveItemsDialog::itemsToSave() const
2008-12-02 12:01:29 +01:00
{
return m_itemsToSave;
}
void SaveItemsDialog::setAlwaysSaveMessage(const QString &msg)
{
m_ui.saveBeforeBuildCheckBox->setText(msg);
m_ui.saveBeforeBuildCheckBox->setVisible(true);
}
bool SaveItemsDialog::alwaysSaveChecked()
{
return m_ui.saveBeforeBuildCheckBox->isChecked();
}