544 lines
20 KiB
C++
Executable File
544 lines
20 KiB
C++
Executable File
// This file is part of RSS Guard.
|
|
//
|
|
// Copyright (C) 2011-2016 by Martin Rotter <rotter.martinos@gmail.com>
|
|
//
|
|
// RSS Guard is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// RSS Guard is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with RSS Guard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "gui/messagesview.h"
|
|
|
|
#include "core/messagesproxymodel.h"
|
|
#include "core/messagesmodel.h"
|
|
#include "miscellaneous/settings.h"
|
|
#include "network-web/networkfactory.h"
|
|
#include "network-web/webfactory.h"
|
|
#include "gui/dialogs/formmain.h"
|
|
#include "gui/messagebox.h"
|
|
#include "gui/webbrowser.h"
|
|
#include "gui/styleditemdelegatewithoutfocus.h"
|
|
|
|
#include <QKeyEvent>
|
|
#include <QScrollBar>
|
|
#include <QTimer>
|
|
#include <QMenu>
|
|
|
|
|
|
MessagesView::MessagesView(QWidget *parent)
|
|
: QTreeView(parent),
|
|
m_contextMenu(nullptr),
|
|
m_columnsAdjusted(false),
|
|
m_batchUnreadSwitch(false) {
|
|
m_proxyModel = new MessagesProxyModel(this);
|
|
m_sourceModel = m_proxyModel->sourceModel();
|
|
|
|
// Forward count changes to the view.
|
|
createConnections();
|
|
setModel(m_proxyModel);
|
|
setupAppearance();
|
|
}
|
|
|
|
MessagesView::~MessagesView() {
|
|
qDebug("Destroying MessagesView instance.");
|
|
}
|
|
|
|
void MessagesView::createConnections() {
|
|
connect(this, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(openSelectedSourceMessagesExternally()));
|
|
|
|
// Adjust columns when layout gets changed.
|
|
connect(header(), SIGNAL(geometriesChanged()), this, SLOT(adjustColumns()));
|
|
connect(header(), SIGNAL(sortIndicatorChanged(int,Qt::SortOrder)), this, SLOT(onSortIndicatorChanged(int,Qt::SortOrder)));
|
|
}
|
|
|
|
void MessagesView::keyboardSearch(const QString &search) {
|
|
// WARNING: This is quite hacky way how to force selection of next item even
|
|
// with extended selection enabled.
|
|
setSelectionMode(QAbstractItemView::SingleSelection);
|
|
QTreeView::keyboardSearch(search);
|
|
setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
}
|
|
|
|
void MessagesView::reloadSelections(bool mark_current_index_read) {
|
|
QDateTime dt1 = QDateTime::currentDateTime();
|
|
|
|
QModelIndex current_index = selectionModel()->currentIndex();
|
|
const QModelIndex mapped_current_index = m_proxyModel->mapToSource(current_index);
|
|
QModelIndexList selected_indexes = selectionModel()->selectedRows();
|
|
const QModelIndexList mapped_indexes = m_proxyModel->mapListToSource(selected_indexes);
|
|
const int col = qApp->settings()->value(GROUP(GUI), SETTING(GUI::DefaultSortColumnMessages)).toInt();
|
|
const Qt::SortOrder ord = static_cast<Qt::SortOrder>(qApp->settings()->value(GROUP(GUI), SETTING(GUI::DefaultSortOrderMessages)).toInt());
|
|
|
|
// Reload the model now.
|
|
m_sourceModel->sort(col, ord);
|
|
|
|
selected_indexes = m_proxyModel->mapListFromSource(mapped_indexes, true);
|
|
current_index = m_proxyModel->mapFromSource(m_sourceModel->index(mapped_current_index.row(), mapped_current_index.column()));
|
|
|
|
if (current_index.isValid()) {
|
|
if (!mark_current_index_read) {
|
|
// User selected to mark some messages as unread, if one
|
|
// of them will be marked as current, then it will be read again.
|
|
m_batchUnreadSwitch = true;
|
|
}
|
|
|
|
setCurrentIndex(current_index);
|
|
scrollTo(current_index);
|
|
reselectIndexes(selected_indexes);
|
|
m_batchUnreadSwitch = false;
|
|
}
|
|
else {
|
|
// Messages were probably removed from the model, nothing can
|
|
// be selected and no message can be displayed.
|
|
emit currentMessageRemoved();
|
|
}
|
|
|
|
QDateTime dt2 = QDateTime::currentDateTime();
|
|
|
|
qDebug("Reloading of msg selections took %lld miliseconds.", dt1.msecsTo(dt2));
|
|
}
|
|
|
|
void MessagesView::setupAppearance() {
|
|
setUniformRowHeights(true);
|
|
setAcceptDrops(false);
|
|
setDragEnabled(false);
|
|
setDragDropMode(QAbstractItemView::NoDragDrop);
|
|
setExpandsOnDoubleClick(false);
|
|
setRootIsDecorated(false);
|
|
setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
setItemsExpandable(false);
|
|
setSortingEnabled(true);
|
|
setAllColumnsShowFocus(false);
|
|
setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
setItemDelegate(new StyledItemDelegateWithoutFocus(this));
|
|
header()->setDefaultSectionSize(MESSAGES_VIEW_DEFAULT_COL);
|
|
header()->setStretchLastSection(false);
|
|
header()->setSortIndicatorShown(false);
|
|
}
|
|
|
|
void MessagesView::keyPressEvent(QKeyEvent *event) {
|
|
QTreeView::keyPressEvent(event);
|
|
|
|
if (event->key() == Qt::Key_Delete) {
|
|
deleteSelectedMessages();
|
|
}
|
|
}
|
|
|
|
void MessagesView::contextMenuEvent(QContextMenuEvent *event) {
|
|
const QModelIndex clicked_index = indexAt(event->pos());
|
|
|
|
if (!clicked_index.isValid()) {
|
|
qDebug("Context menu for MessagesView will not be shown because user clicked on invalid item.");
|
|
return;
|
|
}
|
|
|
|
// Context menu is not initialized, initialize.
|
|
initializeContextMenu();
|
|
|
|
m_contextMenu->exec(event->globalPos());
|
|
}
|
|
|
|
void MessagesView::initializeContextMenu() {
|
|
if (m_contextMenu == nullptr) {
|
|
m_contextMenu = new QMenu(tr("Context menu for messages"), this);
|
|
}
|
|
|
|
m_contextMenu->clear();
|
|
m_contextMenu->addActions(QList<QAction*>() <<
|
|
qApp->mainForm()->m_ui->m_actionSendMessageViaEmail <<
|
|
qApp->mainForm()->m_ui->m_actionOpenSelectedSourceArticlesExternally <<
|
|
qApp->mainForm()->m_ui->m_actionOpenSelectedMessagesInternally <<
|
|
qApp->mainForm()->m_ui->m_actionMarkSelectedMessagesAsRead <<
|
|
qApp->mainForm()->m_ui->m_actionMarkSelectedMessagesAsUnread <<
|
|
qApp->mainForm()->m_ui->m_actionSwitchImportanceOfSelectedMessages <<
|
|
qApp->mainForm()->m_ui->m_actionDeleteSelectedMessages);
|
|
|
|
if (m_sourceModel->loadedItem() != nullptr && m_sourceModel->loadedItem()->kind() == RootItemKind::Bin) {
|
|
m_contextMenu->addAction(qApp->mainForm()->m_ui->m_actionRestoreSelectedMessages);
|
|
}
|
|
}
|
|
|
|
void MessagesView::mousePressEvent(QMouseEvent *event) {
|
|
QTreeView::mousePressEvent(event);
|
|
|
|
switch (event->button()) {
|
|
case Qt::LeftButton: {
|
|
// Make sure that message importance is switched when user
|
|
// clicks the "important" column.
|
|
const QModelIndex clicked_index = indexAt(event->pos());
|
|
|
|
if (clicked_index.isValid()) {
|
|
const QModelIndex mapped_index = m_proxyModel->mapToSource(clicked_index);
|
|
|
|
if (mapped_index.column() == MSG_DB_IMPORTANT_INDEX) {
|
|
m_sourceModel->switchMessageImportance(mapped_index.row());
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case Qt::MiddleButton: {
|
|
// Make sure that message importance is switched when user
|
|
// clicks the "important" column.
|
|
const QModelIndex clicked_index = indexAt(event->pos());
|
|
|
|
if (clicked_index.isValid()) {
|
|
const QModelIndex mapped_index = m_proxyModel->mapToSource(clicked_index);
|
|
const QString url = m_sourceModel->messageAt(mapped_index.row()).m_url;
|
|
|
|
if (!url.isEmpty()) {
|
|
qApp->mainForm()->tabWidget()->addLinkedBrowser(url);
|
|
}
|
|
}
|
|
|
|
|
|
break;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
void MessagesView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) {
|
|
const QModelIndexList selected_rows = selectionModel()->selectedRows();
|
|
const QModelIndex current_index = currentIndex();
|
|
const QModelIndex mapped_current_index = m_proxyModel->mapToSource(current_index);
|
|
|
|
qDebug("Current row changed - row [%d,%d] source [%d, %d].",
|
|
current_index.row(), current_index.column(),
|
|
mapped_current_index.row(), mapped_current_index.column());
|
|
|
|
if (mapped_current_index.isValid() && selected_rows.count() == 1) {
|
|
Message message = m_sourceModel->messageAt(m_proxyModel->mapToSource(selected_rows.at(0)).row());
|
|
|
|
if (!m_batchUnreadSwitch) {
|
|
// Set this message as read only if current item
|
|
// wasn't changed by "mark selected messages unread" action.
|
|
m_sourceModel->setMessageRead(mapped_current_index.row(), RootItem::Read);
|
|
message.m_isRead = true;
|
|
}
|
|
|
|
emit currentMessageChanged(message, m_sourceModel->loadedItem());
|
|
}
|
|
else {
|
|
emit currentMessageRemoved();
|
|
}
|
|
|
|
if (qApp->settings()->value(GROUP(Messages), SETTING(Messages::KeepCursorInCenter)).toBool()) {
|
|
scrollTo(currentIndex(), QAbstractItemView::PositionAtCenter);
|
|
}
|
|
|
|
QTreeView::selectionChanged(selected, deselected);
|
|
}
|
|
|
|
void MessagesView::loadItem(RootItem *item) {
|
|
const int col = qApp->settings()->value(GROUP(GUI), SETTING(GUI::DefaultSortColumnMessages)).toInt();
|
|
const Qt::SortOrder ord = static_cast<Qt::SortOrder>(qApp->settings()->value(GROUP(GUI), SETTING(GUI::DefaultSortOrderMessages)).toInt());
|
|
|
|
scrollToTop();
|
|
m_sourceModel->setSort(col, ord);
|
|
m_sourceModel->loadMessages(item);
|
|
|
|
// Messages are loaded, make sure that previously
|
|
// active message is not shown in browser.
|
|
// BUG: Qt 5 is probably bugged here. Selections
|
|
// should be cleared automatically when SQL model is reset.
|
|
emit currentMessageRemoved();
|
|
}
|
|
|
|
void MessagesView::openSelectedSourceMessagesExternally() {
|
|
foreach (const QModelIndex &index, selectionModel()->selectedRows()) {
|
|
const QString link = m_sourceModel->messageAt(m_proxyModel->mapToSource(index).row()).m_url;
|
|
|
|
if (!WebFactory::instance()->openUrlInExternalBrowser(link)) {
|
|
qApp->showGuiMessage(tr("Problem with starting external web browser"),
|
|
tr("External web browser could not be started."),
|
|
QSystemTrayIcon::Critical);
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Finally, mark opened messages as read.
|
|
if (!selectionModel()->selectedRows().isEmpty()) {
|
|
QTimer::singleShot(0, this, SLOT(markSelectedMessagesRead()));
|
|
}
|
|
}
|
|
|
|
void MessagesView::openSelectedMessagesInternally() {
|
|
QList<Message> messages;
|
|
|
|
foreach (const QModelIndex &index, selectionModel()->selectedRows()) {
|
|
messages << m_sourceModel->messageAt(m_proxyModel->mapToSource(index).row());
|
|
}
|
|
|
|
if (!messages.isEmpty()) {
|
|
emit openMessagesInNewspaperView(m_sourceModel->loadedItem(), messages);
|
|
}
|
|
}
|
|
|
|
void MessagesView::sendSelectedMessageViaEmail() {
|
|
if (selectionModel()->selectedRows().size() == 1) {
|
|
const Message message = m_sourceModel->messageAt(m_proxyModel->mapToSource(selectionModel()->selectedRows().at(0)).row());
|
|
|
|
if (!WebFactory::instance()->sendMessageViaEmail(message)) {
|
|
MessageBox::show(this,
|
|
QMessageBox::Critical,
|
|
tr("Problem with starting external e-mail client"),
|
|
tr("External e-mail client could not be started."));
|
|
}
|
|
}
|
|
}
|
|
|
|
void MessagesView::markSelectedMessagesRead() {
|
|
setSelectedMessagesReadStatus(RootItem::Read);
|
|
}
|
|
|
|
void MessagesView::markSelectedMessagesUnread() {
|
|
setSelectedMessagesReadStatus(RootItem::Unread);
|
|
}
|
|
|
|
void MessagesView::setSelectedMessagesReadStatus(RootItem::ReadStatus read) {
|
|
QModelIndex current_index = selectionModel()->currentIndex();
|
|
|
|
if (!current_index.isValid()) {
|
|
return;
|
|
}
|
|
|
|
const QModelIndex mapped_current_index = m_proxyModel->mapToSource(current_index);
|
|
QModelIndexList selected_indexes = selectionModel()->selectedRows();
|
|
const QModelIndexList mapped_indexes = m_proxyModel->mapListToSource(selected_indexes);
|
|
|
|
m_sourceModel->setBatchMessagesRead(mapped_indexes, read);
|
|
|
|
selected_indexes = m_proxyModel->mapListFromSource(mapped_indexes, true);
|
|
current_index = m_proxyModel->mapFromSource(m_sourceModel->index(mapped_current_index.row(), mapped_current_index.column()));
|
|
|
|
if (read == RootItem::Unread) {
|
|
// User selected to mark some messages as unread, if one
|
|
// of them will be marked as current, then it will be read again.
|
|
m_batchUnreadSwitch = true;
|
|
}
|
|
|
|
setCurrentIndex(current_index);
|
|
scrollTo(current_index);
|
|
reselectIndexes(selected_indexes);
|
|
m_batchUnreadSwitch = false;
|
|
}
|
|
|
|
void MessagesView::deleteSelectedMessages() {
|
|
const QModelIndex current_index = selectionModel()->currentIndex();
|
|
|
|
if (!current_index.isValid()) {
|
|
return;
|
|
}
|
|
|
|
const QModelIndexList selected_indexes = selectionModel()->selectedRows();
|
|
const QModelIndexList mapped_indexes = m_proxyModel->mapListToSource(selected_indexes);
|
|
|
|
m_sourceModel->setBatchMessagesDeleted(mapped_indexes);
|
|
|
|
const int row_count = m_proxyModel->rowCount();
|
|
|
|
if (row_count > 0) {
|
|
const QModelIndex last_item = current_index.row() < row_count ?
|
|
m_proxyModel->index(current_index.row(), MSG_DB_TITLE_INDEX) :
|
|
m_proxyModel->index(row_count - 1, MSG_DB_TITLE_INDEX);
|
|
|
|
setCurrentIndex(last_item);
|
|
scrollTo(last_item);
|
|
reselectIndexes(QModelIndexList() << last_item);
|
|
}
|
|
else {
|
|
emit currentMessageRemoved();
|
|
}
|
|
}
|
|
|
|
void MessagesView::restoreSelectedMessages() {
|
|
const QModelIndex current_index = selectionModel()->currentIndex();
|
|
|
|
if (!current_index.isValid()) {
|
|
return;
|
|
}
|
|
|
|
const QModelIndexList selected_indexes = selectionModel()->selectedRows();
|
|
const QModelIndexList mapped_indexes = m_proxyModel->mapListToSource(selected_indexes);
|
|
|
|
m_sourceModel->setBatchMessagesRestored(mapped_indexes);
|
|
|
|
const int row_count = m_sourceModel->rowCount();
|
|
|
|
if (row_count > 0) {
|
|
const QModelIndex last_item = current_index.row() < row_count ?
|
|
m_proxyModel->index(current_index.row(), MSG_DB_TITLE_INDEX) :
|
|
m_proxyModel->index(row_count - 1, MSG_DB_TITLE_INDEX);
|
|
|
|
setCurrentIndex(last_item);
|
|
scrollTo(last_item);
|
|
reselectIndexes(QModelIndexList() << last_item);
|
|
}
|
|
else {
|
|
emit currentMessageRemoved();
|
|
}
|
|
}
|
|
|
|
void MessagesView::switchSelectedMessagesImportance() {
|
|
QModelIndex current_index = selectionModel()->currentIndex();
|
|
|
|
if (!current_index.isValid()) {
|
|
return;
|
|
}
|
|
|
|
const QModelIndex mapped_current_index = m_proxyModel->mapToSource(current_index);
|
|
QModelIndexList selected_indexes = selectionModel()->selectedRows();
|
|
const QModelIndexList mapped_indexes = m_proxyModel->mapListToSource(selected_indexes);
|
|
|
|
m_sourceModel->switchBatchMessageImportance(mapped_indexes);
|
|
|
|
selected_indexes = m_proxyModel->mapListFromSource(mapped_indexes, true);
|
|
current_index = m_proxyModel->mapFromSource(m_sourceModel->index(mapped_current_index.row(),
|
|
mapped_current_index.column()));
|
|
|
|
m_batchUnreadSwitch = true;
|
|
setCurrentIndex(current_index);
|
|
scrollTo(current_index);
|
|
reselectIndexes(selected_indexes);
|
|
m_batchUnreadSwitch = false;
|
|
}
|
|
|
|
void MessagesView::reselectIndexes(const QModelIndexList &indexes) {
|
|
if (indexes.size() < RESELECT_MESSAGE_THRESSHOLD) {
|
|
QItemSelection selection;
|
|
|
|
foreach (const QModelIndex &index, indexes) {
|
|
selection.merge(QItemSelection(index, index), QItemSelectionModel::Select);
|
|
}
|
|
|
|
selectionModel()->select(selection, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
|
|
}
|
|
}
|
|
|
|
void MessagesView::selectNextItem() {
|
|
const QModelIndex index_next = moveCursor(QAbstractItemView::MoveDown, Qt::NoModifier);
|
|
|
|
if (index_next.isValid()) {
|
|
setCurrentIndex(index_next);
|
|
selectionModel()->select(index_next, QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
|
setFocus();
|
|
}
|
|
}
|
|
|
|
void MessagesView::selectPreviousItem() {
|
|
const QModelIndex index_previous = moveCursor(QAbstractItemView::MoveUp, Qt::NoModifier);
|
|
|
|
if (index_previous.isValid()) {
|
|
setCurrentIndex(index_previous);
|
|
selectionModel()->select(index_previous, QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
|
setFocus();
|
|
}
|
|
}
|
|
|
|
void MessagesView::selectNextUnreadItem() {
|
|
// FIXME: Use this to solve #112.
|
|
|
|
const QModelIndexList selected_rows = selectionModel()->selectedRows();
|
|
int active_row;
|
|
|
|
if (!selected_rows.isEmpty()) {
|
|
// Okay, something is selected, start from it.
|
|
active_row = selected_rows.at(0).row();
|
|
}
|
|
else {
|
|
active_row = 0;
|
|
}
|
|
|
|
const QModelIndex next_unread = m_proxyModel->getNextPreviousUnreadItemIndex(active_row);
|
|
|
|
if (next_unread.isValid()) {
|
|
// We found unread message, mark it.
|
|
setCurrentIndex(next_unread);
|
|
selectionModel()->select(next_unread, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
|
|
setFocus();
|
|
}
|
|
}
|
|
|
|
void MessagesView::searchMessages(const QString &pattern) {
|
|
m_proxyModel->setFilterRegExp(pattern);
|
|
|
|
if (selectionModel()->selectedRows().size() == 0) {
|
|
emit currentMessageRemoved();
|
|
}
|
|
else {
|
|
// Scroll to selected message, it could become scrolled out due to filter change.
|
|
scrollTo(selectionModel()->selectedRows().at(0));
|
|
}
|
|
}
|
|
|
|
void MessagesView::filterMessages(MessagesModel::MessageHighlighter filter) {
|
|
m_sourceModel->highlightMessages(filter);
|
|
}
|
|
|
|
void MessagesView::createNewspaperView(RootItem *selected_item, const QList<Message> &messages) {
|
|
WebBrowser *prev = new WebBrowser(this);
|
|
int index = qApp->mainForm()->tabWidget()->addTab(prev,
|
|
qApp->icons()->fromTheme(QSL("text-x-script")),
|
|
tr("Newspaper view"),
|
|
TabBar::Closable);
|
|
|
|
qApp->mainForm()->tabWidget()->setCurrentIndex(index);
|
|
prev->loadMessages(messages, selected_item);
|
|
}
|
|
|
|
void MessagesView::adjustColumns() {
|
|
if (header()->count() > 0 && !m_columnsAdjusted) {
|
|
m_columnsAdjusted = true;
|
|
|
|
// Setup column resize strategies.
|
|
header()->setSectionResizeMode(MSG_DB_ID_INDEX, QHeaderView::Interactive);
|
|
header()->setSectionResizeMode(MSG_DB_READ_INDEX, QHeaderView::ResizeToContents);
|
|
header()->setSectionResizeMode(MSG_DB_DELETED_INDEX, QHeaderView::Interactive);
|
|
header()->setSectionResizeMode(MSG_DB_IMPORTANT_INDEX, QHeaderView::ResizeToContents);
|
|
header()->setSectionResizeMode(MSG_DB_FEED_INDEX, QHeaderView::Interactive);
|
|
header()->setSectionResizeMode(MSG_DB_TITLE_INDEX, QHeaderView::Stretch);
|
|
header()->setSectionResizeMode(MSG_DB_URL_INDEX, QHeaderView::Interactive);
|
|
header()->setSectionResizeMode(MSG_DB_AUTHOR_INDEX, QHeaderView::Interactive);
|
|
header()->setSectionResizeMode(MSG_DB_DCREATED_INDEX, QHeaderView::Interactive);
|
|
header()->setSectionResizeMode(MSG_DB_CONTENTS_INDEX, QHeaderView::Interactive);
|
|
header()->setSectionResizeMode(MSG_DB_PDELETED_INDEX, QHeaderView::Interactive);
|
|
|
|
// Hide columns.
|
|
hideColumn(MSG_DB_ID_INDEX);
|
|
hideColumn(MSG_DB_DELETED_INDEX);
|
|
hideColumn(MSG_DB_FEED_INDEX);
|
|
hideColumn(MSG_DB_URL_INDEX);
|
|
hideColumn(MSG_DB_CONTENTS_INDEX);
|
|
hideColumn(MSG_DB_PDELETED_INDEX);
|
|
hideColumn(MSG_DB_ENCLOSURES_INDEX);
|
|
hideColumn(MSG_DB_ACCOUNT_ID_INDEX);
|
|
hideColumn(MSG_DB_CUSTOM_ID_INDEX);
|
|
hideColumn(MSG_DB_CUSTOM_HASH_INDEX);
|
|
|
|
qDebug("Adjusting column resize modes for MessagesView.");
|
|
}
|
|
}
|
|
|
|
void MessagesView::onSortIndicatorChanged(int column, Qt::SortOrder order) {
|
|
// Save current setup.
|
|
qApp->settings()->setValue(GROUP(GUI), GUI::DefaultSortColumnMessages, column);
|
|
qApp->settings()->setValue(GROUP(GUI), GUI::DefaultSortOrderMessages, order);
|
|
qApp->settings()->sync();
|
|
|
|
// Repopulate the shit.
|
|
m_sourceModel->sort(column, order);
|
|
emit currentMessageRemoved();
|
|
}
|