summaryrefslogtreecommitdiffstats
path: root/pbap.h
diff options
context:
space:
mode:
authorMatt Porter <mporter@konsulko.com>2018-06-25 11:01:11 -0400
committerMatt Porter <mporter@konsulko.com>2018-06-25 11:01:11 -0400
commit389b5994553fdae59d484068d542910efee79e9c (patch)
treed987b1aec2fed4da44e0b4776be4cea8dfde22be /pbap.h
parente8b328e0516d8ead9af13c8379a6cd1dbbb8a9e9 (diff)
Reorg binding-specific modules into subdirectories
Move binding-specific code into per-binding subdirectories. This separates the core message engine code and simplifies adding new binding-specific modules. Bug-AGL: SPEC-1525 Change-Id: I8fc545e3af375e2ed9e79a41363b7ade97e9b20a Signed-off-by: Matt Porter <mporter@konsulko.com>
Diffstat (limited to 'pbap.h')
-rw-r--r--pbap.h159
1 files changed, 0 insertions, 159 deletions
diff --git a/pbap.h b/pbap.h
deleted file mode 100644
index 2a5fb61..0000000
--- a/pbap.h
+++ /dev/null
@@ -1,159 +0,0 @@
-/*
- * Copyright (C) 2018 Konsulko Group
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef PBAP_H
-#define PBAP_H
-
-#include <QDebug>
-#include <QObject>
-#include <QJsonArray>
-#include <QtQml/QQmlContext>
-
-#include "messageengine.h"
-
-class PhoneNumber : public QObject
-{
- Q_OBJECT
-
- Q_PROPERTY(QString number READ number NOTIFY numberChanged)
- Q_PROPERTY(int type READ type NOTIFY typeChanged)
-
- public:
- explicit PhoneNumber(QString number, QString type);
- virtual ~PhoneNumber();
-
- QString number() {return m_number;};
- int type() {return m_type;};
-
- enum PhoneNumberType {
- UNKNOWN,
- VOICE,
- CELL,
- HOME,
- WORK,
- FAX,
- };
- Q_ENUM(PhoneNumberType)
-
- signals:
- void numberChanged();
- void typeChanged();
-
- private:
- QString m_number;
- int m_type;
- int stringToEnum(QString);
-};
-
-class Contact : public QObject
-{
- Q_OBJECT
-
- Q_PROPERTY(QString name READ name NOTIFY nameChanged)
- Q_PROPERTY(QList<QObject *>numbers READ numbers NOTIFY numbersChanged)
-
- public:
- explicit Contact(QString name, QList<QObject *>numbers);
- virtual ~Contact();
-
- QString name() {return m_name;};
- QList<QObject *>numbers() {return m_numbers;};
-
- signals:
- void nameChanged();
- void numbersChanged();
-
- private:
- QString m_name;
- QList<QObject *>m_numbers;
-};
-
-class RecentCall : public QObject
-{
- Q_OBJECT
-
- Q_PROPERTY(QString name READ name NOTIFY nameChanged)
- Q_PROPERTY(QString number READ number NOTIFY numberChanged)
- Q_PROPERTY(QString datetime READ datetime NOTIFY datetimeChanged)
- Q_PROPERTY(int type READ type NOTIFY typeChanged)
-
- public:
- explicit RecentCall(QString name, QString number, QString datetime, QString type);
- virtual ~RecentCall();
-
- QString name() {return m_name;};
- QString number() {return m_number;};
- QString datetime() {return m_datetime;};
- int type() {return m_type;};
-
- enum RecentCallType {
- UNKNOWN,
- MISSED,
- RECEIVED,
- DIALED,
- };
- Q_ENUM(RecentCallType)
-
- signals:
- void nameChanged();
- void numberChanged();
- void datetimeChanged();
- void typeChanged();
-
- private:
- QString m_name;
- QString m_number;
- QString m_datetime;
- int m_type;
- int stringToEnum(QString);
-};
-
-class Pbap : public QObject
-{
- Q_OBJECT
-
- public:
- explicit Pbap(QUrl &url, QQmlContext *context, QObject * parent = Q_NULLPTR);
- virtual ~Pbap();
-
- Q_INVOKABLE void refreshContacts(int max_entries);
- Q_INVOKABLE void refreshCalls(int max_entries);
- Q_INVOKABLE void search(QString number);
-
- signals:
- void searchResults(QString name);
- void statusChanged(bool connected);
-
- private:
- MessageEngine *m_mloop;
- QQmlContext *m_context;
- QList<QObject *>m_contacts;
- QList<QObject *>m_calls;
- void updateContacts(QString);
- void updateCalls(QString);
- void sendSearchResults(QJsonArray);
-
- // slots
- void onConnected();
- void onDisconnected();
- void onMessageReceived(MessageType, Message*);
-
- const QStringList events {
- "status",
- };
-};
-
-#endif // PBAP_H