shift-shell/dialer/src/dialerutils.h

72 lines
2 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>
#include <TelepathyQt/Account>
class DialerUtils : public QObject
{
Q_OBJECT
Q_PROPERTY(QString callState READ callState NOTIFY callStateChanged);
Q_PROPERTY(uint callDuration READ callDuration NOTIFY callDurationChanged);
Q_PROPERTY(QString callContactId READ callContactId NOTIFY callContactIdChanged);
public:
DialerUtils(const Tp::AccountPtr &simAccount, QObject *parent = 0);
virtual ~DialerUtils();
QString callState() const;
void setCallState(const QString &state);
uint callDuration() const;
void setCallDuration(uint duration);
QString callContactId() const;
void setCallContactId(const QString &contactId);
2015-04-26 14:42:14 +00:00
Q_INVOKABLE void resetMissedCalls();
Q_INVOKABLE void dial(const QString &number);
2015-04-26 14:42:14 +00:00
Q_SIGNALS:
void missedCallsActionTriggered();
void callStateChanged();
void callDurationChanged();
void callContactIdChanged();
void acceptCall();
void rejectCall();
void hangUp();
2015-04-26 14:42:14 +00:00
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;
QString m_callState;
Tp::AccountPtr m_simAccount;
QString m_callContactId;
uint m_callDuration;
};
#endif