summaryrefslogtreecommitdiffstats
path: root/src/activeqt/control/qaxbindable.h
blob: c9c38f65642937613a460a908f82c9db7f289ac4 (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
// Copyright (C) 2015 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef QAXBINDABLE_H
#define QAXBINDABLE_H

#include <QtWidgets/qwidget.h>

struct IUnknown;

QT_BEGIN_NAMESPACE

class QAxAggregated;
class QIODevice;
struct IAxServerBase;

class QAxBindable
{
    Q_DISABLE_COPY_MOVE(QAxBindable)
    friend class QAxServerBase;
public:
    QAxBindable();
    virtual ~QAxBindable();

    virtual QAxAggregated *createAggregate();
    void reportError(int code, const QString &src, const QString &desc, const QString &help = QString());

    virtual bool readData(QIODevice *source, const QString &format);
    virtual bool writeData(QIODevice *sink);

protected:
    bool requestPropertyChange(const char *property);
    void propertyChanged(const char *property);

    IUnknown *clientSite() const;

private:
    IAxServerBase *activex = nullptr;
};

QT_END_NAMESPACE

#endif // QAXBINDABLE_H