~unity-2d-team/unity-2d/natty

« back to all changes in this revision

Viewing changes to places/QtDee/dee-shared-model-proxy.h

  • Committer: Florian Boucault
  • Date: 2010-10-12 00:30:29 UTC
  • Revision ID: florian@boucault.net-20101012003029-hbbetm8fcbb7fpx5
Added experimental places:
- experimental Qt bindings for libdee with a C++ and QML test programs
- an early stages QML grid view showing applications from the applications place
- a unity-qt-places binary that loads the QML grid view

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file was generated by qdbusxml2cpp version 0.7
 
3
 * Command line was: qdbusxml2cpp dee-shared-model.xml -p libQtDee/dee-shared-model-proxy
 
4
 *
 
5
 * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 
6
 *
 
7
 * This is an auto-generated file.
 
8
 * Do not edit! All changes made to it will be lost.
 
9
 */
 
10
 
 
11
#ifndef DEE-SHARED-MODEL-PROXY_H_1286371347
 
12
#define DEE-SHARED-MODEL-PROXY_H_1286371347
 
13
 
 
14
#include <QtCore/QObject>
 
15
#include <QtCore/QByteArray>
 
16
#include <QtCore/QList>
 
17
#include <QtCore/QMap>
 
18
#include <QtCore/QString>
 
19
#include <QtCore/QStringList>
 
20
#include <QtCore/QVariant>
 
21
#include <QtDBus/QtDBus>
 
22
 
 
23
/*
 
24
 * Proxy class for interface com.canonical.Dee.Model
 
25
 */
 
26
class ComCanonicalDeeModelInterface: public QDBusAbstractInterface
 
27
{
 
28
    Q_OBJECT
 
29
public:
 
30
    static inline const char *staticInterfaceName()
 
31
    { return "com.canonical.Dee.Model"; }
 
32
 
 
33
public:
 
34
    ComCanonicalDeeModelInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0);
 
35
 
 
36
    ~ComCanonicalDeeModelInterface();
 
37
 
 
38
public Q_SLOTS: // METHODS
 
39
    inline QDBusPendingReply<> Clone()
 
40
    {
 
41
        QList<QVariant> argumentList;
 
42
        return asyncCallWithArgumentList(QLatin1String("Clone"), argumentList);
 
43
    }
 
44
 
 
45
Q_SIGNALS: // SIGNALS
 
46
};
 
47
 
 
48
namespace com {
 
49
  namespace canonical {
 
50
    namespace Dee {
 
51
      typedef ::ComCanonicalDeeModelInterface Model;
 
52
    }
 
53
  }
 
54
}
 
55
#endif