summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/haiku/qhaikuservices.cpp
blob: d7a101942cfae6f698a1d9809aac6cde798e339d (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
// Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Tobias Koenig <tobias.koenig@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "qhaikuservices.h"

#include <QFile>
#include <QMimeDatabase>
#include <QString>
#include <QUrl>

#include <Roster.h>

QT_BEGIN_NAMESPACE

bool QHaikuServices::openUrl(const QUrl &url)
{
    const QMimeDatabase mimeDatabase;

    const QMimeType mimeType = mimeDatabase.mimeTypeForUrl(url);
    if (!mimeType.isValid())
        return false;

    const QByteArray mimeTypeName = mimeType.name().toLatin1();
    QByteArray urlData = url.toString().toLocal8Bit();
    char *rawUrlData = urlData.data();

    if (be_roster->Launch(mimeTypeName.constData(), 1, &rawUrlData) != B_OK)
        return false;

    return true;
}

bool QHaikuServices::openDocument(const QUrl &url)
{
    const QByteArray localPath = QFile::encodeName(url.toLocalFile());

    entry_ref ref;
    if (get_ref_for_path(localPath.constData(), &ref) != B_OK)
        return false;

    if (be_roster->Launch(&ref) != B_OK)
        return false;

    return true;
}

QByteArray QHaikuServices::desktopEnvironment() const
{
    return QByteArray("Haiku");
}

QT_END_NAMESPACE