summaryrefslogtreecommitdiffstats
path: root/src/designer/src/components/buddyeditor/buddyeditor.h
blob: d844b997cdd0a2027d91eb7a49ff751bfbc14284 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef BUDDYEDITOR_H
#define BUDDYEDITOR_H

#include "buddyeditor_global.h"

#include <connectionedit_p.h>
#include <QtCore/qpointer.h>
#include <QtCore/qset.h>

QT_BEGIN_NAMESPACE

class QDesignerFormWindowInterface;

class QLabel;

namespace qdesigner_internal {

class QT_BUDDYEDITOR_EXPORT BuddyEditor : public ConnectionEdit
{
    Q_OBJECT

public:
    BuddyEditor(QDesignerFormWindowInterface *form, QWidget *parent);

    QDesignerFormWindowInterface *formWindow() const;
    void setBackground(QWidget *background) override;
    void deleteSelected() override;

public slots:
    void updateBackground() override;
    void widgetRemoved(QWidget *w) override;
    void autoBuddy();

protected:
    QWidget *widgetAt(const QPoint &pos) const override;
    Connection *createConnection(QWidget *source, QWidget *destination) override;
    void endConnection(QWidget *target, const QPoint &pos) override;
    void createContextMenu(QMenu &menu) override;

private:
    QWidget *findBuddy(QLabel *l, const QWidgetList &existingBuddies) const;

    QPointer<QDesignerFormWindowInterface> m_formWindow;
    bool m_updating;
};

}  // namespace qdesigner_internal

QT_END_NAMESPACE

#endif