diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG
index 376e1bb66..f523affbc 100644
--- a/resources/text/CHANGELOG
+++ b/resources/text/CHANGELOG
@@ -17,11 +17,12 @@
Added:
- Brand new "service plugin system" - HIGHLY EXPERIMENTAL and REWRITTEN from scratch. Expect bugs and misunderstandings now! Major parts of RSS Guard were completely rewritten.
+ - Added ability to completely disable notifications (bug #128).
+ - Added ability to go to next unread message. (partially bug #112)
Fixed:
- - Added ability to completely disable notifications (bug #128).
- Better info in popup notification when many feeds are updated.
- Fixed obtaining of contents in RSS 2.0 feed entries. (bug #130)
- Improved popup informing about changes in newly installed version.
diff --git a/src/core/messagesproxymodel.cpp b/src/core/messagesproxymodel.cpp
index 4fc5f9ece..992cc49fe 100755
--- a/src/core/messagesproxymodel.cpp
+++ b/src/core/messagesproxymodel.cpp
@@ -38,6 +38,38 @@ MessagesProxyModel::~MessagesProxyModel() {
qDebug("Destroying MessagesProxyModel instance.");
}
+QModelIndex MessagesProxyModel::getNextPreviousUnreadItemIndex(int default_row) {
+ bool started_from_zero = default_row == 0;
+ QModelIndex next_index = getNextUnreadItemIndex(default_row, rowCount() - 1);
+
+ // There is no next message, check previous.
+ if (!next_index.isValid() && !started_from_zero) {
+ next_index = getNextUnreadItemIndex(0, default_row - 1);
+ }
+
+ return next_index;
+}
+
+QModelIndex MessagesProxyModel::getNextUnreadItemIndex(int default_row, int max_row) {
+ while (default_row <= max_row) {
+ // Get info if the message is read or not.
+ QModelIndex proxy_index = index(default_row, 0);
+
+ bool is_read = m_sourceModel->data(mapToSource(proxy_index).row(),
+ MSG_DB_READ_INDEX, Qt::EditRole).toInt() == 1;
+
+ if (!is_read) {
+ // We found unread message, mark it.
+ return proxy_index;
+ }
+ else {
+ default_row++;
+ }
+ }
+
+ return QModelIndex();
+}
+
bool MessagesProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const {
if (left.column() == MSG_DB_TITLE_INDEX && right.column() == MSG_DB_TITLE_INDEX) {
return QString::localeAwareCompare(m_sourceModel->data(left).toString(),
diff --git a/src/core/messagesproxymodel.h b/src/core/messagesproxymodel.h
index 2b81ea652..1bb2faaa1 100755
--- a/src/core/messagesproxymodel.h
+++ b/src/core/messagesproxymodel.h
@@ -36,6 +36,8 @@ class MessagesProxyModel : public QSortFilterProxyModel {
return m_sourceModel;
}
+ QModelIndex getNextPreviousUnreadItemIndex(int default_row);
+
// Maps list of indexes.
QModelIndexList mapListToSource(const QModelIndexList &indexes);
QModelIndexList mapListFromSource(const QModelIndexList &indexes, bool deep = false);
@@ -44,6 +46,8 @@ class MessagesProxyModel : public QSortFilterProxyModel {
QModelIndexList match(const QModelIndex &start, int role, const QVariant &entered_value, int hits, Qt::MatchFlags flags) const;
private:
+ QModelIndex getNextUnreadItemIndex(int default_row, int max_row);
+
// Compares two rows of data.
bool lessThan(const QModelIndex &left, const QModelIndex &right) const;
diff --git a/src/gui/dialogs/formmain.cpp b/src/gui/dialogs/formmain.cpp
index 349794e44..226f0c638 100755
--- a/src/gui/dialogs/formmain.cpp
+++ b/src/gui/dialogs/formmain.cpp
@@ -135,6 +135,7 @@ QList FormMain::allActions() {
actions << m_ui->m_actionSelectPreviousItem;
actions << m_ui->m_actionSelectNextMessage;
actions << m_ui->m_actionSelectPreviousMessage;
+ actions << m_ui->m_actionSelectNextUnreadMessage;
actions << m_ui->m_actionExpandCollapseItem;
return actions;
@@ -361,6 +362,7 @@ void FormMain::setupIcons() {
m_ui->m_actionSelectPreviousItem->setIcon(icon_theme_factory->fromTheme(QSL("go-up")));
m_ui->m_actionSelectNextMessage->setIcon(icon_theme_factory->fromTheme(QSL("go-down")));
m_ui->m_actionSelectPreviousMessage->setIcon(icon_theme_factory->fromTheme(QSL("go-up")));
+ m_ui->m_actionSelectNextUnreadMessage->setIcon(icon_theme_factory->fromTheme(QSL("mail-mark-unread")));
m_ui->m_actionShowOnlyUnreadItems->setIcon(icon_theme_factory->fromTheme(QSL("mail-mark-unread")));
m_ui->m_actionExpandCollapseItem->setIcon(icon_theme_factory->fromTheme(QSL("expand-collapse")));
m_ui->m_actionRestoreSelectedMessages->setIcon(icon_theme_factory->fromTheme(QSL("recycle-bin-restore-one")));
diff --git a/src/gui/dialogs/formmain.ui b/src/gui/dialogs/formmain.ui
index 8a15ea446..fe4f645ce 100755
--- a/src/gui/dialogs/formmain.ui
+++ b/src/gui/dialogs/formmain.ui
@@ -125,7 +125,7 @@