This commit is contained in:
Martin Rotter 2015-05-06 18:22:25 +02:00
parent 2977e1142c
commit c4504cca2e
6 changed files with 30 additions and 30 deletions

View File

@ -7,6 +7,8 @@ Added:
Fixed:
<ul>
<li>Keyboard shorcuts and toolbar editors now have alphabetically sorted actions. Toolbar editor switched from drag/drop to buttons. (issue
#110)</li>
<li>New constructs on source code level.</li>
<li>Many minor fixes, mainly code cleanup and refactoring.</li>
</ul>

View File

@ -23,30 +23,20 @@
#include <QDebug>
FeedDownloader::FeedDownloader(QObject *parent) : QObject(parent), m_updateAbortionRequested(false) {
FeedDownloader::FeedDownloader(QObject *parent) : QObject(parent) {
}
FeedDownloader::~FeedDownloader() {
qDebug("Destroying FeedDownloader instance.");
}
void FeedDownloader::updateFeeds(const QList<FeedsModelFeed*> &feeds) {
void FeedDownloader::updateFeeds(const QList<FeedsModelFeed*> &feeds) {
qDebug().nospace() << "Performing feed updates in thread: \'" << QThread::currentThreadId() << "\'.";
if (m_updateAbortionRequested) {
m_updateAbortionRequested = false;
}
// Job starts now.
emit started();
for (int i = 0, total = feeds.size(); i < total; i++) {
if (m_updateAbortionRequested) {
m_updateAbortionRequested = false;
qWarning("Interruption of feeds update process was requested. Interrupting it now.");
break;
}
feeds.at(i)->update();
qDebug("Made progress in feed updates: %d/%d (id of feed is %d).", i + 1, total, feeds.at(i)->id());
emit progress(feeds.at(i), i + 1, total);
@ -60,7 +50,3 @@ void FeedDownloader::updateFeeds(const QList<FeedsModelFeed*> &feeds) {
// can eventually quit.
emit finished();
}
void FeedDownloader::abortOngoingUpdate() {
m_updateAbortionRequested = true;
}

View File

@ -41,9 +41,6 @@ class FeedDownloader : public QObject {
// Appropriate signals are emitted.
void updateFeeds(const QList<FeedsModelFeed*> &feeds);
// Aborts ongoing message if there is any.
void abortOngoingUpdate();
signals:
// Emitted if feed updates started.
void started();
@ -57,9 +54,6 @@ class FeedDownloader : public QObject {
// and "total" number indicates total number of feeds
// which were in the initial queue.
void progress(FeedsModelFeed *feed, int current, int total);
private:
bool m_updateAbortionRequested;
};
#endif // FEEDDOWNLOADER_H

View File

@ -123,7 +123,6 @@ void FeedMessageViewer::quit() {
m_feedsView->quit();
qDebug("Quitting feed downloader thread.");
m_feedDownloader->abortOngoingUpdate();
m_feedDownloaderThread->quit();
m_feedDownloaderThread->wait();

View File

@ -20,6 +20,8 @@
#include "gui/basetoolbar.h"
#include "gui/formmain.h"
#include <QKeyEvent>
ToolBarEditor::ToolBarEditor(QWidget *parent)
: QWidget(parent), m_ui(new Ui::ToolBarEditor) {
@ -37,6 +39,10 @@ ToolBarEditor::ToolBarEditor(QWidget *parent)
connect(m_ui->m_listAvailableActions, SIGNAL(itemSelectionChanged()), this, SLOT(updateActionsAvailability()));
connect(m_ui->m_listActivatedActions, SIGNAL(itemSelectionChanged()), this, SLOT(updateActionsAvailability()));
connect(m_ui->m_listActivatedActions, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(deleteSelectedAction()));
connect(m_ui->m_listAvailableActions, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(addSelectedAction()));
m_ui->m_listActivatedActions->installEventFilter(this);
}
ToolBarEditor::~ToolBarEditor() {
@ -50,9 +56,7 @@ void ToolBarEditor::loadFromToolBar(BaseToolBar *tool_bar) {
QList<QAction*> available_actions = m_toolBar->availableActions();
foreach (QAction *action, activated_actions) {
QListWidgetItem *action_item = new QListWidgetItem(action->icon(),
action->text().replace('&', ""),
m_ui->m_listActivatedActions);
QListWidgetItem *action_item = new QListWidgetItem(action->icon(), action->text().replace('&', ""), m_ui->m_listActivatedActions);
if (action->isSeparator()) {
action_item->setData(Qt::UserRole, SEPARATOR_ACTION_NAME);
@ -73,9 +77,7 @@ void ToolBarEditor::loadFromToolBar(BaseToolBar *tool_bar) {
foreach (QAction *action, available_actions) {
if (!activated_actions.contains(action)) {
QListWidgetItem *action_item = new QListWidgetItem(action->icon(),
action->text().replace('&', ""),
m_ui->m_listAvailableActions);
QListWidgetItem *action_item = new QListWidgetItem(action->icon(), action->text().replace('&', ""), m_ui->m_listAvailableActions);
if (action->isSeparator()) {
action_item->setData(Qt::UserRole, SEPARATOR_ACTION_NAME);
@ -96,7 +98,8 @@ void ToolBarEditor::loadFromToolBar(BaseToolBar *tool_bar) {
}
m_ui->m_listAvailableActions->sortItems(Qt::AscendingOrder);
updateActionsAvailability();
m_ui->m_listAvailableActions->setCurrentRow(0);
m_ui->m_listActivatedActions->setCurrentRow(m_ui->m_listActivatedActions->count() >= 0 ? 0 : -1);
}
void ToolBarEditor::saveToolBar() {
@ -109,6 +112,19 @@ void ToolBarEditor::saveToolBar() {
m_toolBar->saveChangeableActions(action_names);
}
bool ToolBarEditor::eventFilter(QObject *object, QEvent *event) {
if (event->type() == QEvent::KeyPress) {
QKeyEvent *key_event = static_cast<QKeyEvent*>(event);
if (key_event->key() == Qt::Key_Delete) {
deleteSelectedAction();
return true;
}
}
return false;
}
void ToolBarEditor::updateActionsAvailability() {
m_ui->m_btnDeleteAllActions->setEnabled(m_ui->m_listActivatedActions->count() > 0);
m_ui->m_btnDeleteSelectedAction->setEnabled(m_ui->m_listActivatedActions->selectedItems().size() == 1);

View File

@ -49,6 +49,9 @@ class ToolBarEditor : public QWidget {
return m_ui->m_listAvailableActions;
}
protected:
bool eventFilter(QObject *object, QEvent *event);
private slots:
void updateActionsAvailability();