Move PathChooserDelegate to Utils

Change-Id: I94b3c0b60477145f0f084719fc1cf5f3f4a98534
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2018-07-13 11:13:32 +02:00
parent f4f2ecc7c5
commit da739959ea
12 changed files with 100 additions and 181 deletions

View File

@@ -23,7 +23,7 @@
**
****************************************************************************/
#include "annotateditemdelegate.h"
#include "delegates.h"
#include <QPainter>
#include <QApplication>
@@ -111,3 +111,67 @@ QSize AnnotatedItemDelegate::sizeHint(const QStyleOptionViewItem &option,
return QApplication::style()->sizeFromContents(QStyle::CT_ItemViewItem, &opt, QSize(), nullptr);
}
PathChooserDelegate::PathChooserDelegate(QObject *parent)
: QStyledItemDelegate(parent)
, m_kind(Utils::PathChooser::ExistingDirectory)
{
}
void PathChooserDelegate::setExpectedKind(Utils::PathChooser::Kind kind)
{
m_kind = kind;
}
void PathChooserDelegate::setPromptDialogFilter(const QString &filter)
{
m_filter = filter;
}
QWidget *PathChooserDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
Q_UNUSED(option);
Q_UNUSED(index);
Utils::PathChooser *editor = new Utils::PathChooser(parent);
editor->setHistoryCompleter(m_historyKey);
editor->setAutoFillBackground(true); // To hide the text beneath the editor widget
editor->lineEdit()->setMinimumWidth(0);
connect(editor, &Utils::PathChooser::browsingFinished, this, [this, editor]() {
emit const_cast<PathChooserDelegate*>(this)->commitData(editor);
});
return editor;
}
void PathChooserDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const
{
if (auto *pathChooser = qobject_cast<Utils::PathChooser *>(editor)) {
pathChooser->setExpectedKind(m_kind);
pathChooser->setPromptDialogFilter(m_filter);
pathChooser->setPath(index.model()->data(index, Qt::EditRole).toString());
}
}
void PathChooserDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const
{
Utils::PathChooser *pathChooser = qobject_cast<Utils::PathChooser *>(editor);
if (!pathChooser)
return;
model->setData(index, pathChooser->path(), Qt::EditRole);
}
void PathChooserDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
Q_UNUSED(index);
editor->setGeometry(option.rect);
}
void PathChooserDelegate::setHistoryCompleter(const QString &key)
{
m_historyKey = key;
}

View File

@@ -26,6 +26,7 @@
#pragma once
#include "utils_global.h"
#include "pathchooser.h"
#include <QStyledItemDelegate>
@@ -54,4 +55,30 @@ private:
QString m_delimiter;
};
class QTCREATOR_UTILS_EXPORT PathChooserDelegate : public QStyledItemDelegate
{
public:
explicit PathChooserDelegate(QObject *parent = nullptr);
void setExpectedKind(PathChooser::Kind kind);
void setPromptDialogFilter(const QString &filter);
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
void setEditorData(QWidget *editor, const QModelIndex &index) const override;
void setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const override;
void updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option, const QModelIndex &index) const override;
void setHistoryCompleter(const QString &key);
private:
PathChooser::Kind m_kind;
QString m_filter;
QString m_historyKey;
};
} // Utils

View File

@@ -74,7 +74,7 @@ SOURCES += \
$$PWD/crumblepath.cpp \
$$PWD/historycompleter.cpp \
$$PWD/buildablehelperlibrary.cpp \
$$PWD/annotateditemdelegate.cpp \
$$PWD/delegates.cpp \
$$PWD/fileinprojectfinder.cpp \
$$PWD/statuslabel.cpp \
$$PWD/outputformatter.cpp \
@@ -184,7 +184,7 @@ HEADERS += \
$$PWD/crumblepath.h \
$$PWD/historycompleter.h \
$$PWD/buildablehelperlibrary.h \
$$PWD/annotateditemdelegate.h \
$$PWD/delegates.h \
$$PWD/fileinprojectfinder.h \
$$PWD/statuslabel.h \
$$PWD/outputformatter.h \

View File

