75 lines
2.3 KiB
C++
Executable file
75 lines
2.3 KiB
C++
Executable file
// This file is part of RSS Guard.
|
|
//
|
|
// Copyright (C) 2011-2015 by Martin Rotter <rotter.martinos@gmail.com>
|
|
//
|
|
// RSS Guard 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 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// RSS Guard 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 RSS Guard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#ifndef TTRSSSERVICEROOT_H
|
|
#define TTRSSSERVICEROOT_H
|
|
|
|
#include "services/abstract/serviceroot.h"
|
|
|
|
#include <QCoreApplication>
|
|
|
|
|
|
class FeedsModel;
|
|
|
|
class TtRssServiceRoot : public ServiceRoot {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TtRssServiceRoot(RootItem *parent = NULL);
|
|
virtual ~TtRssServiceRoot();
|
|
|
|
QString code();
|
|
|
|
bool canBeEdited();
|
|
bool canBeDeleted();
|
|
bool editViaGui();
|
|
QVariant data(int column, int role) const;
|
|
|
|
bool onBeforeSetMessagesRead(RootItem *selected_item, QList<int> message_db_ids, ReadStatus read) {
|
|
return false;
|
|
}
|
|
|
|
bool onAfterSetMessagesRead(RootItem *selected_item, QList<int> message_db_ids, ReadStatus read) {
|
|
return false;
|
|
}
|
|
|
|
bool onBeforeSwitchMessageImportance(RootItem *selected_item, QList<QPair<int,RootItem::Importance> > changes) {
|
|
return false;
|
|
}
|
|
|
|
bool onAfterSwitchMessageImportance(RootItem *selected_item, QList<QPair<int,RootItem::Importance> > changes) {
|
|
return false;
|
|
}
|
|
|
|
bool onBeforeMessagesDelete(RootItem *selected_item, QList<int> message_db_ids) {
|
|
return false;
|
|
}
|
|
|
|
bool onAfterMessagesDelete(RootItem *selected_item, QList<int> message_db_ids) {
|
|
return false;
|
|
}
|
|
|
|
bool onBeforeMessagesRestoredFromBin(RootItem *selected_item, QList<int> message_db_ids) {
|
|
return false;
|
|
}
|
|
|
|
bool onAfterMessagesRestoredFromBin(RootItem *selected_item, QList<int> message_db_ids) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
#endif // TTRSSSERVICEROOT_H
|