From 4495e20cd7f7f2ab062f3b60f19ac4b79f32c350 Mon Sep 17 00:00:00 2001 From: Forkk Date: Thu, 2 Jan 2014 13:25:38 -0600 Subject: Add news checking system and news toolbar --- logic/news/NewsChecker.cpp | 5 +++++ logic/news/NewsChecker.h | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'logic/news') diff --git a/logic/news/NewsChecker.cpp b/logic/news/NewsChecker.cpp index 08d4ef23..8fc44fa9 100644 --- a/logic/news/NewsChecker.cpp +++ b/logic/news/NewsChecker.cpp @@ -102,6 +102,11 @@ void NewsChecker::rssDownloadFailed() } +QList NewsChecker::getNewsEntries() const +{ + return m_newsEntries; +} + bool NewsChecker::isLoadingNews() const { return m_newsNetJob.get() != nullptr; diff --git a/logic/news/NewsChecker.h b/logic/news/NewsChecker.h index 6d1fb935..820fe626 100644 --- a/logic/news/NewsChecker.h +++ b/logic/news/NewsChecker.h @@ -42,6 +42,9 @@ public: * Returns true if the news has been loaded successfully. */ bool isNewsLoaded() const; + + //! True if the news is currently loading. If true, reloadNews() will do nothing. + bool isLoadingNews() const; /*! * Returns a list of news entries. @@ -78,9 +81,6 @@ protected: //! The network job to use to load the news. NetJobPtr m_newsNetJob; - - //! True if the news is currently loading. If true, reloadNews() will do nothing. - bool isLoadingNews() const; //! True if news has been loaded. bool m_loadedNews; -- cgit v1.2.3