mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
cb9c998fe0
- switched to tabbed ui - load/save open folders git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6032 b45a01b8-16f6-495d-af2f-9b41ad6348cc
96 lines
2.7 KiB
C++
96 lines
2.7 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, QWidget *parent = 0);
|
|
~FeedReaderDialog();
|
|
|
|
virtual UserNotify *getUserNotify(QObject *parent);
|
|
|
|
protected:
|
|
virtual void showEvent(QShowEvent *e);
|
|
bool eventFilter(QObject *obj, QEvent *ev);
|
|
|
|
private slots:
|
|
void feedTreeCustomPopupMenu(QPoint point);
|
|
void feedItemChanged(QTreeWidgetItem *item);
|
|
void newFolder();
|
|
void newFeed();
|
|
void removeFeed();
|
|
void editFeed();
|
|
void activateFeed();
|
|
void processFeed();
|
|
|
|
void messageTabCloseRequested(int index);
|
|
void messageTabChanged(QWidget *widget);
|
|
|
|
/* FeedReaderNotify */
|
|
void feedChanged(const QString &feedId, int type);
|
|
|
|
private:
|
|
std::string currentFeedId();
|
|
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, FeedInfo &info);
|
|
|
|
void calculateFeedItems();
|
|
void calculateFeedItem(QTreeWidgetItem *item, uint32_t &unreadCount, bool &loading);
|
|
|
|
FeedReaderMessageWidget *feedMessageWidget(const std::string &id);
|
|
|
|
bool mProcessSettings;
|
|
QList<std::string> *mOpenFeedIds;
|
|
QTreeWidgetItem *mRootItem;
|
|
RSTreeWidgetItemCompareRole *mFeedCompareRole;
|
|
|
|
// gui interface
|
|
RsFeedReader *mFeedReader;
|
|
FeedReaderNotify *mNotify;
|
|
|
|
/** Qt Designer generated object */
|
|
Ui::FeedReaderDialog *ui;
|
|
};
|
|
|
|
#endif
|
|
|