~ubuntu-branches/ubuntu/natty/unity-2d/natty-updates

« back to all changes in this revision

Viewing changes to launcher/app/launchercontrol.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2011-02-24 13:45:27 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110224134527-d2lk3qu3sxe9a8z0
Tags: 3.6.0-0ubuntu1
New Upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2011 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Olivier Tilloy <olivier.tilloy@canonical.com>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#include "launchercontrol.h"
 
21
#include "launcheradaptor.h"
 
22
 
 
23
#include <QtDBus/QDBusConnection>
 
24
 
 
25
static const char* LAUNCHER_DBUS_SERVICE = "com.canonical.Unity2d.Launcher";
 
26
static const char* LAUNCHER_DBUS_OBJECT_PATH = "/Launcher";
 
27
 
 
28
LauncherControl::LauncherControl(QObject* parent) : QObject(parent)
 
29
{
 
30
}
 
31
 
 
32
LauncherControl::~LauncherControl()
 
33
{
 
34
    QDBusConnection::sessionBus().unregisterService(LAUNCHER_DBUS_SERVICE);
 
35
}
 
36
 
 
37
bool
 
38
LauncherControl::connectToBus()
 
39
{
 
40
    bool ok = QDBusConnection::sessionBus().registerService(LAUNCHER_DBUS_SERVICE);
 
41
    if (!ok) {
 
42
        return false;
 
43
    }
 
44
    new LauncherAdaptor(this);
 
45
    QDBusConnection::sessionBus().registerObject(LAUNCHER_DBUS_OBJECT_PATH, this);
 
46
 
 
47
    return true;
 
48
}
 
49
 
 
50
void
 
51
LauncherControl::AddWebFavorite(const QString& url)
 
52
{
 
53
    Q_EMIT addWebFavorite(url);
 
54
}
 
55