@@ -39,8 +39,6 @@ Project {
files: [
"QtConcurrentTools",
"algorithm.h",
"annotateditemdelegate.cpp",
"annotateditemdelegate.h",
"ansiescapecodehandler.cpp",
"ansiescapecodehandler.h",
"appmainwindow.cpp",
@@ -71,6 +69,8 @@ Project {
"crumblepath.cpp",
"crumblepath.h",
"declarationmacros.h",
"delegates.cpp",
"delegates.h",
"detailsbutton.cpp",
"detailsbutton.h",
"detailswidget.cpp",

View File

@@ -42,7 +42,7 @@
#include <cplusplus/CppDocument.h>
#include <utils/annotateditemdelegate.h>
#include <utils/delegates.h>
#include <utils/dropsupport.h>
#include <utils/fileutils.h>
#include <utils/navigationtreeview.h>

View File

@@ -34,7 +34,7 @@
#include <coreplugin/editormanager/editormanager.h>
#include <cpptools/cppelementevaluator.h>
#include <utils/algorithm.h>
#include <utils/annotateditemdelegate.h>
#include <utils/delegates.h>
#include <utils/navigationtreeview.h>
#include <utils/dropsupport.h>

View File

@@ -70,7 +70,7 @@
#include <texteditor/texteditoractionhandler.h>
#include <texteditor/textmark.h>
#include <utils/annotateditemdelegate.h>
#include <utils/delegates.h>
#include <utils/changeset.h>
#include <utils/qtcassert.h>
#include <utils/uncommentselection.h>

View File

@@ -26,7 +26,7 @@
#include "qmljsoutlinetreeview.h"
#include "qmloutlinemodel.h"
#include <utils/annotateditemdelegate.h>
#include <utils/delegates.h>
#include <QMenu>
namespace QmlJSEditor {

View File

@@ -1,103 +0,0 @@
/****************************************************************************
**
** Copyright (C) 2016 BlackBerry Limited. All rights reserved.
** Contact: KDAB (info@kdab.com)
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#include "pathchooserdelegate.h"
#include <utils/pathchooser.h>
#include <utils/fancylineedit.h>
namespace Qnx {
namespace Internal {
PathChooserDelegate::PathChooserDelegate(QObject *parent)
: QStyledItemDelegate(parent)
, m_kind(Utils::PathChooser::ExistingDirectory)
{
}
void PathChooserDelegate::setExpectedKind(Utils::PathChooser::Kind kind)
{
m_kind = kind;
}
void PathChooserDelegate::setPromptDialogFilter(const QString &filter)
{
m_filter = filter;
}
QWidget *PathChooserDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
Q_UNUSED(option);
Q_UNUSED(index);
Utils::PathChooser *editor = new Utils::PathChooser(parent);
editor->setHistoryCompleter(m_historyKey);
editor->setAutoFillBackground(true); // To hide the text beneath the editor widget
editor->lineEdit()->setMinimumWidth(0);
connect(editor, &Utils::PathChooser::browsingFinished, this, [this, editor]() {
emit const_cast<PathChooserDelegate*>(this)->commitData(editor);
});
return editor;
}
void PathChooserDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const
{
QString value = index.model()->data(index, Qt::EditRole).toString();
Utils::PathChooser *pathChooser = qobject_cast<Utils::PathChooser *>(editor);
if (!pathChooser)
return;
pathChooser->setExpectedKind(m_kind);
pathChooser->setPromptDialogFilter(m_filter);
pathChooser->setPath(value);
}
void PathChooserDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const
{
Utils::PathChooser *pathChooser = qobject_cast<Utils::PathChooser *>(editor);
if (!pathChooser)
return;
model->setData(index, pathChooser->path(), Qt::EditRole);
}
void PathChooserDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
Q_UNUSED(index);
editor->setGeometry(option.rect);
}
void PathChooserDelegate::setHistoryCompleter(const QString &key)
{
m_historyKey = key;
}
} // namespace Internal
} // namespace Qnx

View File

@@ -1,65 +0,0 @@
/****************************************************************************
**
** Copyright (C) 2016 BlackBerry Limited. All rights reserved.
** Contact: KDAB (info@kdab.com)
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QStyledItemDelegate>
#include <utils/pathchooser.h>
namespace Qnx {
namespace Internal {
// TODO: This whole class should probably go into utils
class PathChooserDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
explicit PathChooserDelegate(QObject *parent = 0);
void setExpectedKind(Utils::PathChooser::Kind kind);
void setPromptDialogFilter(const QString &filter);
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const;
void setEditorData(QWidget *editor, const QModelIndex &index) const;
void setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const;
void updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option, const QModelIndex &index) const;
void setHistoryCompleter(const QString &key);
private:
Utils::PathChooser::Kind m_kind;
QString m_filter;
QString m_historyKey;
};
} // namespace Internal
} // namespace Qnx

View File

@@ -14,7 +14,6 @@ SOURCES += qnxplugin.cpp \
qnxqtversion.cpp \
qnxdeployconfiguration.cpp \
qnxdevice.cpp \
pathchooserdelegate.cpp \
qnxdevicetester.cpp \
qnxdeviceprocesssignaloperation.cpp \
qnxdeviceprocesslist.cpp \
@@ -41,7 +40,6 @@ HEADERS += qnxplugin.h\
qnxqtversion.h \
qnxdeployconfiguration.h \
qnxdevice.h \
pathchooserdelegate.h \
qnxdevicetester.h \
qnxdeviceprocesssignaloperation.h \
qnxdeviceprocesslist.h \

View File

@@ -18,8 +18,6 @@ QtcPlugin {
"qnxdeployqtlibrariesdialog.cpp",
"qnxdeployqtlibrariesdialog.h",
"qnxdeployqtlibrariesdialog.ui",
"pathchooserdelegate.cpp",
"pathchooserdelegate.h",
"qnxtoolchain.cpp",
"qnxtoolchain.h",
"qnx.qrc",