summaryrefslogtreecommitdiffstats
path: root/src/gui/platform/darwin/qmacmime_p.h
blob: f169063b93c5749f2750c71503b441e6bd8b0471 (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
55
56
57
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef QMACMIME_H
#define QMACMIME_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//


#include <QtGui/private/qtguiglobal_p.h>

#include <CoreFoundation/CoreFoundation.h>

QT_BEGIN_NAMESPACE

class Q_GUI_EXPORT QMacInternalPasteboardMime
{
public:
    enum QMacPasteboardMimeType
    {
        MIME_DND            = 0x01,
        MIME_CLIP           = 0x02,
        MIME_QT_CONVERTOR   = 0x04,
        MIME_QT3_CONVERTOR  = 0x08,
        MIME_ALL            = MIME_DND|MIME_CLIP,
        MIME_ALL_COMPATIBLE = MIME_ALL|MIME_QT_CONVERTOR
    };

    explicit QMacInternalPasteboardMime(QMacPasteboardMimeType);
    virtual ~QMacInternalPasteboardMime();

    char type() const { return m_type; }

    virtual bool canConvert(const QString &mime, QString flav) = 0;
    virtual QString mimeFor(QString flav) = 0;
    virtual QString flavorFor(const QString &mime) = 0;
    virtual QVariant convertToMime(const QString &mime, QList<QByteArray> data, QString flav) = 0;
    virtual QList<QByteArray> convertFromMime(const QString &mime, QVariant data, QString flav) = 0;
    virtual int count(QMimeData *mimeData);

private:
    const QMacPasteboardMimeType m_type;
};

QT_END_NAMESPACE

#endif