1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/historykeeper.h

74 lines
2.2 KiB
C
Raw Normal View History

2014-10-02 03:03:10 +08:00
/*
Copyright (C) 2014 by Project Tox <https://tox.im>
This file is part of qTox, a Qt-based graphical interface for Tox.
This program is libre software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
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 COPYING file for more details.
*/
#ifndef HISTORYKEEPER_H
#define HISTORYKEEPER_H
#include <QMap>
#include <QList>
#include <QDateTime>
class GenericDdInterface;
2014-10-02 03:03:10 +08:00
class HistoryKeeper
{
public:
2014-10-14 21:43:03 +08:00
enum ChatType {ctSingle = 0, ctGroup};
2014-10-02 03:03:10 +08:00
struct HistMessage
{
QString sender;
QString message;
QDateTime timestamp;
};
virtual ~HistoryKeeper();
2014-10-02 03:03:10 +08:00
static HistoryKeeper* getInstance();
static void resetInstance();
static QString getHistoryPath();
static bool checkPassword();
static void renameHistory(QString from, QString to);
2014-10-02 03:03:10 +08:00
void addChatEntry(const QString& chat, const QString& message, const QString& sender, const QDateTime &dt);
2014-10-14 13:49:27 +08:00
void addGroupChatEntry(const QString& chat, const QString& message, const QString& sender, const QDateTime &dt);
2014-10-10 23:45:58 +08:00
QList<HistMessage> getChatHistory(ChatType ct, const QString &profile, const QString &chat,
2014-10-14 13:49:27 +08:00
const QDateTime &time_from, const QDateTime &time_to);
2014-10-02 03:03:10 +08:00
private:
HistoryKeeper(GenericDdInterface *db_);
HistoryKeeper(HistoryKeeper &hk) = delete;
2014-10-02 03:03:10 +08:00
HistoryKeeper& operator=(const HistoryKeeper&) = delete;
void updateChatsID();
void updateAliases();
QPair<int, ChatType> getChatID(const QString &id_str, ChatType ct);
int getAliasID(const QString &id_str);
2014-10-10 23:45:58 +08:00
int getCurrentProfileID();
2014-10-02 03:03:10 +08:00
QString wrapMessage(const QString &str);
QString unWrapMessage(const QString &str);
2014-10-14 21:43:03 +08:00
ChatType convertToChatType(int);
GenericDdInterface *db;
2014-10-02 03:03:10 +08:00
QMap<QString, int> aliases;
QMap<QString, QPair<int, ChatType>> chats;
2014-10-10 23:45:58 +08:00
bool isEncrypted;
2014-10-02 03:03:10 +08:00
};
#endif // HISTORYKEEPER_H