From 8092177fa86de41ba713c2f68f17f6da7fc4a38c Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Mon, 9 Dec 2013 16:05:16 +0100 Subject: [PATCH] cascsa --- src/gui/dynamicshortcutswidget.cpp | 6 +- src/gui/formsettings.cpp | 41 ++++++++++---- src/gui/formsettings.h | 8 ++- src/gui/formsettings.ui | 89 +++++++++++++++--------------- src/gui/messagesview.cpp | 4 ++ src/gui/shortcutcatcher.h | 2 + 6 files changed, 87 insertions(+), 63 deletions(-) diff --git a/src/gui/dynamicshortcutswidget.cpp b/src/gui/dynamicshortcutswidget.cpp index 9e362cb29..8b42bb8fa 100644 --- a/src/gui/dynamicshortcutswidget.cpp +++ b/src/gui/dynamicshortcutswidget.cpp @@ -2,9 +2,11 @@ #include #include #include +#include #include "gui/dynamicshortcutswidget.h" #include "gui/shortcutcatcher.h" +#include "gui/shortcutbutton.h" DynamicShortcutsWidget::DynamicShortcutsWidget(QWidget *parent) : QWidget(parent) { @@ -26,8 +28,8 @@ bool DynamicShortcutsWidget::areShortcutsUnique() { foreach (const ActionBinding &binding, m_actionBindings) { QKeySequence new_shortcut = binding.second->shortcut(); - if (all_shortcuts.contains(new_shortcut)) { - // Problem, two identical shortcuts found. + if (all_shortcuts.contains(new_shortcut) && !new_shortcut.isEmpty()) { + // Problem, two identical non-empty shortcuts found. return false; } else { diff --git a/src/gui/formsettings.cpp b/src/gui/formsettings.cpp index 17835f562..2515efb5e 100644 --- a/src/gui/formsettings.cpp +++ b/src/gui/formsettings.cpp @@ -81,6 +81,8 @@ FormSettings::FormSettings(QWidget *parent) : QDialog(parent), m_ui(new Ui::Form this, SLOT(changeBrowserProgressColor())); connect(m_ui->m_treeSkins, SIGNAL(currentItemChanged(QTreeWidgetItem*,QTreeWidgetItem*)), this, SLOT(onSkinSelected(QTreeWidgetItem*,QTreeWidgetItem*))); + connect(m_ui->m_cmbExternalBrowserPreset, SIGNAL(currentIndexChanged(int)), + this, SLOT(changeDefaultBrowserArguments(int))); // Load all settings. loadGeneral(); @@ -89,12 +91,19 @@ FormSettings::FormSettings(QWidget *parent) : QDialog(parent), m_ui(new Ui::Form loadProxy(); loadBrowser(); loadLanguage(); + loadFeedsMessages(); } FormSettings::~FormSettings() { delete m_ui; } +void FormSettings::changeDefaultBrowserArguments(int index) { + if (index != 0) { + m_ui->m_txtExternalBrowserArguments->setText(m_ui->m_cmbExternalBrowserPreset->itemData(index).toString()); + } +} + void FormSettings::onSkinSelected(QTreeWidgetItem *current, QTreeWidgetItem *previous) { Q_UNUSED(previous); @@ -114,6 +123,14 @@ void FormSettings::changeBrowserProgressColor() { m_initialSettings.m_webBrowserProgress = color_dialog.selectedColor(); } +void FormSettings::loadFeedsMessages() { + m_ui->m_cmbExternalBrowserPreset->addItem("Chromium", "aa %1"); +} + +void FormSettings::saveFeedsMessages() { + +} + void FormSettings::displayProxyPassword(int state) { if (state == Qt::Checked) { m_ui->m_txtProxyPassword->setEchoMode(QLineEdit::Normal); @@ -192,6 +209,7 @@ void FormSettings::saveSettings() { saveProxy(); saveBrowser(); saveLanguage(); + saveFeedsMessages(); Settings::getInstance()->checkSettings(); promptForRestart(); @@ -353,17 +371,17 @@ void FormSettings::loadGeneral() { // Load auto-start status. SystemFactory::AutoStartStatus autostart_status = SystemFactory::getAutoStartStatus(); switch (autostart_status) { - case SystemFactory::Enabled: - m_ui->m_checkAutostart->setChecked(true); - break; - case SystemFactory::Disabled: - m_ui->m_checkAutostart->setChecked(false); - break; - default: - m_ui->m_checkAutostart->setEnabled(false); - m_ui->m_checkAutostart->setText(m_ui->m_checkAutostart->text() + - tr(" (not supported on this platform)")); - break; + case SystemFactory::Enabled: + m_ui->m_checkAutostart->setChecked(true); + break; + case SystemFactory::Disabled: + m_ui->m_checkAutostart->setChecked(false); + break; + default: + m_ui->m_checkAutostart->setEnabled(false); + m_ui->m_checkAutostart->setText(m_ui->m_checkAutostart->text() + + tr(" (not supported on this platform)")); + break; } } @@ -455,7 +473,6 @@ void FormSettings::loadInterface() { m_ui->m_treeSkins->addTopLevelItem(new_item); if (skin.m_baseName == selected_skin) { - m_initialSettings.m_skin = selected_skin; m_ui->m_treeSkins->setCurrentItem(new_item); m_ui->m_lblActiveContents->setText(skin.m_visibleName); } diff --git a/src/gui/formsettings.h b/src/gui/formsettings.h index 8b01ffd17..c13a95b11 100644 --- a/src/gui/formsettings.h +++ b/src/gui/formsettings.h @@ -15,12 +15,10 @@ struct TemporarySettings { public: TemporarySettings() - : m_webBrowserProgress(QColor()), - m_skin(QString()) { + : m_webBrowserProgress(QColor()) { } QColor m_webBrowserProgress; - QString m_skin; }; class FormSettings : public QDialog { @@ -63,6 +61,10 @@ class FormSettings : public QDialog { void saveProxy(); void displayProxyPassword(int state); + void loadFeedsMessages(); + void saveFeedsMessages(); + void changeDefaultBrowserArguments(int index); + void onProxyTypeChanged(int index); private: diff --git a/src/gui/formsettings.ui b/src/gui/formsettings.ui index a0472afb5..672223611 100644 --- a/src/gui/formsettings.ui +++ b/src/gui/formsettings.ui @@ -147,8 +147,8 @@ 0 0 - 195 - 238 + 167 + 219 @@ -663,59 +663,23 @@ Messages + + QFormLayout::AllNonFixedFieldsGrow + External web browser for message viewing - - QFormLayout::AllNonFixedFieldsGrow - - - - Preset - - - - - - - - custom - - - - - Chromium - - - - - Google Chrome - - - - - Opera - - - - - Mozilla Firefox - - - - - Web browser executable - + @@ -729,15 +693,48 @@ - + - Executable arguments + Executable parameters - - + + + + + + + + + use sample arguments for + + + + + + + QComboBox::AdjustToContentsOnFirstShow + + + + select browser + + + + + + + + + + Note that "%1" (without quotation marks) is placeholder for URL of selected message. + + + Qt::AlignCenter + + diff --git a/src/gui/messagesview.cpp b/src/gui/messagesview.cpp index c24ed4a6f..adeeec0c8 100644 --- a/src/gui/messagesview.cpp +++ b/src/gui/messagesview.cpp @@ -99,6 +99,10 @@ void MessagesView::selectionChanged(const QItemSelection &selected, void MessagesView::keyPressEvent(QKeyEvent *event) { QTreeView::keyPressEvent(event); + + if (event->key() == Qt::Key_Delete) { + deleteSelectedMessages(); + } } void MessagesView::contextMenuEvent(QContextMenuEvent *event) { diff --git a/src/gui/shortcutcatcher.h b/src/gui/shortcutcatcher.h index 56586e8cc..454cea132 100644 --- a/src/gui/shortcutcatcher.h +++ b/src/gui/shortcutcatcher.h @@ -38,7 +38,9 @@ class ShortcutButton; class ShortcutCatcher : public QWidget { Q_OBJECT + friend class ShortcutButton; + friend class DynamicShortcutsWidget; public: // Constructors and destructors.