Fixed #145 and some other stuff, can delete inoreader accounts for example.

This commit is contained in:
Martin Rotter 2017-10-11 11:47:52 +02:00
parent ac536476ae
commit c759c0d6fd
13 changed files with 286 additions and 80 deletions

View File

@ -2,6 +2,7 @@
————— —————
Added: Added:
▪ Font size of message/feed list can now be changed. (#145)
▪ Inoreader plugin can mark messages starred. ▪ Inoreader plugin can mark messages starred.
▪ All cached online service data are synchronously saved when any feed is updated. ▪ All cached online service data are synchronously saved when any feed is updated.

View File

@ -41,7 +41,7 @@
#include <algorithm> #include <algorithm>
FeedsModel::FeedsModel(QObject* parent) : QAbstractItemModel(parent) { FeedsModel::FeedsModel(QObject* parent) : QAbstractItemModel(parent), m_itemHeight(-1) {
setObjectName(QSL("FeedsModel")); setObjectName(QSL("FeedsModel"));
// Create root item. // Create root item.
@ -56,9 +56,11 @@ FeedsModel::FeedsModel(QObject* parent) : QAbstractItemModel(parent) {
// : Title text in the feed list header. // : Title text in the feed list header.
m_headerData << tr("Title"); m_headerData << tr("Title");
m_tooltipData << /*: Feed list header "titles" column tooltip.*/ tr("Titles of feeds/categories.") << m_tooltipData
<< /*: Feed list header "titles" column tooltip.*/ tr("Titles of feeds/categories.")
<< /*: Feed list header "counts" column tooltip.*/ tr("Counts of unread/all mesages.");
/*: Feed list header "counts" column tooltip.*/ tr("Counts of unread/all mesages."); updateItemHeight();
} }
FeedsModel::~FeedsModel() { FeedsModel::~FeedsModel() {
@ -476,6 +478,18 @@ void FeedsModel::onItemDataChanged(const QList<RootItem*>& items) {
notifyWithCounts(); notifyWithCounts();
} }
int FeedsModel::itemHeight() const {
return m_itemHeight;
}
void FeedsModel::setItemHeight(int item_height) {
m_itemHeight = item_height;
}
void FeedsModel::updateItemHeight() {
m_itemHeight = qApp->settings()->value(GROUP(GUI), SETTING(GUI::HeightRowFeeds)).toInt();
}
void FeedsModel::reloadWholeLayout() { void FeedsModel::reloadWholeLayout() {
emit layoutAboutToBeChanged(); emit layoutAboutToBeChanged();
emit layoutChanged(); emit layoutChanged();

View File

@ -37,10 +37,7 @@ class FeedsModel : public QAbstractItemModel {
virtual ~FeedsModel(); virtual ~FeedsModel();
// Model implementation. // Model implementation.
inline QVariant data(const QModelIndex& index, int role) const { QVariant data(const QModelIndex& index, int role) const;
// Return data according to item.
return itemForIndex(index)->data(index.column(), role);
}
// Drag & drop. // Drag & drop.
QMimeData* mimeData(const QModelIndexList& indexes) const; QMimeData* mimeData(const QModelIndexList& indexes) const;
@ -105,6 +102,10 @@ class FeedsModel : public QAbstractItemModel {
// Access to root item. // Access to root item.
RootItem* rootItem() const; RootItem* rootItem() const;
int itemHeight() const;
void setItemHeight(int item_height);
void updateItemHeight();
public slots: public slots:
void loadActivatedServiceAccounts(); void loadActivatedServiceAccounts();
@ -172,10 +173,27 @@ class FeedsModel : public QAbstractItemModel {
private: private:
RootItem* m_rootItem; RootItem* m_rootItem;
int m_itemHeight;
QList<QString> m_headerData; QList<QString> m_headerData;
QList<QString> m_tooltipData; QList<QString> m_tooltipData;
QIcon m_countsIcon; QIcon m_countsIcon;
}; };
inline QVariant FeedsModel::data(const QModelIndex& index, int role) const {
switch (role) {
case Qt::SizeHintRole: {
if (m_itemHeight > 0) {
return QSize(-1, m_itemHeight);
}
else {
return QVariant();
}
}
default:
return itemForIndex(index)->data(index.column(), role);;
}
}
#endif // FEEDSMODEL_H #endif // FEEDSMODEL_H

View File

@ -32,11 +32,12 @@
MessagesModel::MessagesModel(QObject* parent) MessagesModel::MessagesModel(QObject* parent)
: QSqlQueryModel(parent), MessagesModelSqlLayer(), : QSqlQueryModel(parent), MessagesModelSqlLayer(),
m_cache(new MessagesModelCache(this)), m_messageHighlighter(NoHighlighting), m_customDateFormat(QString()) { m_cache(new MessagesModelCache(this)), m_messageHighlighter(NoHighlighting), m_customDateFormat(QString()), m_itemHeight(-1) {
setupFonts(); setupFonts();
setupIcons(); setupIcons();
setupHeaderData(); setupHeaderData();
updateDateFormat(); updateDateFormat();
updateItemHeight();
loadMessages(nullptr); loadMessages(nullptr);
} }
@ -50,6 +51,18 @@ void MessagesModel::setupIcons() {
m_unreadIcon = qApp->icons()->fromTheme(QSL("mail-mark-unread")); m_unreadIcon = qApp->icons()->fromTheme(QSL("mail-mark-unread"));
} }
int MessagesModel::itemHeight() const {
return m_itemHeight;
}
void MessagesModel::setItemHeight(int item_height) {
m_itemHeight = item_height;
}
void MessagesModel::updateItemHeight() {
m_itemHeight = qApp->settings()->value(GROUP(GUI), SETTING(GUI::HeightRowMessages)).toInt();
}
void MessagesModel::repopulate() { void MessagesModel::repopulate() {
m_cache->clear(); m_cache->clear();
setQuery(selectStatement(), m_db); setQuery(selectStatement(), m_db);
@ -286,6 +299,18 @@ QVariant MessagesModel::data(const QModelIndex& idx, int role) const {
return QVariant(); return QVariant();
} }
case Qt::SizeHintRole: {
if (m_itemHeight > 0) {
QSize siz = QSqlQueryModel::data(idx, Qt::SizeHintRole).toSize();
siz.setHeight(m_itemHeight);
return siz;
}
else {
return QVariant();
}
}
case Qt::DecorationRole: { case Qt::DecorationRole: {
const int index_column = idx.column(); const int index_column = idx.column();

View File

@ -85,6 +85,10 @@ class MessagesModel : public QSqlQueryModel, public MessagesModelSqlLayer {
// Loads messages of given feeds. // Loads messages of given feeds.
void loadMessages(RootItem* item); void loadMessages(RootItem* item);
int itemHeight() const;
void setItemHeight(int item_height);
void updateItemHeight();
public slots: public slots:
// NOTE: These methods DO NOT actually change data in the DB, just in the model. // NOTE: These methods DO NOT actually change data in the DB, just in the model.
@ -112,6 +116,7 @@ class MessagesModel : public QSqlQueryModel, public MessagesModelSqlLayer {
QIcon m_favoriteIcon; QIcon m_favoriteIcon;
QIcon m_readIcon; QIcon m_readIcon;
QIcon m_unreadIcon; QIcon m_unreadIcon;
int m_itemHeight;
}; };
Q_DECLARE_METATYPE(MessagesModel::MessageHighlighter) Q_DECLARE_METATYPE(MessagesModel::MessageHighlighter)

View File

@ -49,6 +49,10 @@ SettingsFeedsMessages::SettingsFeedsMessages(Settings* settings, QWidget* parent
this, &SettingsFeedsMessages::dirtifySettings); this, &SettingsFeedsMessages::dirtifySettings);
connect(m_ui->m_spinHeightImageAttachments, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), connect(m_ui->m_spinHeightImageAttachments, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged),
this, &SettingsFeedsMessages::dirtifySettings); this, &SettingsFeedsMessages::dirtifySettings);
connect(m_ui->m_spinHeightRowsMessages, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged),
this, &SettingsFeedsMessages::dirtifySettings);
connect(m_ui->m_spinHeightRowsFeeds, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged),
this, &SettingsFeedsMessages::dirtifySettings);
connect(m_ui->m_checkAutoUpdate, &QCheckBox::toggled, m_ui->m_spinAutoUpdateInterval, &TimeSpinBox::setEnabled); connect(m_ui->m_checkAutoUpdate, &QCheckBox::toggled, m_ui->m_spinAutoUpdateInterval, &TimeSpinBox::setEnabled);
connect(m_ui->m_spinFeedUpdateTimeout, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, connect(m_ui->m_spinFeedUpdateTimeout, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this,
&SettingsFeedsMessages::dirtifySettings); &SettingsFeedsMessages::dirtifySettings);
@ -103,6 +107,9 @@ void SettingsFeedsMessages::changeMessagesFont() {
void SettingsFeedsMessages::loadSettings() { void SettingsFeedsMessages::loadSettings() {
onBeginLoadSettings(); onBeginLoadSettings();
m_ui->m_spinHeightRowsMessages->setValue(settings()->value(GROUP(GUI), SETTING(GUI::HeightRowMessages)).toInt());
m_ui->m_spinHeightRowsFeeds->setValue(settings()->value(GROUP(GUI), SETTING(GUI::HeightRowFeeds)).toInt());
m_ui->m_checkAutoUpdateNotification->setChecked(settings()->value(GROUP(Feeds), SETTING(Feeds::EnableAutoUpdateNotification)).toBool()); m_ui->m_checkAutoUpdateNotification->setChecked(settings()->value(GROUP(Feeds), SETTING(Feeds::EnableAutoUpdateNotification)).toBool());
m_ui->m_checkKeppMessagesInTheMiddle->setChecked(settings()->value(GROUP(Messages), SETTING(Messages::KeepCursorInCenter)).toBool()); m_ui->m_checkKeppMessagesInTheMiddle->setChecked(settings()->value(GROUP(Messages), SETTING(Messages::KeepCursorInCenter)).toBool());
m_ui->m_checkRemoveReadMessagesOnExit->setChecked(settings()->value(GROUP(Messages), SETTING(Messages::ClearReadOnExit)).toBool()); m_ui->m_checkRemoveReadMessagesOnExit->setChecked(settings()->value(GROUP(Messages), SETTING(Messages::ClearReadOnExit)).toBool());
@ -133,6 +140,10 @@ void SettingsFeedsMessages::loadSettings() {
void SettingsFeedsMessages::saveSettings() { void SettingsFeedsMessages::saveSettings() {
onBeginSaveSettings(); onBeginSaveSettings();
settings()->setValue(GROUP(GUI), GUI::HeightRowMessages, m_ui->m_spinHeightRowsMessages->value());
settings()->setValue(GROUP(GUI), GUI::HeightRowFeeds, m_ui->m_spinHeightRowsFeeds->value());
settings()->setValue(GROUP(Feeds), Feeds::EnableAutoUpdateNotification, m_ui->m_checkAutoUpdateNotification->isChecked()); settings()->setValue(GROUP(Feeds), Feeds::EnableAutoUpdateNotification, m_ui->m_checkAutoUpdateNotification->isChecked());
settings()->setValue(GROUP(Messages), Messages::KeepCursorInCenter, m_ui->m_checkKeppMessagesInTheMiddle->isChecked()); settings()->setValue(GROUP(Messages), Messages::KeepCursorInCenter, m_ui->m_checkKeppMessagesInTheMiddle->isChecked());
settings()->setValue(GROUP(Messages), Messages::ClearReadOnExit, m_ui->m_checkRemoveReadMessagesOnExit->isChecked()); settings()->setValue(GROUP(Messages), Messages::ClearReadOnExit, m_ui->m_checkRemoveReadMessagesOnExit->isChecked());
@ -150,8 +161,12 @@ void SettingsFeedsMessages::saveSettings() {
settings()->setValue(GROUP(Messages), Messages::PreviewerFontStandard, m_ui->m_lblMessagesFont->font().toString()); settings()->setValue(GROUP(Messages), Messages::PreviewerFontStandard, m_ui->m_lblMessagesFont->font().toString());
qApp->mainForm()->tabWidget()->feedMessageViewer()->loadMessageViewerFonts(); qApp->mainForm()->tabWidget()->feedMessageViewer()->loadMessageViewerFonts();
qApp->feedReader()->updateAutoUpdateStatus(); qApp->feedReader()->updateAutoUpdateStatus();
qApp->feedReader()->feedsModel()->updateItemHeight();
qApp->feedReader()->feedsModel()->reloadWholeLayout(); qApp->feedReader()->feedsModel()->reloadWholeLayout();
qApp->feedReader()->messagesModel()->updateDateFormat(); qApp->feedReader()->messagesModel()->updateDateFormat();
qApp->feedReader()->messagesModel()->updateItemHeight();
qApp->feedReader()->messagesModel()->reloadWholeLayout(); qApp->feedReader()->messagesModel()->reloadWholeLayout();
onEndSaveSettings(); onEndSaveSettings();
} }

View File

@ -6,8 +6,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>700</width> <width>550</width>
<height>201</height> <height>270</height>
</rect> </rect>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout"> <layout class="QHBoxLayout" name="horizontalLayout">
@ -32,81 +32,127 @@
<attribute name="title"> <attribute name="title">
<string>Feeds &amp;&amp; categories</string> <string>Feeds &amp;&amp; categories</string>
</attribute> </attribute>
<layout class="QFormLayout" name="formLayout_10"> <layout class="QFormLayout" name="formLayout_2">
<property name="fieldGrowthPolicy"> <item row="0" column="0">
<enum>QFormLayout::AllNonFixedFieldsGrow</enum>
</property>
<item row="0" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkUpdateAllFeedsOnStartup"> <widget class="QCheckBox" name="m_checkUpdateAllFeedsOnStartup">
<property name="text"> <property name="text">
<string>Update all feed on application startup</string> <string>Update all feed on application startup</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="2" column="0"> <item row="1" column="0">
<widget class="QCheckBox" name="m_checkAutoUpdate"> <widget class="QCheckBox" name="m_checkAutoUpdateNotification">
<property name="text"> <property name="text">
<string>Auto-update all feeds every</string> <string>Enable &quot;auto-update started&quot; notification</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="2" column="1"> <item row="2" column="0">
<widget class="TimeSpinBox" name="m_spinAutoUpdateInterval"> <layout class="QHBoxLayout" name="horizontalLayout_6">
<property name="enabled"> <item>
<bool>false</bool> <widget class="QCheckBox" name="m_checkAutoUpdate">
</property> <property name="text">
<property name="readOnly"> <string>Auto-update all feeds every</string>
<bool>false</bool> </property>
</property> </widget>
<property name="accelerated"> </item>
<bool>true</bool> <item>
</property> <widget class="TimeSpinBox" name="m_spinAutoUpdateInterval">
</widget> <property name="enabled">
<bool>false</bool>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
<property name="accelerated">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item> </item>
<item row="3" column="0"> <item row="3" column="0">
<widget class="QLabel" name="label_3"> <layout class="QHBoxLayout" name="horizontalLayout_7">
<property name="text"> <item>
<string>Feed connection timeout</string> <widget class="QLabel" name="label_3">
</property> <property name="text">
</widget> <string>Feed connection timeout</string>
</item> </property>
<item row="3" column="1"> <property name="buddy">
<widget class="QSpinBox" name="m_spinFeedUpdateTimeout"> <cstring>m_spinFeedUpdateTimeout</cstring>
<property name="toolTip"> </property>
<string>Connection timeout is time interval which is reserved for downloading new messages for the feed. If this time interval elapses, then download process is aborted.</string> </widget>
</property> </item>
<property name="suffix"> <item>
<string> ms</string> <widget class="QSpinBox" name="m_spinFeedUpdateTimeout">
</property> <property name="toolTip">
<property name="minimum"> <string>Connection timeout is time interval which is reserved for downloading new messages for the feed. If this time interval elapses, then download process is aborted.</string>
<number>100</number> </property>
</property> <property name="suffix">
<property name="maximum"> <string> ms</string>
<number>120000</number> </property>
</property> <property name="minimum">
<property name="singleStep"> <number>100</number>
<number>100</number> </property>
</property> <property name="maximum">
</widget> <number>120000</number>
</property>
<property name="singleStep">
<number>100</number>
</property>
</widget>
</item>
</layout>
</item> </item>
<item row="4" column="0"> <item row="4" column="0">
<widget class="QLabel" name="label_8"> <layout class="QHBoxLayout" name="horizontalLayout_9">
<property name="text"> <item>
<string>Message count format in feed list</string> <widget class="QLabel" name="label_6">
</property> <property name="text">
</widget> <string>Height or rows in feed list (-1 = default height)</string>
</property>
<property name="buddy">
<cstring>m_spinHeightRowsFeeds</cstring>
</property>
</widget>
</item>
<item>
<widget class="QSpinBox" name="m_spinHeightRowsFeeds">
<property name="minimum">
<number>-1</number>
</property>
<property name="maximum">
<number>100</number>
</property>
</widget>
</item>
</layout>
</item> </item>
<item row="4" column="1"> <item row="5" column="0">
<widget class="QComboBox" name="m_cmbCountsFeedList"> <layout class="QHBoxLayout" name="horizontalLayout_8">
<property name="toolTip"> <item>
<string notr="true"/> <widget class="QLabel" name="label_8">
</property> <property name="text">
<property name="editable"> <string>Message count format in feed list</string>
<bool>true</bool> </property>
</property> <property name="buddy">
</widget> <cstring>m_cmbCountsFeedList</cstring>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="m_cmbCountsFeedList">
<property name="toolTip">
<string notr="true"/>
</property>
<property name="editable">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item> </item>
<item row="5" column="0" colspan="2"> <item row="6" column="0" colspan="2">
<widget class="QLabel" name="label_9"> <widget class="QLabel" name="label_9">
<property name="font"> <property name="font">
<font> <font>
@ -124,13 +170,6 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkAutoUpdateNotification">
<property name="text">
<string>Enable &quot;auto-update started&quot; notification</string>
</property>
</widget>
</item>
</layout> </layout>
</widget> </widget>
<widget class="QWidget" name="m_tabMessages"> <widget class="QWidget" name="m_tabMessages">
@ -152,13 +191,16 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="2" column="0"> <item row="3" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_2"> <layout class="QHBoxLayout" name="horizontalLayout_2">
<item> <item>
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
<string>Height of image attachments</string> <string>Height of image attachments</string>
</property> </property>
<property name="buddy">
<cstring>m_spinHeightImageAttachments</cstring>
</property>
</widget> </widget>
</item> </item>
<item> <item>
@ -173,7 +215,7 @@
</item> </item>
</layout> </layout>
</item> </item>
<item row="3" column="0"> <item row="4" column="0">
<widget class="QCheckBox" name="m_checkMessagesDateTimeFormat"> <widget class="QCheckBox" name="m_checkMessagesDateTimeFormat">
<property name="text"> <property name="text">
<string>Use custom date/time format (overrides format loaded from active localization)</string> <string>Use custom date/time format (overrides format loaded from active localization)</string>
@ -186,10 +228,10 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="3" column="1"> <item row="4" column="1">
<widget class="QComboBox" name="m_cmbMessagesDateTimeFormat"/> <widget class="QComboBox" name="m_cmbMessagesDateTimeFormat"/>
</item> </item>
<item row="4" column="0" colspan="2"> <item row="5" column="0" colspan="2">
<widget class="QGroupBox" name="groupBox_4"> <widget class="QGroupBox" name="groupBox_4">
<property name="title"> <property name="title">
<string>Internal message browser fonts</string> <string>Internal message browser fonts</string>
@ -225,6 +267,30 @@
</layout> </layout>
</widget> </widget>
</item> </item>
<item row="2" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Height or rows in message list (-1 = default height)</string>
</property>
<property name="buddy">
<cstring>m_spinHeightRowsMessages</cstring>
</property>
</widget>
</item>
<item>
<widget class="QSpinBox" name="m_spinHeightRowsMessages">
<property name="minimum">
<number>-1</number>
</property>
<property name="maximum">
<number>100</number>
</property>
</widget>
</item>
</layout>
</item>
</layout> </layout>
</widget> </widget>
</widget> </widget>
@ -238,6 +304,25 @@
<header>timespinbox.h</header> <header>timespinbox.h</header>
</customwidget> </customwidget>
</customwidgets> </customwidgets>
<tabstops>
<tabstop>m_tabFeedsMessages</tabstop>
<tabstop>m_checkUpdateAllFeedsOnStartup</tabstop>
<tabstop>m_checkAutoUpdateNotification</tabstop>
<tabstop>m_checkAutoUpdate</tabstop>
<tabstop>m_spinAutoUpdateInterval</tabstop>
<tabstop>m_spinFeedUpdateTimeout</tabstop>
<tabstop>m_spinHeightRowsFeeds</tabstop>
<tabstop>m_cmbCountsFeedList</tabstop>
<tabstop>m_checkRemoveReadMessagesOnExit</tabstop>
<tabstop>m_checkKeppMessagesInTheMiddle</tabstop>
<tabstop>m_spinHeightRowsMessages</tabstop>
<tabstop>m_spinHeightImageAttachments</tabstop>
<tabstop>m_checkMessagesDateTimeFormat</tabstop>
<tabstop>m_cmbMessagesDateTimeFormat</tabstop>
<tabstop>m_btnChangeMessagesFont</tabstop>
<tabstop>m_spinHeightRowsMessages_3</tabstop>
<tabstop>m_spinHeightRowsMessages_2</tabstop>
</tabstops>
<resources/> <resources/>
<connections/> <connections/>
</ui> </ui>

View File

@ -1490,6 +1490,15 @@ Assignment DatabaseQueries::getCategories(QSqlDatabase db, int account_id, bool*
return categories; return categories;
} }
bool DatabaseQueries::deleteInoreaderAccount(QSqlDatabase db, int account_id) {
QSqlQuery q(db);
q.setForwardOnly(true);
q.prepare(QSL("DELETE FROM InoreaderAccounts WHERE id = :id;"));
q.bindValue(QSL(":id"), account_id);
return q.exec();
}
#if defined(USE_WEBENGINE) #if defined(USE_WEBENGINE)
Assignment DatabaseQueries::getInoreaderFeeds(QSqlDatabase db, int account_id, bool* ok) { Assignment DatabaseQueries::getInoreaderFeeds(QSqlDatabase db, int account_id, bool* ok) {
Assignment feeds; Assignment feeds;

View File

@ -80,6 +80,7 @@ class DatabaseQueries {
// Inoreader account. // Inoreader account.
#if defined(USE_WEBENGINE) #if defined(USE_WEBENGINE)
static bool deleteInoreaderAccount(QSqlDatabase db, int account_id);
static Assignment getInoreaderFeeds(QSqlDatabase db, int account_id, bool* ok = nullptr); static Assignment getInoreaderFeeds(QSqlDatabase db, int account_id, bool* ok = nullptr);
static bool storeNewInoreaderTokens(QSqlDatabase db, const QString& refresh_token, int account_id); static bool storeNewInoreaderTokens(QSqlDatabase db, const QString& refresh_token, int account_id);
static QList<ServiceRoot*> getInoreaderAccounts(QSqlDatabase db, bool* ok = nullptr); static QList<ServiceRoot*> getInoreaderAccounts(QSqlDatabase db, bool* ok = nullptr);

View File

@ -115,6 +115,14 @@ DKEY GUI::ToolbarStyle = "toolbar_style";
DVALUE(Qt::ToolButtonStyle) GUI::ToolbarStyleDef = Qt::ToolButtonIconOnly; DVALUE(Qt::ToolButtonStyle) GUI::ToolbarStyleDef = Qt::ToolButtonIconOnly;
DKEY GUI::HeightRowMessages = "height_row_messages";
DVALUE(int) GUI::HeightRowMessagesDef = -1;
DKEY GUI::HeightRowFeeds = "height_row_feeds";
DVALUE(int) GUI::HeightRowFeedsDef = -1;
DKEY GUI::FeedsToolbarActions = "feeds_toolbar"; DKEY GUI::FeedsToolbarActions = "feeds_toolbar";
DVALUE(char*) GUI::FeedsToolbarActionsDef = "m_actionUpdateAllItems,m_actionStopRunningItemsUpdate,m_actionMarkAllItemsRead"; DVALUE(char*) GUI::FeedsToolbarActionsDef = "m_actionUpdateAllItems,m_actionStopRunningItemsUpdate,m_actionMarkAllItemsRead";

View File

@ -217,6 +217,14 @@ namespace GUI {
VALUE(int) DefaultSortColumnFeedsDef; VALUE(int) DefaultSortColumnFeedsDef;
KEY HeightRowMessages;
VALUE(int) HeightRowMessagesDef;
KEY HeightRowFeeds;
VALUE(int) HeightRowFeedsDef;
KEY DefaultSortOrderFeeds; KEY DefaultSortOrderFeeds;
VALUE(Qt::SortOrder) DefaultSortOrderFeedsDef; VALUE(Qt::SortOrder) DefaultSortOrderFeedsDef;

View File

@ -200,3 +200,18 @@ void InoreaderServiceRoot::saveAllCachedData(bool async) {
} }
} }
} }
bool InoreaderServiceRoot::canBeDeleted() const {
return true;
}
bool InoreaderServiceRoot::deleteViaGui() {
QSqlDatabase database = qApp->database()->connection(metaObject()->className(), DatabaseFactory::FromSettings);
if (DatabaseQueries::deleteInoreaderAccount(database, accountId())) {
return ServiceRoot::deleteViaGui();
}
else {
return false;
}
}

View File

@ -39,6 +39,8 @@ class InoreaderServiceRoot : public ServiceRoot, public CacheForServiceRoot {
bool canBeEdited() const; bool canBeEdited() const;
bool editViaGui(); bool editViaGui();
bool canBeDeleted() const;
bool deleteViaGui();
bool supportsFeedAdding() const; bool supportsFeedAdding() const;
bool supportsCategoryAdding() const; bool supportsCategoryAdding() const;
void start(bool freshly_activated); void start(bool freshly_activated);