summaryrefslogtreecommitdiffstats
path: root/examples/charts/chartsgallery/calloutwidget.h
blob: 0040f4eb667f422b0d5312359dcc58f1a56111a1 (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
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef CALLOUTWIDGET_H
#define CALLOUTWIDGET_H

#include "contentwidget.h"

class CalloutView;

class CalloutWidget : public ContentWidget
{
    Q_OBJECT
public:
    CalloutWidget(QWidget *parent = nullptr);

protected:
    void resizeEvent(QResizeEvent *) override;

private:
    CalloutView *m_view;
};

#endif