/* * Copyright (C) 2012-2015 Canonical, Ltd. * * Authors: * Ugo Riboni * Tiago Salem Herrmann * Gustavo Pichorim Boiko * * This file is part of telephony-service. * * telephony-service is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * telephony-service 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef INDICATORDBUS_H #define INDICATORDBUS_H #include #include #include "chatmanager.h" /** * DBus interface for the phone approver */ class IndicatorDBus : public QObject, protected QDBusContext { Q_OBJECT public: IndicatorDBus(QObject* parent=0); ~IndicatorDBus(); bool connectToBus(); public Q_SLOTS: Q_NOREPLY void ClearNotifications(); Q_NOREPLY void ClearCallNotification(const QString &targetId, const QString &accountId); Q_SIGNALS: void clearNotificationsRequested(); }; #endif // INDICATORDBUS_H