You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.5 KiB
87 lines
2.5 KiB
/* |
|
Copyright (C) 2014-2016 Montel Laurent <montel@kde.org> |
|
|
|
This program is free 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 2 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 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 FOLLOWUPREMINDERINFOWIDGET_H |
|
#define FOLLOWUPREMINDERINFOWIDGET_H |
|
|
|
#include <QWidget> |
|
#include <KConfigGroup> |
|
#include <QTreeWidgetItem> |
|
#include <AkonadiCore/Item> |
|
class QTreeWidget; |
|
namespace FollowUpReminder |
|
{ |
|
class FollowUpReminderInfo; |
|
} |
|
|
|
class FollowUpReminderInfoItem : public QTreeWidgetItem |
|
{ |
|
public: |
|
explicit FollowUpReminderInfoItem(QTreeWidget *parent = Q_NULLPTR); |
|
~FollowUpReminderInfoItem(); |
|
|
|
void setInfo(FollowUpReminder::FollowUpReminderInfo *info); |
|
FollowUpReminder::FollowUpReminderInfo *info() const; |
|
|
|
private: |
|
FollowUpReminder::FollowUpReminderInfo *mInfo; |
|
}; |
|
|
|
class FollowUpReminderInfoWidget : public QWidget |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit FollowUpReminderInfoWidget(QWidget *parent = Q_NULLPTR); |
|
~FollowUpReminderInfoWidget(); |
|
|
|
void restoreTreeWidgetHeader(const QByteArray &data); |
|
void saveTreeWidgetHeader(KConfigGroup &group); |
|
|
|
void setInfo(const QList<FollowUpReminder::FollowUpReminderInfo *> &infoList); |
|
|
|
bool save(); |
|
|
|
void load(); |
|
|
|
QList<qint32> listRemoveId() const; |
|
|
|
private: |
|
void customContextMenuRequested(const QPoint &pos); |
|
void createOrUpdateItem(FollowUpReminder::FollowUpReminderInfo *info, FollowUpReminderInfoItem *item = Q_NULLPTR); |
|
void removeItem(const QList<QTreeWidgetItem *> &mailItem); |
|
void openShowMessage(Akonadi::Item::Id id); |
|
enum ItemData { |
|
AnswerItemId = Qt::UserRole + 1, |
|
AnswerItemFound = Qt::UserRole + 2 |
|
}; |
|
|
|
enum FollowUpReminderColumn { |
|
To = 0, |
|
Subject, |
|
DeadLine, |
|
AnswerWasReceived, |
|
MessageId, |
|
AnswerMessageId |
|
}; |
|
QList<qint32> mListRemoveId; |
|
QTreeWidget *mTreeWidget; |
|
bool mChanged; |
|
}; |
|
|
|
#endif // FOLLOWUPREMINDERINFOWIDGET_H
|
|
|