summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/cocoa/qcocoaservices.mm
blob: 4566cbb8f721c7ed9480b4cdd216173128d316aa (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
// 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

#include "qcocoaservices.h"

#include <AppKit/NSWorkspace.h>
#include <AppKit/NSColorSampler.h>
#include <Foundation/NSURL.h>

#include <QtCore/QUrl>
#include <QtGui/private/qcoregraphics_p.h>

QT_BEGIN_NAMESPACE

bool QCocoaServices::openUrl(const QUrl &url)
{
    return [[NSWorkspace sharedWorkspace] openURL:url.toNSURL()];
}

bool QCocoaServices::openDocument(const QUrl &url)
{
    return openUrl(url);
}

class QCocoaColorPicker : public QPlatformServiceColorPicker
{
public:
    QCocoaColorPicker() : m_colorSampler([NSColorSampler new]) {}
    ~QCocoaColorPicker() { [m_colorSampler release]; }

    void pickColor() override
    {
        [m_colorSampler showSamplerWithSelectionHandler:^(NSColor *selectedColor) {
            emit colorPicked(qt_mac_toQColor(selectedColor));
        }];
    }
private:
    NSColorSampler *m_colorSampler = nullptr;
};


QPlatformServiceColorPicker *QCocoaServices::colorPicker(QWindow *parent)
{
    Q_UNUSED(parent);
    return new QCocoaColorPicker;
}

bool QCocoaServices::hasCapability(Capability capability) const
{
    switch (capability) {
    case ColorPicking: return true;
    default: return false;
    }
}

QT_END_NAMESPACE