mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
95 lines
2.9 KiB
C++
95 lines
2.9 KiB
C++
/**
|
|
* Copyright (C) 2015 Deepin Technology Co., Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
**/
|
|
|
|
/*
|
|
* This file was generated by qdbusxml2cpp version 0.8
|
|
* Command line was: qdbusxml2cpp -c DBusFileTrashMonitor -p dbusfiletrashmonitor com.deepin.filemanager.Backend.Monitor.TrashMonitor.xml
|
|
*
|
|
* qdbusxml2cpp is Copyright (C) 2015 Digia Plc and/or its subsidiary(-ies).
|
|
*
|
|
* This is an auto-generated file.
|
|
* Do not edit! All changes made to it will be lost.
|
|
*/
|
|
|
|
#ifndef DBUSFILETRASHMONITOR_H_1437702221
|
|
#define DBUSFILETRASHMONITOR_H_1437702221
|
|
|
|
#include <QtCore/QObject>
|
|
#include <QtCore/QByteArray>
|
|
#include <QtCore/QList>
|
|
#include <QtCore/QMap>
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QStringList>
|
|
#include <QtCore/QVariant>
|
|
#include <QtDBus/QtDBus>
|
|
|
|
/*
|
|
* Proxy class for interface com.deepin.filemanager.Backend.Monitor.TrashMonitor
|
|
*/
|
|
class DBusFileTrashMonitor: public QDBusAbstractInterface
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_SLOT void __propertyChanged__(const QDBusMessage& msg)
|
|
{
|
|
QList<QVariant> arguments = msg.arguments();
|
|
if (3 != arguments.count())
|
|
return;
|
|
QString interfaceName = msg.arguments().at(0).toString();
|
|
if (interfaceName !="com.deepin.filemanager.Backend.Monitor.TrashMonitor")
|
|
return;
|
|
QVariantMap changedProps = qdbus_cast<QVariantMap>(arguments.at(1).value<QDBusArgument>());
|
|
foreach(const QString &prop, changedProps.keys()) {
|
|
const QMetaObject* self = metaObject();
|
|
for (int i=self->propertyOffset(); i < self->propertyCount(); ++i) {
|
|
QMetaProperty p = self->property(i);
|
|
if (p.name() == prop) {
|
|
Q_EMIT p.notifySignal().invoke(this);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
public:
|
|
static inline const char *staticServerPath()
|
|
{ return "com.deepin.filemanager.Backend.Monitor"; }
|
|
static inline const char *staticInterfacePath()
|
|
{ return "/com/deepin/filemanager/Backend/Monitor/TrashMonitor"; }
|
|
static inline const char *staticInterfaceName()
|
|
{ return "com.deepin.filemanager.Backend.Monitor.TrashMonitor"; }
|
|
|
|
public:
|
|
DBusFileTrashMonitor(QObject *parent = 0);
|
|
|
|
~DBusFileTrashMonitor();
|
|
|
|
public Q_SLOTS: // METHODS
|
|
inline QDBusPendingReply<uint> ItemCount()
|
|
{
|
|
QList<QVariant> argumentList;
|
|
return asyncCallWithArgumentList(QStringLiteral("ItemCount"), argumentList);
|
|
}
|
|
|
|
Q_SIGNALS: // SIGNALS
|
|
void ItemCountChanged(uint in0);
|
|
// begin property changed signals
|
|
};
|
|
|
|
namespace com {
|
|
namespace deepin {
|
|
namespace filemanager {
|
|
namespace Backend {
|
|
namespace Monitor {
|
|
typedef ::DBusFileTrashMonitor TrashMonitor;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif
|