blob: c9bb8a561c39b448162626eef5583927a8647080 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#pragma once
#include <QObject>
#include <QVariant>
#include <deltachat.h>
#include "chatlist.h"
#include "chat.h"
#include "message.h"
#include "contact.h"
class Context : public QObject {
Q_OBJECT
Q_PROPERTY(QString blobdir READ getBlobdir CONSTANT)
public:
explicit Context(QObject *parent = nullptr);
explicit Context(dc_context_t *context);
~Context();
Q_INVOKABLE void configure();
Q_INVOKABLE bool isConfigured() const;
Q_INVOKABLE QString getInfo();
Q_INVOKABLE DcChatlist *getChatlist();
Q_INVOKABLE DcChat *getChat(uint32_t chatId);
Q_INVOKABLE QVariantList getMsgIdList(uint32_t chatId);
Q_INVOKABLE DcMessage *getMessage(uint32_t msgId);
Q_INVOKABLE DcContact *getContact(uint32_t contactId);
Q_INVOKABLE uint32_t sendTextMessage(uint32_t chatId, QString textToSend);
QString getBlobdir();
private:
dc_context_t *m_context{nullptr};
};
|