mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
69 lines
3.0 KiB
C++
69 lines
3.0 KiB
C++
/*******************************************************************************
|
|
* plugins/FeedReader/FeedReaderPlugin.h *
|
|
* *
|
|
* Copyright (C) 2012 by Thunder <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero 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 *
|
|
* GNU Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <rsitems/rsserviceids.h>
|
|
#include <retroshare/rsplugin.h>
|
|
#include <retroshare-gui/mainpage.h>
|
|
#include "services/p3FeedReader.h"
|
|
|
|
class p3FeedReader;
|
|
class FeedReaderNotify;
|
|
class RsForums;
|
|
|
|
class FeedReaderPlugin: public RsPlugin
|
|
{
|
|
public:
|
|
FeedReaderPlugin();
|
|
|
|
virtual uint16_t rs_service_id() const { return RS_SERVICE_TYPE_PLUGIN_FEEDREADER; }
|
|
virtual p3Service *p3_service() const { return mFeedReader; }
|
|
virtual p3Config *p3_config() const { return mFeedReader; }
|
|
virtual void stop();
|
|
|
|
virtual MainPage *qt_page() const;
|
|
virtual QIcon *qt_icon() const;
|
|
virtual std::string qt_stylesheet() { return "FeedReader"; }
|
|
virtual QTranslator *qt_translator(QApplication *app, const QString& languageCode, const QString& externalDir) const;
|
|
|
|
virtual void getPluginVersion(int &major, int &minor, int &build, int &svn_rev) const;
|
|
virtual void setPlugInHandler(RsPluginHandler *pgHandler);
|
|
|
|
virtual std::string configurationFileName() const { return "feedreader.cfg" ; }
|
|
|
|
virtual std::string getShortPluginDescription() const;
|
|
virtual std::string getPluginName() const;
|
|
virtual void getLibraries(std::list<RsLibraryInfo> &libraries);
|
|
virtual void setInterfaces(RsPlugInInterfaces& interfaces);
|
|
virtual ConfigPage *qt_config_page() const;
|
|
|
|
virtual FeedNotify *qt_feedNotify();
|
|
|
|
private:
|
|
RsPlugInInterfaces mInterfaces;
|
|
mutable p3FeedReader *mFeedReader;
|
|
mutable FeedReaderNotify *mNotify;
|
|
mutable RsPluginHandler *mPlugInHandler;
|
|
mutable MainPage *mainpage;
|
|
mutable QIcon *mIcon;
|
|
mutable FeedNotify *mFeedNotify;
|
|
};
|