2010-04-27 03:10:32 +00:00
|
|
|
/*
|
2015-06-10 21:27:11 +00:00
|
|
|
* This file Copyright (C) 2012-2015 Mnemosyne LLC
|
2010-04-27 03:10:32 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2010-04-27 03:10:32 +00:00
|
|
|
*
|
2010-10-01 13:33:39 +00:00
|
|
|
* $Id$
|
2010-04-27 03:10:32 +00:00
|
|
|
*/
|
|
|
|
|
2015-12-16 17:57:05 +00:00
|
|
|
#ifndef QTR_INTEROP_OBJECT_H
|
|
|
|
#define QTR_INTEROP_OBJECT_H
|
2010-04-27 03:10:32 +00:00
|
|
|
|
2015-12-16 17:57:05 +00:00
|
|
|
#include <QObject>
|
2010-04-27 03:10:32 +00:00
|
|
|
|
2015-12-16 17:57:05 +00:00
|
|
|
class InteropObject: public QObject
|
2010-04-27 03:10:32 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2015-12-16 20:01:03 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_DBUS_INTEROP
|
2015-06-12 22:12:12 +00:00
|
|
|
Q_CLASSINFO ("D-Bus Interface", "com.transmissionbt.Transmission")
|
2015-12-16 20:01:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_COM_INTEROP
|
|
|
|
Q_CLASSINFO ("ClassID", "{0e2c952c-0597-491f-ba26-249d7e6fab49}")
|
|
|
|
Q_CLASSINFO ("InterfaceID", "{9402f54f-4906-4f20-ad73-afcfeb5b228d}")
|
|
|
|
Q_CLASSINFO ("RegisterObject", "yes")
|
|
|
|
Q_CLASSINFO ("CoClassAlias", "QtClient")
|
|
|
|
Q_CLASSINFO ("Description", "Transmission Qt Client Class")
|
|
|
|
#endif
|
2010-04-27 03:10:32 +00:00
|
|
|
|
|
|
|
public:
|
2015-12-16 17:57:05 +00:00
|
|
|
InteropObject (QObject * parent = nullptr);
|
2010-04-27 03:10:32 +00:00
|
|
|
|
|
|
|
public slots:
|
2015-06-12 22:12:12 +00:00
|
|
|
bool PresentWindow ();
|
2015-12-16 17:57:05 +00:00
|
|
|
bool AddMetainfo (const QString& metainfo);
|
2010-04-27 03:10:32 +00:00
|
|
|
};
|
|
|
|
|
2015-12-16 17:57:05 +00:00
|
|
|
#endif // QTR_INTEROP_OBJECT_H
|