FeedReader

- fixed crash at startup
- added some toolbar icons
- added QTimer to message navigation

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6052 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-12-28 00:42:27 +00:00
parent 24a40fc665
commit 4804f950af
13 changed files with 187 additions and 17 deletions

View file

@ -7,6 +7,7 @@ namespace Ui {
class FeedReaderMessageWidget;
}
class QTimer;
class FeedMsgInfo;
class QTreeWidgetItem;
class RSTreeWidgetItemCompareRole;
@ -34,6 +35,7 @@ signals:
private slots:
void msgTreeCustomPopupMenu(QPoint point);
void updateCurrentMessage();
void msgItemChanged();
void msgItemClicked(QTreeWidgetItem *item, int column);
void filterColumnChanged(int column);
@ -44,6 +46,7 @@ private slots:
void markAllAsReadMsg();
void copyLinksMsg();
void removeMsg();
void processFeed();
void openLinkMsg();
void copyLinkMsg();
@ -67,6 +70,7 @@ private:
std::string mFeedId;
QString mFeedName;
unsigned int mUnreadCount;
QTimer *timer;
// gui interface
RsFeedReader *mFeedReader;