summaryrefslogtreecommitdiffstats
path: root/tests/manual/examples/widgets/draganddrop/fridgemagnets/draglabel.h
blob: e734a9ff78a4ca0e102b815768127f327656366b (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef DRAGLABEL_H
#define DRAGLABEL_H

#include <QLabel>

QT_BEGIN_NAMESPACE
class QDragEnterEvent;
class QDragMoveEvent;
class QFrame;
QT_END_NAMESPACE

//! [0]
class DragLabel : public QLabel
{
public:
    DragLabel(const QString &text, QWidget *parent);
    QString labelText() const;

private:
    QString m_labelText;
};
//! [0]

#endif // DRAGLABEL_H