shift-shell/dialer/src/dialerutils.h

50 lines
1.3 KiB
C
Raw Normal View History

/*
* Copyright 2015 Marco Martin <mart@kde.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License version 2 as published by the Free Software Foundation.
*
* This program 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef DIALERUTILS_H
#define DIALERUTILS_H
#include <QObject>
2015-04-26 14:42:14 +00:00
#include <QPointer>
#include <KNotification>
class DialerUtils : public QObject
{
Q_OBJECT
public:
DialerUtils(QObject *parent = 0);
virtual ~DialerUtils();
2015-04-27 10:06:01 +00:00
Q_INVOKABLE void notifyMissedCall(const QString &caller, const QString &description);
2015-04-26 14:42:14 +00:00
Q_INVOKABLE void resetMissedCalls();
2015-04-28 09:18:56 +00:00
Q_INVOKABLE void notifyRinging();
Q_INVOKABLE void stopRinging();
2015-04-26 14:42:14 +00:00
Q_SIGNALS:
void missedCallsActionTriggered();
private:
2015-04-26 14:42:14 +00:00
QPointer <KNotification> m_callsNotification;
2015-04-28 09:18:56 +00:00
QPointer <KNotification> m_ringingNotification;
2015-04-26 14:42:14 +00:00
int m_missedCalls;
};
#endif