diff options
author | Mitch Curtis <[email protected]> | 2022-11-18 15:15:16 +0800 |
---|---|---|
committer | Mitch Curtis <[email protected]> | 2022-12-01 10:26:20 +0800 |
commit | 4bd87b903b355b53e3105ba1ae7c154c4e55cdaf (patch) | |
tree | cc2edb597f0d5871302eb86e9dda78217384a5aa /src/quicktemplates/qquicktreeviewdelegate_p.h | |
parent | 786e1748d4469c135a922a221024f3f9c421c0de (diff) |
Remove "2" from Qt Quick Controls directories
Qt Quick Controls 2 was named that way because it was a follow-up to
Qt Quick Controls 1.x. Now that Qt Quick Controls 1 is no longer
supported, we don't need to have "2" in the name. Work on this was
already started for the documentation in
1abdfe5d5a052f2298b7bf657513dfa7e0c66a56.
By doing this renaming a few weeks before feature freeze, it won't
affect the release but still results in as little time possible spent
manually fixing conflicts in cherry-picks from non-LTS releases as a
result of the renaming.
This patch does the following:
- Renames directories.
- Adapts CMakeLists.txt and other files to account for the new paths.
A follow-up patch will handle documentation.
It does not touch library names or other user-facing stuff, as that
will have to be done in Qt 7.
Task-number: QTBUG-95413
Change-Id: I170d8db19033ee71e495ff0c5c1a517a41ed7634
Reviewed-by: Mitch Curtis <[email protected]>
Diffstat (limited to 'src/quicktemplates/qquicktreeviewdelegate_p.h')
-rw-r--r-- | src/quicktemplates/qquicktreeviewdelegate_p.h | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/src/quicktemplates/qquicktreeviewdelegate_p.h b/src/quicktemplates/qquicktreeviewdelegate_p.h new file mode 100644 index 0000000000..de85f7c2cd --- /dev/null +++ b/src/quicktemplates/qquicktreeviewdelegate_p.h @@ -0,0 +1,105 @@ +// Copyright (C) 2021 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only + +#ifndef QQUICKTREEVIEWDELEGATE_P_H +#define QQUICKTREEVIEWDELEGATE_P_H + +// +// W A R N I N G +// ------------- +// +// This file is not part of the Qt API. It exists purely as an +// implementation detail. This header file may change from version to +// version without notice, or even be removed. +// +// We mean it. +// + +#include <QtQuick/qquickitem.h> +#include <QtQuick/private/qquicktreeview_p.h> +#include <QtQuickTemplates2/private/qtquicktemplates2global_p.h> +#include <QtQuickTemplates2/private/qquickitemdelegate_p.h> + +QT_BEGIN_NAMESPACE + +class QQuickTreeViewDelegatePrivate; + +class Q_QUICKTEMPLATES2_PRIVATE_EXPORT QQuickTreeViewDelegate : public QQuickItemDelegate +{ + Q_OBJECT + Q_PROPERTY(qreal indentation READ indentation WRITE setIndentation NOTIFY indentationChanged FINAL) + Q_PROPERTY(qreal leftMargin READ leftMargin WRITE setLeftMargin NOTIFY leftMarginChanged FINAL) + Q_PROPERTY(qreal rightMargin READ rightMargin WRITE setRightMargin NOTIFY rightMarginChanged FINAL) + + // Required properties + Q_PROPERTY(QQuickTreeView *treeView READ treeView WRITE setTreeView NOTIFY treeviewChanged REQUIRED FINAL) + Q_PROPERTY(bool isTreeNode READ isTreeNode WRITE setIsTreeNode NOTIFY isTreeNodeChanged REQUIRED FINAL) + Q_PROPERTY(bool hasChildren READ hasChildren WRITE setHasChildren NOTIFY hasChildrenChanged REQUIRED FINAL) + Q_PROPERTY(bool expanded READ expanded WRITE setExpanded NOTIFY expandedChanged REQUIRED FINAL) + Q_PROPERTY(int depth READ depth WRITE setDepth NOTIFY depthChanged REQUIRED FINAL) + Q_PROPERTY(bool current READ current WRITE setCurrent NOTIFY currentChanged REQUIRED FINAL REVISION(6, 4)) + Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectedChanged REQUIRED FINAL REVISION(6, 4)) + + QML_NAMED_ELEMENT(TreeViewDelegate) + QML_ADDED_IN_VERSION(6, 3) + +public: + explicit QQuickTreeViewDelegate(QQuickItem *parent = nullptr); + + qreal indentation() const; + void setIndentation(qreal indentation); + + bool isTreeNode() const; + void setIsTreeNode(bool isTreeNode); + + bool hasChildren() const; + void setHasChildren(bool hasChildren); + + bool expanded() const; + void setExpanded(bool expanded); + + bool current() const; + void setCurrent(bool current); + + bool selected() const; + void setSelected(bool selected); + + int depth() const; + void setDepth(int depth); + + QQuickTreeView *treeView() const; + void setTreeView(QQuickTreeView *treeView); + + qreal leftMargin() const; + void setLeftMargin(qreal leftMargin); + + qreal rightMargin() const; + void setRightMargin(qreal rightMargin); + +Q_SIGNALS: + void indicatorChanged(); + void indentationChanged(); + void isTreeNodeChanged(); + void hasChildrenChanged(); + void expandedChanged(); + void depthChanged(); + void treeviewChanged(); + void leftMarginChanged(); + void rightMarginChanged(); + Q_REVISION(6, 4) void currentChanged(); + Q_REVISION(6, 4) void selectedChanged(); + +protected: + QFont defaultFont() const override; + void geometryChange(const QRectF &newGeometry, const QRectF &oldGeometry) override; + void componentComplete() override; + void mousePressEvent(QMouseEvent *event) override; + +private: + Q_DISABLE_COPY(QQuickTreeViewDelegate) + Q_DECLARE_PRIVATE(QQuickTreeViewDelegate) +}; + +QT_END_NAMESPACE + +#endif // QQUICKTREEVIEWDELEGATE_P_H |