aboutsummaryrefslogtreecommitdiff
path: root/libqmenumodel/src/qdbusmenumodel.cpp
blob: f3da989faf3511d6656bda999ab67dbd117bad61 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * Copyright 2012 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *      Renato Araujo Oliveira Filho <renato@canonical.com>
 */

extern "C" {
#include <gio/gio.h>
}

#include "qdbusmenumodel.h"

/*!
    \qmltype QDBusMenuModel
    \inherits QDBusObject

    \brief The QDBusMenuModel class defines the list model for DBus menus

    \b {This component is under heavy development.}

    This class expose the menu previous exported over DBus.

    \code
    QDBusMenuModel {
        id: menuModel
        busType: 1
        busName: "com.ubuntu.menu"
        objectPath: "com/ubuntu/menu"
    }

    ListView {
        id: view
        model: menuModel
        Component.onCompleted: menuModel.start()
    }
    \endcode
*/

/*! \internal */
QDBusMenuModel::QDBusMenuModel(QObject *parent)
    :QMenuModel(0, parent)
{
}

/*! \internal */
QDBusMenuModel::~QDBusMenuModel()
{
}

/*!
    \qmlmethod QDBusMenuModel::start()

    Start dbus watch for the busName and wait until it appears.
    The status will change to connecting after call this function, and as soon the busName
    apperas and the objectPat was found this will change to Connected.

    \b Note: methods should only be called after the Component has completed.
*/
void QDBusMenuModel::start()
{
    QDBusObject::connect();
}

/*!
    \qmlmethod QDBusMenuModel::stop()

    Stops dbus watch and clear the model, the status wil change to Disconnected.

    \b Note: methods should only be called after the Component has completed.
*/
void QDBusMenuModel::stop()
{
    QDBusObject::disconnect();
}

/*! \internal */
void QDBusMenuModel::serviceVanish(GDBusConnection *)
{
    setMenuModel(NULL);
}

/*! \internal */
void QDBusMenuModel::serviceAppear(GDBusConnection *connection)
{
    GMenuModel *model = reinterpret_cast<GMenuModel*>(g_dbus_menu_model_get(connection,
                                                                            busName().toLatin1(),
                                                                            objectPath().toLatin1()));
    setMenuModel(model);
    if (model == NULL) {
        stop();
    }
}

/*! \internal */
void QDBusMenuModel::setIntBusType(int busType)
{
    if ((busType > DBusEnums::None) && (busType < DBusEnums::LastBusType)) {
        setBusType(static_cast<DBusEnums::BusType>(busType));
    }
}