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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/*
SPDX-FileCopyrightText: 2013-2022 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <QObject>
#include "notesagentalarmdialog.h"
#include <Akonadi/Item>
#include <QPointer>
class QTcpServer;
class QTimer;
namespace NoteShared
{
class NotesChangeRecorder;
}
namespace Akonadi
{
class Session;
}
class NotesManager : public QObject
{
Q_OBJECT
public:
explicit NotesManager(QObject *parent = nullptr);
~NotesManager() override;
void stopAll();
void updateNetworkListener();
public Q_SLOTS:
void load();
private Q_SLOTS:
void slotAcceptConnection();
void slotNewNote(const QString &name, const QString &text);
void slotCheckAlarm();
void slotItemAdded(const Akonadi::Item &item);
void slotItemRemoved(const Akonadi::Item &item);
void slotItemChanged(const Akonadi::Item &item, const QSet<QByteArray> &set);
void slotCollectionsReceived(const Akonadi::Collection::List &collections);
private:
void clear();
Akonadi::Item::List mListItem;
QTcpServer *mListener = nullptr;
QTimer *mCheckAlarm = nullptr;
NoteShared::NotesChangeRecorder *mNoteRecorder = nullptr;
Akonadi::Session *const mSession;
QPointer<NotesAgentAlarmDialog> mAlarmDialog;
};
|