File indexing completed on 2024-04-21 16:29:34

0001 /***************************************************************************
0002  *   Copyright (C) 2008-2012 Daniel Nicoletti <dantti12@gmail.com>         *
0003  *                                                                         *
0004  *   This program is free software; you can redistribute it and/or modify  *
0005  *   it under the terms of the GNU General Public License as published by  *
0006  *   the Free Software Foundation; either version 2 of the License, or     *
0007  *   (at your option) any later version.                                   *
0008  *                                                                         *
0009  *   This program is distributed in the hope that it will be useful,       *
0010  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
0011  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
0012  *   GNU General Public License for more details.                          *
0013  *                                                                         *
0014  *   You should have received a copy of the GNU General Public License     *
0015  *   along with this program; if not, write to the                         *
0016  *   Free Software Foundation, Inc.,                                       *
0017  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA .        *
0018  ***************************************************************************/
0019 
0020 #ifndef DBUSUPDATERINTERFACE_H
0021 #define DBUSUPDATERINTERFACE_H
0022 
0023 #include <QtDBus/QDBusContext>
0024 #include <QDBusObjectPath>
0025 
0026 class DBusUpdaterInterface : public QObject, protected QDBusContext
0027 {
0028     Q_OBJECT
0029     Q_CLASSINFO("D-Bus Interface", "org.kde.ApperUpdaterIcon")
0030     Q_PROPERTY(bool registered READ isRegistered NOTIFY registeredChanged)
0031 public:
0032     explicit DBusUpdaterInterface(QObject *parent = 0);
0033     ~DBusUpdaterInterface();
0034 
0035     bool isRegistered() const;
0036 
0037     void ReviewUpdates();
0038 
0039 public Q_SLOTS:
0040     void registerService();
0041     void unregisterService();
0042 
0043 Q_SIGNALS:
0044     void reviewUpdates();
0045     void registeredChanged();
0046 
0047 private:
0048     bool m_registered;
0049 };
0050 
0051 #endif // DBUSUPDATERINTERFACE_H