Home
last modified time | relevance | path

Searched refs:feed_custom_id (Results 1 – 8 of 8) sorted by relevance

/dports/net/rssguard/rssguard-4.0.4/src/librssguard/database/
H A Ddatabasequeries.cpp483 QString feed_custom_id = q.value(0).toString(); in getMessageCountsForCategory() local
492 counts.insert(feed_custom_id, QPair<int, int>(unread_count, 0)); in getMessageCountsForCategory()
572 q.bindValue(QSL(":feed"), feed_custom_id); in getMessageCountsForFeed()
876 q.bindValue(QSL(":feed"), feed_custom_id); in getUndeletedMessagesForFeed()
1045 auto feed_custom_id = feed->customId(); in updateMessages() local
1241 feed_id_existing_message = feed_custom_id; in updateMessages()
1903 q.bindValue(QSL(":feed"), feed_custom_id); in customIdsOfMessagesFromFeed()
2049 q.bindValue(QSL(":feed"), feed_custom_id); in deleteFeed()
2058 q.bindValue(QSL(":feed"), feed_custom_id); in deleteFeed()
2211 q.bindValue(QSL(":feed_custom_id"), feed_custom_id); in assignMessageFilterToFeed()
[all …]
H A Ddatabasequeries.h76 …static int getMessageCountsForFeed(const QSqlDatabase& db, const QString& feed_custom_id, int acco…
90 …c QList<Message> getUndeletedMessagesForFeed(const QSqlDatabase& db, const QString& feed_custom_id,
103 …t customIdsOfMessagesFromFeed(const QSqlDatabase& db, const QString& feed_custom_id, int account_i…
127 static bool deleteFeed(const QSqlDatabase& db, int feed_custom_id, int account_id);
144 …static void assignMessageFilterToFeed(const QSqlDatabase& db, const QString& feed_custom_id, int f…
147 …static void removeMessageFilterFromFeed(const QSqlDatabase& db, const QString& feed_custom_id, int…
/dports/net/rssguard/rssguard-4.0.4/src/librssguard/core/
H A Dmessageobject.cpp12 MessageObject::MessageObject(QSqlDatabase* db, const QString& feed_custom_id, int account_id, in MessageObject() argument
14 …: QObject(parent), m_db(db), m_feedCustomId(feed_custom_id), m_accountId(account_id), m_message(nu… in MessageObject()
H A Dmessageobject.h70 const QString& feed_custom_id,
H A Dmessagesmodel.cpp413 QString feed_custom_id = dta.toString(); in data() local
414 auto acc = m_selectedItem->getParentServiceRoot()->feedIconForMessage(feed_custom_id); in data()
/dports/net/rssguard/rssguard-4.0.4/resources/sql/
H A Ddb_init_sqlite.sql80 feed_custom_id TEXT NOT NULL, /* Points to Feeds/custom_id. */
/dports/net/rssguard/rssguard-4.0.4/src/librssguard/services/abstract/
H A Dserviceroot.h203 QIcon feedIconForMessage(const QString& feed_custom_id) const;
H A Dserviceroot.cpp179 QIcon ServiceRoot::feedIconForMessage(const QString& feed_custom_id) const { in feedIconForMessage()
180 QString low_id = feed_custom_id.toLower(); in feedIconForMessage()