From 38880d99a159fd670915d910bcb2c4280b3efc51 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Fri, 19 Dec 2008 11:01:59 +0100 Subject: [PATCH] Naming++ --- src/qtui/chatmonitorfilter.cpp | 44 ++++++++++++++++++---------------- src/qtui/chatmonitorfilter.h | 12 +++++----- 2 files changed, 30 insertions(+), 26 deletions(-) diff --git a/src/qtui/chatmonitorfilter.cpp b/src/qtui/chatmonitorfilter.cpp index e51b2cd9..bbf39189 100644 --- a/src/qtui/chatmonitorfilter.cpp +++ b/src/qtui/chatmonitorfilter.cpp @@ -29,25 +29,25 @@ ChatMonitorFilter::ChatMonitorFilter(MessageModel *model, QObject *parent) : MessageFilter(model, parent) { ChatViewSettings viewSettings(idString()); - _showFields = viewSettings.value("showFields", AllFields).toInt(); - _showOwnMessages = viewSettings.value("showOwnMsgs", true).toBool(); - viewSettings.notify("showFields", this, SLOT(showFieldsSettingsChanged(const QVariant &))); - viewSettings.notify("showOwnMsgs", this, SLOT(showOwnMessagesSettingChanged(const QVariant &))); + _showFields = viewSettings.value("ShowFields", AllFields).toInt(); + _showOwnMessages = viewSettings.value("ShowOwnMsgs", true).toBool(); + viewSettings.notify("ShowFields", this, SLOT(showFieldsSettingChanged(const QVariant &))); + viewSettings.notify("ShowOwnMsgs", this, SLOT(showOwnMessagesSettingChanged(const QVariant &))); // ChatMonitorSettingsPage - QString highlightAlwaysSettingsId = "HighlightAlways"; + QString showHighlightsSettingsId = "ShowHighlights"; QString operationModeSettingsId = "OperationMode"; QString buffersSettingsId = "Buffers"; - _highlightAlways = viewSettings.value(highlightAlwaysSettingsId, false).toBool(); + _showHighlights = viewSettings.value(showHighlightsSettingsId, false).toBool(); _operationMode = viewSettings.value(operationModeSettingsId, 0).toInt(); // read configured list of buffers to monitor/ignore foreach(QVariant v, viewSettings.value(buffersSettingsId, QVariant()).toList()) _bufferIds << v.value(); - viewSettings.notify(highlightAlwaysSettingsId, this, SLOT(highlightAlwaysSettingsChanged(const QVariant &))); - viewSettings.notify(operationModeSettingsId, this, SLOT(operationModeSettingsChanged(const QVariant &))); - viewSettings.notify(buffersSettingsId, this, SLOT(buffersSettingsChanged(const QVariant &))); + viewSettings.notify(showHighlightsSettingsId, this, SLOT(showHighlightsSettingChanged(const QVariant &))); + viewSettings.notify(operationModeSettingsId, this, SLOT(operationModeSettingChanged(const QVariant &))); + viewSettings.notify(buffersSettingsId, this, SLOT(buffersSettingChanged(const QVariant &))); } bool ChatMonitorFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const { @@ -62,9 +62,13 @@ bool ChatMonitorFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourc return false; // ChatMonitorSettingsPage - if (_operationMode == ChatViewSettings::OptOut && !(_highlightAlways && flags & Message::Highlight) && _bufferIds.contains(sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::BufferIdRole).value())) + if(_operationMode == ChatViewSettings::OptOut + && !(_showHighlights && flags & Message::Highlight) + && _bufferIds.contains(sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::BufferIdRole).value())) return false; - if (_operationMode == ChatViewSettings::OptIn && !(_highlightAlways && flags & Message::Highlight) && !_bufferIds.contains(sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::BufferIdRole).value())) + if(_operationMode == ChatViewSettings::OptIn + && !(_showHighlights && flags & Message::Highlight) + && !_bufferIds.contains(sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::BufferIdRole).value())) return false; return true; @@ -103,30 +107,30 @@ void ChatMonitorFilter::addShowField(int field) { if(_showFields & field) return; - ChatViewSettings(idString()).setValue("showFields", _showFields | field); + ChatViewSettings(idString()).setValue("ShowFields", _showFields | field); } void ChatMonitorFilter::removeShowField(int field) { if(!(_showFields & field)) return; - ChatViewSettings(idString()).setValue("showFields", _showFields ^ field); + ChatViewSettings(idString()).setValue("ShowFields", _showFields ^ field); } void ChatMonitorFilter::setShowOwnMessages(bool show) { if(_showOwnMessages == show) return; - ChatViewSettings(idString()).setValue("showOwnMsgs", show); + ChatViewSettings(idString()).setValue("ShowOwnMsgs", show); } -void ChatMonitorFilter::showFieldsSettingsChanged(const QVariant &newValue) { +void ChatMonitorFilter::showFieldsSettingChanged(const QVariant &newValue) { int newFields = newValue.toInt(); if(_showFields == newFields) return; _showFields = newFields; - + int rows = rowCount(); if(rows == 0) return; @@ -138,15 +142,15 @@ void ChatMonitorFilter::showOwnMessagesSettingChanged(const QVariant &newValue) _showOwnMessages = newValue.toBool(); } -void ChatMonitorFilter::highlightAlwaysSettingsChanged(const QVariant &newValue) { - _highlightAlways = newValue.toBool(); +void ChatMonitorFilter::showHighlightsSettingChanged(const QVariant &newValue) { + _showHighlights = newValue.toBool(); } -void ChatMonitorFilter::operationModeSettingsChanged(const QVariant &newValue) { +void ChatMonitorFilter::operationModeSettingChanged(const QVariant &newValue) { _operationMode = newValue.toInt(); } -void ChatMonitorFilter::buffersSettingsChanged(const QVariant &newValue) { +void ChatMonitorFilter::buffersSettingChanged(const QVariant &newValue) { _bufferIds.clear(); foreach (QVariant v, newValue.toList()) { _bufferIds << v.value(); diff --git a/src/qtui/chatmonitorfilter.h b/src/qtui/chatmonitorfilter.h index 75016636..154ce92c 100644 --- a/src/qtui/chatmonitorfilter.h +++ b/src/qtui/chatmonitorfilter.h @@ -34,7 +34,7 @@ public: NetworkField = 0x01, BufferField = 0x02, SenderField = 0x04, - AllFields = 0xFF + AllFields = 0xff }; ChatMonitorFilter(MessageModel *model, QObject *parent = 0); @@ -52,17 +52,17 @@ public slots: void setShowOwnMessages(bool show); private slots: - void showFieldsSettingsChanged(const QVariant &newValue); + void showFieldsSettingChanged(const QVariant &newValue); void showOwnMessagesSettingChanged(const QVariant &newValue); - void highlightAlwaysSettingsChanged(const QVariant &newValue); - void operationModeSettingsChanged(const QVariant &newValue); - void buffersSettingsChanged(const QVariant &newValue); + void showHighlightsSettingChanged(const QVariant &newValue); + void operationModeSettingChanged(const QVariant &newValue); + void buffersSettingChanged(const QVariant &newValue); private: int _showFields; bool _showOwnMessages; QList _bufferIds; - bool _highlightAlways; + bool _showHighlights; int _operationMode; }; -- 2.20.1