shift-shell/dialer/src/dialerutils.h

88 lines
2.7 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 callContactAlias READ callContactAlias NOTIFY callContactAliasChanged);
Q_PROPERTY(QString callContactNumber READ callContactNumber NOTIFY callContactNumberChanged);
Q_PROPERTY(bool isIncomingCall READ isIncomingCall NOTIFY isIncomingCallChanged);
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 callContactAlias() const;
void setCallContactAlias(const QString &contactAlias);
QString callContactNumber() const;
void setCallContactNumber(const QString &contactNumber);
bool isIncomingCall() const;
void setIsIncomingCall(bool isIncomingCall);
2015-06-29 17:54:44 +00:00
void emitCallEnded();
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 callContactAliasChanged();
void callContactNumberChanged();
void isIncomingCallChanged();
void acceptCall();
void rejectCall();
void hangUp();
void callEnded(const QString &callContactNumber, uint callDuration, bool isIncomingCall);
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_callContactAlias;
QString m_callContactNumber;
uint m_callDuration;
bool m_isIncomingCall;
};
#endif