You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
907 B
34 lines
907 B
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2018 Marco Martin <mart@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <QDBusArgument> |
|
|
|
namespace KWin |
|
{ |
|
|
|
struct DBusDesktopDataStruct |
|
{ |
|
uint position; |
|
QString id; |
|
QString name; |
|
}; |
|
typedef QList<DBusDesktopDataStruct> DBusDesktopDataVector; |
|
} |
|
|
|
const QDBusArgument &operator<<(QDBusArgument &argument, const KWin::DBusDesktopDataStruct &desk); |
|
const QDBusArgument &operator>>(const QDBusArgument &argument, KWin::DBusDesktopDataStruct &desk); |
|
|
|
Q_DECLARE_METATYPE(KWin::DBusDesktopDataStruct) |
|
|
|
const QDBusArgument &operator<<(QDBusArgument &argument, const KWin::DBusDesktopDataVector &deskVector); |
|
const QDBusArgument &operator>>(const QDBusArgument &argument, KWin::DBusDesktopDataVector &deskVector); |
|
|
|
Q_DECLARE_METATYPE(KWin::DBusDesktopDataVector)
|
|
|