forked from qt-creator/qt-creator
Move PathChooserDelegate to Utils
Change-Id: I94b3c0b60477145f0f084719fc1cf5f3f4a98534 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -23,7 +23,7 @@
|
|||||||
**
|
**
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "annotateditemdelegate.h"
|
#include "delegates.h"
|
||||||
|
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
@@ -111,3 +111,67 @@ QSize AnnotatedItemDelegate::sizeHint(const QStyleOptionViewItem &option,
|
|||||||
|
|
||||||
return QApplication::style()->sizeFromContents(QStyle::CT_ItemViewItem, &opt, QSize(), nullptr);
|
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;
|
||||||
|
}
|
@@ -26,6 +26,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "utils_global.h"
|
#include "utils_global.h"
|
||||||
|
#include "pathchooser.h"
|
||||||
|
|
||||||
#include <QStyledItemDelegate>
|
#include <QStyledItemDelegate>
|
||||||
|
|
||||||
@@ -54,4 +55,30 @@ private:
|
|||||||
QString m_delimiter;
|
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
|
} // Utils
|
@@ -74,7 +74,7 @@ SOURCES += \
|
|||||||
$$PWD/crumblepath.cpp \
|
$$PWD/crumblepath.cpp \
|
||||||
$$PWD/historycompleter.cpp \
|
$$PWD/historycompleter.cpp \
|
||||||
$$PWD/buildablehelperlibrary.cpp \
|
$$PWD/buildablehelperlibrary.cpp \
|
||||||
$$PWD/annotateditemdelegate.cpp \
|
$$PWD/delegates.cpp \
|
||||||
$$PWD/fileinprojectfinder.cpp \
|
$$PWD/fileinprojectfinder.cpp \
|
||||||
$$PWD/statuslabel.cpp \
|
$$PWD/statuslabel.cpp \
|
||||||
$$PWD/outputformatter.cpp \
|
$$PWD/outputformatter.cpp \
|
||||||
@@ -184,7 +184,7 @@ HEADERS += \
|
|||||||
$$PWD/crumblepath.h \
|
$$PWD/crumblepath.h \
|
||||||
$$PWD/historycompleter.h \
|
$$PWD/historycompleter.h \
|
||||||
$$PWD/buildablehelperlibrary.h \
|
$$PWD/buildablehelperlibrary.h \
|
||||||
$$PWD/annotateditemdelegate.h \
|
$$PWD/delegates.h \
|
||||||
$$PWD/fileinprojectfinder.h \
|
$$PWD/fileinprojectfinder.h \
|
||||||
$$PWD/statuslabel.h \
|
$$PWD/statuslabel.h \
|
||||||
$$PWD/outputformatter.h \
|
$$PWD/outputformatter.h \
|
||||||
|
@@ -39,8 +39,6 @@ Project {
|
|||||||
files: [
|
files: [
|
||||||
"QtConcurrentTools",
|
"QtConcurrentTools",
|
||||||
"algorithm.h",
|
"algorithm.h",
|
||||||
"annotateditemdelegate.cpp",
|
|
||||||
"annotateditemdelegate.h",
|
|
||||||
"ansiescapecodehandler.cpp",
|
"ansiescapecodehandler.cpp",
|
||||||
"ansiescapecodehandler.h",
|
"ansiescapecodehandler.h",
|
||||||
"appmainwindow.cpp",
|
"appmainwindow.cpp",
|
||||||
@@ -71,6 +69,8 @@ Project {
|
|||||||
"crumblepath.cpp",
|
"crumblepath.cpp",
|
||||||
"crumblepath.h",
|
"crumblepath.h",
|
||||||
"declarationmacros.h",
|
"declarationmacros.h",
|
||||||
|
"delegates.cpp",
|
||||||
|
"delegates.h",
|
||||||
"detailsbutton.cpp",
|
"detailsbutton.cpp",
|
||||||
"detailsbutton.h",
|
"detailsbutton.h",
|
||||||
"detailswidget.cpp",
|
"detailswidget.cpp",
|
||||||
|
@@ -42,7 +42,7 @@
|
|||||||
|
|
||||||
#include <cplusplus/CppDocument.h>
|
#include <cplusplus/CppDocument.h>
|
||||||
|
|
||||||
#include <utils/annotateditemdelegate.h>
|
#include <utils/delegates.h>
|
||||||
#include <utils/dropsupport.h>
|
#include <utils/dropsupport.h>
|
||||||
#include <utils/fileutils.h>
|
#include <utils/fileutils.h>
|
||||||
#include <utils/navigationtreeview.h>
|
#include <utils/navigationtreeview.h>
|
||||||
|
@@ -34,7 +34,7 @@
|
|||||||
#include <coreplugin/editormanager/editormanager.h>
|
#include <coreplugin/editormanager/editormanager.h>
|
||||||
#include <cpptools/cppelementevaluator.h>
|
#include <cpptools/cppelementevaluator.h>
|
||||||
#include <utils/algorithm.h>
|
#include <utils/algorithm.h>
|
||||||
#include <utils/annotateditemdelegate.h>
|
#include <utils/delegates.h>
|
||||||
#include <utils/navigationtreeview.h>
|
#include <utils/navigationtreeview.h>
|
||||||
#include <utils/dropsupport.h>
|
#include <utils/dropsupport.h>
|
||||||
|
|
||||||
|
@@ -70,7 +70,7 @@
|
|||||||
#include <texteditor/texteditoractionhandler.h>
|
#include <texteditor/texteditoractionhandler.h>
|
||||||
#include <texteditor/textmark.h>
|
#include <texteditor/textmark.h>
|
||||||
|
|
||||||
#include <utils/annotateditemdelegate.h>
|
#include <utils/delegates.h>
|
||||||
#include <utils/changeset.h>
|
#include <utils/changeset.h>
|
||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
#include <utils/uncommentselection.h>
|
#include <utils/uncommentselection.h>
|
||||||
|
@@ -26,7 +26,7 @@
|
|||||||
#include "qmljsoutlinetreeview.h"
|
#include "qmljsoutlinetreeview.h"
|
||||||
#include "qmloutlinemodel.h"
|
#include "qmloutlinemodel.h"
|
||||||
|
|
||||||
#include <utils/annotateditemdelegate.h>
|
#include <utils/delegates.h>
|
||||||
#include <QMenu>
|
#include <QMenu>
|
||||||
|
|
||||||
namespace QmlJSEditor {
|
namespace QmlJSEditor {
|
||||||
|
@@ -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
|
|
@@ -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
|
|
@@ -14,7 +14,6 @@ SOURCES += qnxplugin.cpp \
|
|||||||
qnxqtversion.cpp \
|
qnxqtversion.cpp \
|
||||||
qnxdeployconfiguration.cpp \
|
qnxdeployconfiguration.cpp \
|
||||||
qnxdevice.cpp \
|
qnxdevice.cpp \
|
||||||
pathchooserdelegate.cpp \
|
|
||||||
qnxdevicetester.cpp \
|
qnxdevicetester.cpp \
|
||||||
qnxdeviceprocesssignaloperation.cpp \
|
qnxdeviceprocesssignaloperation.cpp \
|
||||||
qnxdeviceprocesslist.cpp \
|
qnxdeviceprocesslist.cpp \
|
||||||
@@ -41,7 +40,6 @@ HEADERS += qnxplugin.h\
|
|||||||
qnxqtversion.h \
|
qnxqtversion.h \
|
||||||
qnxdeployconfiguration.h \
|
qnxdeployconfiguration.h \
|
||||||
qnxdevice.h \
|
qnxdevice.h \
|
||||||
pathchooserdelegate.h \
|
|
||||||
qnxdevicetester.h \
|
qnxdevicetester.h \
|
||||||
qnxdeviceprocesssignaloperation.h \
|
qnxdeviceprocesssignaloperation.h \
|
||||||
qnxdeviceprocesslist.h \
|
qnxdeviceprocesslist.h \
|
||||||
|
@@ -18,8 +18,6 @@ QtcPlugin {
|
|||||||
"qnxdeployqtlibrariesdialog.cpp",
|
"qnxdeployqtlibrariesdialog.cpp",
|
||||||
"qnxdeployqtlibrariesdialog.h",
|
"qnxdeployqtlibrariesdialog.h",
|
||||||
"qnxdeployqtlibrariesdialog.ui",
|
"qnxdeployqtlibrariesdialog.ui",
|
||||||
"pathchooserdelegate.cpp",
|
|
||||||
"pathchooserdelegate.h",
|
|
||||||
"qnxtoolchain.cpp",
|
"qnxtoolchain.cpp",
|
||||||
"qnxtoolchain.h",
|
"qnxtoolchain.h",
|
||||||
"qnx.qrc",
|
"qnx.qrc",
|
||||||
|
Reference in New Issue
Block a user