QGIS API Documentation
3.16.0-Hannover (43b64b13f3)
|
Parser for published QGIS news feeds. More...
#include <qgsnewsfeedparser.h>
Classes | |
class | Entry |
Represents a single entry from a news feed. More... | |
Public Slots | |
void | fetch () |
Fetches new entries from the feed's URL. More... | |
Signals | |
void | entryAdded (const QgsNewsFeedParser::Entry &entry) |
Emitted whenever a new entry is available from the feed (as a result of a call to fetch()). More... | |
void | entryDismissed (const QgsNewsFeedParser::Entry &entry) |
Emitted whenever an entry is dismissed (as a result of a call to dismissEntry()). More... | |
void | fetched (const QList< QgsNewsFeedParser::Entry > &entries) |
Emitted when entries have fetched from the feed. More... | |
void | imageFetched (int key, const QPixmap &pixmap) |
Emitted when the image attached to the entry with the specified key has been fetched and is now available. More... | |
Public Member Functions | |
QgsNewsFeedParser (const QUrl &feedUrl, const QString &authcfg=QString(), QObject *parent=nullptr) | |
Constructor for QgsNewsFeedParser, parsing the specified feedUrl. More... | |
QString | authcfg () const |
Returns the authentication configuration for the parser. More... | |
void | dismissAll () |
Dismisses all current news items. More... | |
void | dismissEntry (int key) |
Dismisses an entry with matching key. More... | |
QList< QgsNewsFeedParser::Entry > | entries () const |
Returns a list of existing entries in the feed. More... | |
Static Public Member Functions | |
static QString | keyForFeed (const QString &baseUrl) |
Returns the settings key used for a feed with the given baseUrl. More... | |
Friends | |
class | TestQgsNewsFeedParser |
Parser for published QGIS news feeds.
This class is designed to work with the specialized QGIS news feed API. See https://github.com/elpaso/qgis-feed.
Definition at line 36 of file qgsnewsfeedparser.h.
QgsNewsFeedParser::QgsNewsFeedParser | ( | const QUrl & | feedUrl, |
const QString & | authcfg = QString() , |
||
QObject * | parent = nullptr |
||
) |
Constructor for QgsNewsFeedParser, parsing the specified feedUrl.
The optional authcfg argument can be used to specify an authentication configuration to use when connecting to the feed.
Definition at line 28 of file qgsnewsfeedparser.cpp.
QString QgsNewsFeedParser::authcfg | ( | ) | const |
Returns the authentication configuration for the parser.
Definition at line 131 of file qgsnewsfeedparser.cpp.
void QgsNewsFeedParser::dismissAll | ( | ) |
Dismisses all current news items.
Definition at line 122 of file qgsnewsfeedparser.cpp.
void QgsNewsFeedParser::dismissEntry | ( | int | key | ) |
Dismisses an entry with matching key.
This removes the entry from the local store, ensuring it will never be present again.
Definition at line 88 of file qgsnewsfeedparser.cpp.
QList< QgsNewsFeedParser::Entry > QgsNewsFeedParser::entries | ( | ) | const |
Returns a list of existing entries in the feed.
Definition at line 83 of file qgsnewsfeedparser.cpp.
|
signal |
|
signal |
Emitted whenever an entry is dismissed (as a result of a call to dismissEntry()).
|
slot |
Fetches new entries from the feed's URL.
Definition at line 136 of file qgsnewsfeedparser.cpp.
|
signal |
Emitted when entries have fetched from the feed.
|
signal |
Emitted when the image attached to the entry with the specified key has been fetched and is now available.
|
static |
Returns the settings key used for a feed with the given baseUrl.
Definition at line 333 of file qgsnewsfeedparser.cpp.
|
friend |
Definition at line 172 of file qgsnewsfeedparser.h.