summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircsettings.cpp
authorwazlaf <wazlaf>2002-10-15 10:11:31 (UTC)
committer wazlaf <wazlaf>2002-10-15 10:11:31 (UTC)
commite09b7ab685d29eba947c3bb021192408acae70be (patch) (side-by-side diff)
tree5adf52c8d56819aab0daed8e7da189110276e90a /noncore/net/opieirc/ircsettings.cpp
parent31a73cafb40fffe2bbc12bb6fd0df6dc254d6646 (diff)
downloadopie-e09b7ab685d29eba947c3bb021192408acae70be.zip
opie-e09b7ab685d29eba947c3bb021192408acae70be.tar.gz
opie-e09b7ab685d29eba947c3bb021192408acae70be.tar.bz2
some qwhatsthis introduced, the IRCHistoryLineEdit now catches tabs
Diffstat (limited to 'noncore/net/opieirc/ircsettings.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircsettings.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/noncore/net/opieirc/ircsettings.cpp b/noncore/net/opieirc/ircsettings.cpp
index 1903e87..78eaed3 100644
--- a/noncore/net/opieirc/ircsettings.cpp
+++ b/noncore/net/opieirc/ircsettings.cpp
@@ -1,11 +1,12 @@
#include <qlayout.h>
#include <qvalidator.h>
#include <qscrollview.h>
+#include <qwhatsthis.h>
#include "ircsettings.h"
#include "irctab.h"
#include "ircmisc.h"
-IRCSettings::IRCSettings(QWidget* parent, const char* name, bool modal, WFlags f) : QDialog(parent, name, modal, f) {
+IRCSettings::IRCSettings(QWidget* parent, const char* name, bool modal, WFlags) : QDialog(parent, name, modal, WStyle_ContextHelp) {
setCaption("Settings");
m_config = new Config("OpieIRC");
m_config->setGroup("OpieIRC");
@@ -18,6 +19,7 @@ IRCSettings::IRCSettings(QWidget* parent, const char* name, bool modal, WFlags f
QLabel *label = new QLabel(tr("Lines displayed :"), widget);
layout->addWidget(label, 0, 0);
m_lines = new QLineEdit(m_config->readEntry("Lines", "100"), widget);
+ QWhatsThis::add(m_lines, tr("Amount of lines to be displayed in chats before old lines get deleted - this is necessary to restrain memory consumption. Set to 0 if you don't need this"));
QIntValidator *validator = new QIntValidator(this);
validator->setTop(10000);
validator->setBottom(0);
@@ -34,30 +36,37 @@ IRCSettings::IRCSettings(QWidget* parent, const char* name, bool modal, WFlags f
label = new QLabel(tr("Background color :"), widget);
layout->addWidget(label, 0, 0);
m_background = new IRCFramedColorLabel(QColor(m_config->readEntry("BackgroundColor", "#FFFFFF")), widget);
+ QWhatsThis::add(m_background, tr("Background color to be used in chats"));
layout->addWidget(m_background, 0, 1);
label = new QLabel(tr("Normal text color :"), widget);
layout->addWidget(label, 1, 0);
m_text = new IRCFramedColorLabel(m_config->readEntry("TextColor", "#000000"), widget);
+ QWhatsThis::add(m_text, tr("Text color to be used in chats"));
layout->addWidget(m_text, 1, 1);
label = new QLabel(tr("Error color :"), widget);
layout->addWidget(label, 2, 0);
m_error = new IRCFramedColorLabel(m_config->readEntry("ErrorColor", "#FF0000"), widget);
+ QWhatsThis::add(m_error, tr("Text color to be used to display errors"));
layout->addWidget(m_error, 2, 1);
label = new QLabel(tr("Text written by yourself :"), widget);
layout->addWidget(label, 3, 0);
m_self = new IRCFramedColorLabel(m_config->readEntry("SelfColor", "#CC0000"), widget);
+ QWhatsThis::add(m_self, tr("Text color to be used to identify text written by yourself"));
layout->addWidget(m_self, 3, 1);
label = new QLabel(tr("Text written by others :"), widget);
layout->addWidget(label, 4, 0);
m_other = new IRCFramedColorLabel(m_config->readEntry("OtherColor", "#0000BB"), widget);
+ QWhatsThis::add(m_other, tr("Text color to be used to identify text written by others"));
layout->addWidget(m_other, 4, 1);
label = new QLabel(tr("Text written by the server :"), widget);
layout->addWidget(label, 5, 0);
m_server = new IRCFramedColorLabel(m_config->readEntry("ServerColor", "#0000FF"), widget);
+ QWhatsThis::add(m_server, tr("Text color to be used to identify text written by the server"));
layout->addWidget(m_server, 5, 1);
label = new QLabel(tr("Notifications :"), widget);
layout->addWidget(label, 6, 0);
m_notification = new IRCFramedColorLabel(m_config->readEntry("NotificationColor", "#AAE300"), widget);
+ QWhatsThis::add(m_notification, tr("Text color to be used to display notifications"));
layout->addWidget(m_notification, 6, 1);
tw->addTab(view, tr("Colors"));
showMaximized();