200 lines
6.3 KiB
C++
200 lines
6.3 KiB
C++
// This file is part of RSS Guard.
|
|
//
|
|
// Copyright (C) 2011-2014 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 FEEDSVIEW_H
|
|
#define FEEDSVIEW_H
|
|
|
|
#include <QTreeView>
|
|
|
|
#include "core/messagesmodel.h"
|
|
#include "core/feedsmodel.h"
|
|
#include "miscellaneous/settings.h"
|
|
|
|
|
|
class FeedsProxyModel;
|
|
class FeedsModelFeed;
|
|
class FeedsModelCategory;
|
|
class QTimer;
|
|
|
|
class FeedsView : public QTreeView {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
// Constructors and destructors.
|
|
explicit FeedsView(QWidget *parent = 0);
|
|
virtual ~FeedsView();
|
|
|
|
// Fundamental accessors.
|
|
inline FeedsProxyModel *model() {
|
|
return m_proxyModel;
|
|
}
|
|
|
|
inline FeedsModel *sourceModel() {
|
|
return m_sourceModel;
|
|
}
|
|
|
|
// Does necessary job before quitting this component.
|
|
void quit();
|
|
|
|
// Resets global auto-update intervals according to settings
|
|
// and starts/stop the timer as needed.
|
|
void updateAutoUpdateStatus();
|
|
|
|
// Returns list of selected/all feeds.
|
|
// NOTE: This is recursive method which returns all descendants.
|
|
QList<FeedsModelFeed*> selectedFeeds() const;
|
|
QList<FeedsModelFeed*> allFeeds() const;
|
|
|
|
// Returns pointers to selected feed/category if they are really
|
|
// selected.
|
|
FeedsModelRootItem *selectedItem() const;
|
|
FeedsModelCategory *selectedCategory() const;
|
|
FeedsModelFeed *selectedFeed() const;
|
|
FeedsModelRecycleBin *selectedRecycleBin() const;
|
|
|
|
// Saves/loads expand states of all nodes (feeds/categories) of the list to/from settings.
|
|
void saveExpandedStates();
|
|
void loadExpandedStates();
|
|
|
|
public slots:
|
|
// Feed updating.
|
|
void updateAllFeeds();
|
|
void updateAllFeedsOnStartup();
|
|
void updateSelectedFeeds();
|
|
|
|
// Is executed when next auto-update round could be done.
|
|
void executeNextAutoUpdate();
|
|
|
|
// Feed read/unread manipulators.
|
|
void markSelectedFeedsReadStatus(int read);
|
|
void markSelectedFeedsRead();
|
|
void markSelectedFeedsUnread();
|
|
void markAllFeedsReadStatus(int read);
|
|
void markAllFeedsRead();
|
|
|
|
// Newspaper accessors.
|
|
void openSelectedFeedsInNewspaperMode();
|
|
|
|
// Recycle bin operators.
|
|
void emptyRecycleBin();
|
|
void restoreRecycleBin();
|
|
|
|
// Feed clearers.
|
|
void setSelectedFeedsClearStatus(int clear);
|
|
void setAllFeedsClearStatus(int clear);
|
|
void clearSelectedFeeds();
|
|
void clearAllFeeds();
|
|
void clearAllReadMessages();
|
|
|
|
// Base manipulators.
|
|
void editSelectedItem();
|
|
void deleteSelectedItem();
|
|
|
|
// Standard category manipulators.
|
|
void addNewCategory();
|
|
void editCategory(FeedsModelCategory *category);
|
|
|
|
// Standard feed manipulators.
|
|
void addNewFeed();
|
|
void editFeed(FeedsModelFeed *feed);
|
|
|
|
// Is called when counts of messages are changed externally,
|
|
// typically from message view.
|
|
void receiveMessageCountsChange(MessagesModel::MessageMode mode, bool total_msg_count_changed, bool any_msg_restored);
|
|
|
|
// Reloads counts for selected feeds.
|
|
void updateCountsOfSelectedFeeds(bool update_total_too);
|
|
|
|
// Reloads counts of recycle bin.
|
|
void updateCountsOfRecycleBin(bool update_total_too);
|
|
|
|
// Reloads counts for all feeds.
|
|
void updateCountsOfAllFeeds(bool update_total_too);
|
|
|
|
// Reloads counts for particular feed.
|
|
void updateCountsOfParticularFeed(FeedsModelFeed *feed, bool update_total_too);
|
|
|
|
// Notifies other components about messages
|
|
// counts.
|
|
inline void notifyWithCounts() {
|
|
emit messageCountsChanged(m_sourceModel->countOfUnreadMessages(), m_sourceModel->countOfAllMessages(), m_sourceModel->hasAnyFeedNewMessages());
|
|
}
|
|
|
|
// Selects next/previous item (feed/category) in the list.
|
|
void selectNextItem();
|
|
void selectPreviousItem();
|
|
|
|
// Switches visibility of the widget.
|
|
void switchVisibility() {
|
|
setVisible(!isVisible());
|
|
}
|
|
|
|
protected:
|
|
// Initializes context menus.
|
|
void initializeContextMenuCategoriesFeeds();
|
|
void initializeContextMenuEmptySpace();
|
|
void initializeContextMenuRecycleBin();
|
|
|
|
// Sets up appearance of this widget.
|
|
void setupAppearance();
|
|
|
|
// Handle selections.
|
|
void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
|
|
|
|
// React on "Del" key.
|
|
void keyPressEvent(QKeyEvent *event);
|
|
|
|
// Show custom context menu.
|
|
void contextMenuEvent(QContextMenuEvent *event);
|
|
|
|
private slots:
|
|
void saveSortState(int column, Qt::SortOrder order);
|
|
void validateItemAfterDragDrop(const QModelIndex &source_index);
|
|
|
|
signals:
|
|
// Emitted if user/application requested updating of some feeds.
|
|
void feedsUpdateRequested(const QList<FeedsModelFeed*> feeds);
|
|
|
|
// Emitted if counts of messages are changed.
|
|
void messageCountsChanged(int unread_messages, int total_messages, bool any_feed_has_unread_messages);
|
|
|
|
// Emitted if currently selected feeds needs to be reloaded.
|
|
void feedsNeedToBeReloaded(int mark_current_index_read);
|
|
|
|
// Emitted if user selects new feeds.
|
|
void feedsSelected(const QList<int> &feed_ids);
|
|
|
|
// Requests opening of given messages in newspaper mode.
|
|
void openMessagesInNewspaperView(const QList<Message> &messages);
|
|
|
|
private:
|
|
QMenu *m_contextMenuCategoriesFeeds;
|
|
QMenu *m_contextMenuEmptySpace;
|
|
QMenu *m_contextMenuRecycleBin;
|
|
|
|
FeedsModel *m_sourceModel;
|
|
FeedsProxyModel *m_proxyModel;
|
|
|
|
// Auto-update stuff.
|
|
QTimer *m_autoUpdateTimer;
|
|
bool m_globalAutoUpdateEnabled;
|
|
int m_globalAutoUpdateInitialInterval;
|
|
int m_globalAutoUpdateRemainingInterval;
|
|
};
|
|
|
|
#endif // FEEDSVIEW_H
|