summaryrefslogtreecommitdiffstats
path: root/examples/plugin/plugin.cpp
blob: f405298a97c26b485a0cd361a377441eba09986e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "processinfotemplate.h"
#include "declarativeprocessmanager.h"

#include <QtQml/qqml.h>
#include <QtQml/QQmlExtensionPlugin>


QT_BEGIN_NAMESPACE_PROCESSMANAGER

/*!
  \qmlclass Manager DeclarativeProcessManager
  \inqmlmodule ProcessManager 1
  \brief The Manager element controls running processes.

  Only a single DeclarativeProcessManager class should be loaded at one time.

  Typical use of the ProcessManager class is as follows:

  \code
  import QtQuick 2.0
  import ProcessManager 1.0

  Manager {
     id: myProcessManager

     factories: [
        GdbProcessBackendFactory {},
        StandardProcessBackendFactory {}
     ]
  }
  \endcode
*/

/*!
  \qmlproperty list ProcessManager::Manager::factories
  \brief The factories assigned to this process manager

   The factories property is an ordered list of ProcessBackendFactory objects.
*/


class ProcessManagerPlugin : public QQmlExtensionPlugin
{
    Q_OBJECT
public:
    void registerTypes(const char *uri) {
        qmlRegisterType<ProcessInfoTemplate>(uri, 1, 0, "ProcessInfoTemplate");
        qmlRegisterType<DeclarativeProcessManager>(uri, 1, 0, "Manager");
    }

    void initializeEngine(QQmlEngine *engine, const char *uri) {
        Q_UNUSED(engine);
        Q_UNUSED(uri);
    }
};

#include "plugin.moc"

Q_EXPORT_PLUGIN2(processmanagertemplateplugin, ProcessManagerPlugin)

QT_END_NAMESPACE_PROCESSMANAGER