~ps-jenkins/unity-scopes-shell/ubuntu-rtm-14.09-proposed

« back to all changes in this revision

Viewing changes to src/plugin.cpp

  • Committer: Michal Hruby
  • Date: 2013-11-07 17:48:16 UTC
  • Revision ID: michal.mhr@gmail.com-20131107174816-w1vqq6juarrawx23
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Michał Sawicz <michal.sawicz@canonical.com>
 
17
 */
 
18
 
 
19
// Qt
 
20
#include <QDBusConnection>
 
21
#include <QQmlContext>
 
22
#include <qqml.h>
 
23
 
 
24
// self
 
25
#include "plugin.h"
 
26
 
 
27
// local
 
28
#include "preview.h"
 
29
#include "previewaction.h"
 
30
#include "previewinfohint.h"
 
31
#include "socialpreviewcomment.h"
 
32
#include "scope.h"
 
33
#include "scopes.h"
 
34
#include "categories.h"
 
35
#include "categoryresults.h"
 
36
#include "bottombarvisibilitycommunicatorshell.h"
 
37
#include "genericoptionsmodel.h"
 
38
#include "result.h"
 
39
 
 
40
// libqtdee
 
41
#include "deelistmodel.h"
 
42
 
 
43
static const char* BOTTOM_BAR_VISIBILITY_COMMUNICATOR_DBUS_PATH = "/BottomBarVisibilityCommunicator";
 
44
static const char* DBUS_SERVICE = "com.canonical.Shell.BottomBarVisibilityCommunicator";
 
45
 
 
46
void UnityPlugin::registerTypes(const char *uri)
 
47
{
 
48
    Q_ASSERT(uri == QLatin1String("Unity"));
 
49
    qmlRegisterUncreatableType<Preview>(uri, 0, 1, "Preview", "Can't create Preview object in QML.");
 
50
    qmlRegisterUncreatableType<PreviewAction>(uri, 0, 1, "PreviewAction", "Can't create PreviewAction object in QML.");
 
51
    qmlRegisterUncreatableType<PreviewInfoHint>(uri, 0, 1, "PreviewInfoHint", "Can't create PreviewInfoHint object in QML.");
 
52
    qmlRegisterUncreatableType<SocialPreviewComment>(uri, 0, 1, "SocialPreviewComment", "Can't create SocialPreviewComment object in QML.");
 
53
    qmlRegisterUncreatableType<GenericOptionsModel>(uri, 0, 1, "GenericOptionsModel", "Can't create options model in QML.");
 
54
    qmlRegisterUncreatableType<Result>(uri, 0, 1, "Result", "Can't create result object in QML.");
 
55
    qmlRegisterType<Scope>(uri, 0, 1, "Scope");
 
56
    qmlRegisterType<Scopes>(uri, 0, 1, "Scopes");
 
57
    qmlRegisterType<Categories>(uri, 0, 1, "Categories");
 
58
    qmlRegisterUncreatableType<CategoryResults>(uri, 0, 1, "CategoryResults", "Can't create new Category Results in QML. Get them from Categories instance.");
 
59
    qmlRegisterType<DeeListModel>(uri, 0, 1, "DeeListModel");
 
60
    qmlRegisterUncreatableType<BottomBarVisibilityCommunicatorShell>(uri, 0, 1, "BottomBarVisibilityCommunicatorShell", "Can't create BottomBarVisibilityCommunicatorShell");
 
61
}
 
62
 
 
63
void UnityPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
 
64
{
 
65
    QQmlExtensionPlugin::initializeEngine(engine, uri);
 
66
#ifndef GLIB_VERSION_2_36
 
67
    g_type_init();
 
68
#endif
 
69
 
 
70
    QDBusConnection::sessionBus().registerService(DBUS_SERVICE);
 
71
    BottomBarVisibilityCommunicatorShell *bottomBarVisibilityCommunicator = &BottomBarVisibilityCommunicatorShell::instance();
 
72
    QDBusConnection::sessionBus().registerObject(BOTTOM_BAR_VISIBILITY_COMMUNICATOR_DBUS_PATH, bottomBarVisibilityCommunicator, QDBusConnection::ExportAllContents);
 
73
    engine->rootContext()->setContextProperty("bottomBarVisibilityCommunicatorShell", bottomBarVisibilityCommunicator);
 
74
}