mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-01 07:05:48 +00:00

Add files generated by qdbusXML2cpp and DCONG2cpp Log: Add files generated by qdbusXML2cpp and DCONG2cpp
68 lines
2.2 KiB
C++
68 lines
2.2 KiB
C++
/*
|
|
* This file was generated by qdbusxml2cpp version 0.8
|
|
* Command line was: qdbusxml2cpp ./dde-dock/frame/dbusinterface/xml/org.deepin.dde.XEventMonitor1.xml -a ./dde-dock/toolGenerate/qdbusxml2cpp/org.deepin.dde.XEventMonitor1Adaptor -i ./dde-dock/toolGenerate/qdbusxml2cpp/org.deepin.dde.XEventMonitor1.h
|
|
*
|
|
* qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.
|
|
*
|
|
* This is an auto-generated file.
|
|
* Do not edit! All changes made to it will be lost.
|
|
*/
|
|
|
|
#include "./dde-dock/toolGenerate/qdbusxml2cpp/org.deepin.dde.XEventMonitor1Adaptor.h"
|
|
#include <QtCore/QMetaObject>
|
|
#include <QtCore/QByteArray>
|
|
#include <QtCore/QList>
|
|
#include <QtCore/QMap>
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QStringList>
|
|
#include <QtCore/QVariant>
|
|
|
|
/*
|
|
* Implementation of adaptor class XEventMonitor1Adaptor
|
|
*/
|
|
|
|
XEventMonitor1Adaptor::XEventMonitor1Adaptor(QObject *parent)
|
|
: QDBusAbstractAdaptor(parent)
|
|
{
|
|
// constructor
|
|
setAutoRelaySignals(true);
|
|
}
|
|
|
|
XEventMonitor1Adaptor::~XEventMonitor1Adaptor()
|
|
{
|
|
// destructor
|
|
}
|
|
|
|
QString XEventMonitor1Adaptor::RegisterArea(int in0, int in1, int in2, int in3, int in4)
|
|
{
|
|
// handle method call org.deepin.dde.XEventMonitor1.RegisterArea
|
|
QString out0;
|
|
QMetaObject::invokeMethod(parent(), "RegisterArea", Q_RETURN_ARG(QString, out0), Q_ARG(int, in0), Q_ARG(int, in1), Q_ARG(int, in2), Q_ARG(int, in3), Q_ARG(int, in4));
|
|
return out0;
|
|
}
|
|
|
|
QString XEventMonitor1Adaptor::RegisterAreas(AreaList in0, int in1)
|
|
{
|
|
// handle method call org.deepin.dde.XEventMonitor1.RegisterAreas
|
|
QString out0;
|
|
QMetaObject::invokeMethod(parent(), "RegisterAreas", Q_RETURN_ARG(QString, out0), Q_ARG(AreaList, in0), Q_ARG(int, in1));
|
|
return out0;
|
|
}
|
|
|
|
QString XEventMonitor1Adaptor::RegisterFullScreen()
|
|
{
|
|
// handle method call org.deepin.dde.XEventMonitor1.RegisterFullScreen
|
|
QString out0;
|
|
QMetaObject::invokeMethod(parent(), "RegisterFullScreen", Q_RETURN_ARG(QString, out0));
|
|
return out0;
|
|
}
|
|
|
|
bool XEventMonitor1Adaptor::UnregisterArea(const QString &in0)
|
|
{
|
|
// handle method call org.deepin.dde.XEventMonitor1.UnregisterArea
|
|
bool out0;
|
|
QMetaObject::invokeMethod(parent(), "UnregisterArea", Q_RETURN_ARG(bool, out0), Q_ARG(QString, in0));
|
|
return out0;
|
|
}
|
|
|