Move "Appearance" to "Interface" in settingspages
authorManuel Nickschas <sputnick@quassel-irc.org>
Wed, 12 Aug 2009 15:47:52 +0000 (17:47 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Wed, 12 Aug 2009 18:06:52 +0000 (20:06 +0200)
This makes more sense, as not all settings concern only the appearance of things.
It's more about how the interface looks and acts like.

src/qtui/settingspages/appearancesettingspage.cpp
src/qtui/settingspages/chatmonitorsettingspage.cpp
src/qtui/settingspages/chatviewsettingspage.cpp
src/qtui/settingspages/highlightsettingspage.cpp
src/qtui/settingspages/itemviewsettingspage.cpp
src/qtui/settingspages/notificationssettingspage.cpp

index 70cae91..ab39344 100644 (file)
@@ -35,7 +35,7 @@
 #include <QStyleFactory>
 
 AppearanceSettingsPage::AppearanceSettingsPage(QWidget *parent)
-  : SettingsPage(tr("Appearance"), QString(), parent),
+  : SettingsPage(tr("Interface"), QString(), parent),
   _fontsChanged(false)
 {
   ui.setupUi(this);
index 855c218..2a434c2 100644 (file)
@@ -32,7 +32,7 @@
 #include <QVariant>
 
 ChatMonitorSettingsPage::ChatMonitorSettingsPage(QWidget *parent)
-  : SettingsPage(tr("Appearance"), tr("Chat Monitor"), parent) {
+  : SettingsPage(tr("Interface"), tr("Chat Monitor"), parent) {
   ui.setupUi(this);
 
   ui.activateBuffer->setIcon(SmallIcon("go-next"));
index e2331a6..76780b1 100644 (file)
@@ -24,7 +24,7 @@
 #include "qtuistyle.h"
 
 ChatViewSettingsPage::ChatViewSettingsPage(QWidget *parent)
-  : SettingsPage(tr("Appearance"), tr("Chat View"), parent)
+  : SettingsPage(tr("Interface"), tr("Chat View"), parent)
 {
   ui.setupUi(this);
 
index c247925..c122a82 100644 (file)
@@ -27,7 +27,7 @@
 
 
 HighlightSettingsPage::HighlightSettingsPage(QWidget *parent)
-  : SettingsPage(tr("Appearance"), tr("Highlight"), parent) {
+  : SettingsPage(tr("Interface"), tr("Highlight"), parent) {
   ui.setupUi(this);
   ui.highlightTable->verticalHeader()->hide();
   ui.highlightTable->setShowGrid(false);
index 1b37c53..56ccdf6 100644 (file)
@@ -25,7 +25,7 @@
 #include "qtuistyle.h"
 
 ItemViewSettingsPage::ItemViewSettingsPage(QWidget *parent)
-  : SettingsPage(tr("Appearance"), tr("Chat & Nick Lists"), parent),
+  : SettingsPage(tr("Interface"), tr("Chat & Nick Lists"), parent),
   _mapper(new QSignalMapper(this))
 {
   ui.setupUi(this);
index 9a98d5e..a473bc8 100644 (file)
@@ -25,7 +25,7 @@
 #include "qtui.h"
 
 NotificationsSettingsPage::NotificationsSettingsPage(QWidget *parent)
-  : SettingsPage(tr("Appearance"), tr("Notifications"), parent),
+  : SettingsPage(tr("Interface"), tr("Notifications"), parent),
   _hasDefaults(false)
 {