RetroShare/plugins/FeedReader/gui/FeedReaderDialog.h
thunder2 3df3850655 FeedReader:
- Added favicon

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6069 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2013-01-10 22:51:04 +00:00

106 lines
3.2 KiB
C++

/****************************************************************
* RetroShare GUI is distributed under the following license:
*
* Copyright (C) 2012 by Thunder
*
* 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; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
****************************************************************/
#ifndef _FEEDREADERDIALOG_H
#define _FEEDREADERDIALOG_H
#include <retroshare-gui/mainpage.h>
#include "interface/rsFeedReader.h"
namespace Ui {
class FeedReaderDialog;
}
class QTreeWidgetItem;
class RsFeedReader;
class RSTreeWidgetItemCompareRole;
class FeedReaderNotify;
class FeedReaderMessageWidget;
class FeedReaderDialog : public MainPage
{
Q_OBJECT
public:
FeedReaderDialog(RsFeedReader *feedReader, FeedReaderNotify *notify, QWidget *parent = 0);
~FeedReaderDialog();
virtual UserNotify *getUserNotify(QObject *parent);
static QIcon iconFromFeed(const FeedInfo &feedInfo);
protected:
virtual void showEvent(QShowEvent *event);
bool eventFilter(QObject *obj, QEvent *ev);
private slots:
void settingsChanged();
void feedTreeCustomPopupMenu(QPoint point);
void feedTreeItemActivated(QTreeWidgetItem *item);
void feedTreeMiddleButtonClicked(QTreeWidgetItem *item);
void openInNewTab();
void newFolder();
void newFeed();
void removeFeed();
void editFeed();
void activateFeed();
void processFeed();
void messageTabCloseRequested(int index);
void messageTabChanged(int index);
void messageTabInfoChanged(QWidget *widget);
/* FeedReaderNotify */
void feedChanged(const QString &feedId, int type);
private:
std::string currentFeedId();
void setCurrentFeedId(const std::string &feedId);
void processSettings(bool load);
void addFeedToExpand(const std::string &feedId);
void getExpandedFeedIds(QList<std::string> &feedIds);
void updateFeeds(const std::string &parentId, QTreeWidgetItem *parentItem);
void updateFeedItem(QTreeWidgetItem *item, const FeedInfo &feedInfo);
void openFeedInNewTab(const std::string &feedId);
void calculateFeedItems();
void calculateFeedItem(QTreeWidgetItem *item, uint32_t &unreadCount, uint32_t &newCount, bool &loading);
FeedReaderMessageWidget *feedMessageWidget(const std::string &feedId);
FeedReaderMessageWidget *createMessageWidget(const std::string &feedId);
bool mProcessSettings;
QList<std::string> *mOpenFeedIds;
QTreeWidgetItem *mRootItem;
RSTreeWidgetItemCompareRole *mFeedCompareRole;
FeedReaderMessageWidget *mMessageWidget;
// gui interface
RsFeedReader *mFeedReader;
FeedReaderNotify *mNotify;
/** Qt Designer generated object */
Ui::FeedReaderDialog *ui;
};
#endif