~ubuntu-branches/debian/jessie/apper/jessie

« back to all changes in this revision

Viewing changes to plasmoid/DBusUpdaterInterface.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klumpp
  • Date: 2013-07-30 12:34:46 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130730123446-cgzujaj03pc61drn
Tags: 0.8.1-1
* New upstream release: 0.8.1
* Depend on software-properties-kde instead of suggesting it (Closes: #696583)
* Add patch to make AppStream loading more failsafe

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2008-2012 Daniel Nicoletti <dantti12@gmail.com>         *
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; either version 2 of the License, or     *
7
 
 *   (at your option) any later version.                                   *
8
 
 *                                                                         *
9
 
 *   This program is distributed in the hope that it will be useful,       *
10
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 
 *   GNU General Public License for more details.                          *
13
 
 *                                                                         *
14
 
 *   You should have received a copy of the GNU General Public License     *
15
 
 *   along with this program; if not, write to the                         *
16
 
 *   Free Software Foundation, Inc.,                                       *
17
 
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA .        *
18
 
 ***************************************************************************/
19
 
 
20
 
#ifndef DBUSUPDATERINTERFACE_H
21
 
#define DBUSUPDATERINTERFACE_H
22
 
 
23
 
#include <QtDBus/QDBusContext>
24
 
#include <QDBusObjectPath>
25
 
 
26
 
class DBusUpdaterInterface : public QObject, protected QDBusContext
27
 
{
28
 
    Q_OBJECT
29
 
    Q_CLASSINFO("D-Bus Interface", "org.kde.ApperUpdaterIcon")
30
 
public:
31
 
    DBusUpdaterInterface(QObject *parent = 0);
32
 
    ~DBusUpdaterInterface();
33
 
 
34
 
    bool isRegistered() const;
35
 
 
36
 
    void ReviewUpdates();
37
 
 
38
 
public slots:
39
 
    void registerService();
40
 
    void unregisterService();
41
 
 
42
 
signals:
43
 
    void reviewUpdates();
44
 
 
45
 
private:
46
 
    bool m_registered;
47
 
};
48
 
 
49
 
#endif // DBUSUPDATERINTERFACE_H