aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/formeditor/layeritem.h
blob: 6fa8e077c80e4c2183cfc3542875d70c6c4cb980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once

#include <QGraphicsObject>
#include <QTransform>

namespace QmlDesigner {

class FormEditorScene;

class LayerItem : public QGraphicsObject
{
public:
    enum
    {
        Type = 0xEAAA
    };
    LayerItem(FormEditorScene* scene);
    ~LayerItem() override;
    void paint ( QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget = nullptr ) override;
    QRectF boundingRect() const override;
    int type() const override;

    QList<QGraphicsItem*> findAllChildItems() const;

    QTransform viewportTransform() const;

protected:
    QList<QGraphicsItem*> findAllChildItems(const QGraphicsItem *item) const;
};

inline int LayerItem::type() const
{
    return Type;
}

} // namespace QmlDesigner