From bcb704366cb5e333a626c18c308c7e0448a8e69f Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksirc/KSPrefs/page_servchan.cpp | 135 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 ksirc/KSPrefs/page_servchan.cpp (limited to 'ksirc/KSPrefs/page_servchan.cpp') diff --git a/ksirc/KSPrefs/page_servchan.cpp b/ksirc/KSPrefs/page_servchan.cpp new file mode 100644 index 00000000..4689bd2a --- /dev/null +++ b/ksirc/KSPrefs/page_servchan.cpp @@ -0,0 +1,135 @@ +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include "page_servchan.h" + +#include +#include +#include +#include +#include + +PageServChan::PageServChan( QWidget *parent, const char *name ) : PageServChanBase( parent, name) +{ + connect(serverDeleteItemPB, SIGNAL(pressed()), this, SLOT(deletePressedSL())); + connect(ServerAddItemPB, SIGNAL(pressed()), this, SLOT(addPressedSL())); + connect(chanDeleteItmPB, SIGNAL(pressed()), this, SLOT(deletePressedCL())); + connect(ChanAddItemPB, SIGNAL(pressed()), this, SLOT(addPressedCL())); + +} + +PageServChan::~PageServChan() +{ +} + +void PageServChan::saveConfig() +{ + QStringList sLB; + uint i; + for(i = 0; i < serverLB->count(); i++){ + QString txt = serverLB->text(i); + if(!txt.isNull()) + sLB << txt; + } + KConfig *conf = kapp->config(); + conf->setGroup("ServerList"); + conf->writeEntry("RecentServers", sLB); + + QStringList sCL; + for(i = 0; i < channelLB->count(); i++){ + QString txt = channelLB->text(i); + if(!txt.isNull()) + sCL << txt; + } + conf->setGroup("Recent"); + conf->writeEntry("Channels", sCL); +} + +void PageServChan::readConfig( const KSOServChan * ) +{ + KConfig *conf = kapp->config(); + conf->setGroup("ServerList"); + QStringList recent = conf->readListEntry("RecentServers"); + recent.sort(); + serverLB->insertStringList(recent); + conf->setGroup("Recent"); + recent = conf->readListEntry("Channels"); + recent.sort(); + channelLB->insertStringList(recent); +} + +void PageServChan::defaultConfig() +{ + readConfig(); +} + +void PageServChan::deletePressedSL() { + int item = serverLB->currentItem(); + if(item >= 0){ + serverLB->removeItem(item); + } + emit modified(); +} + +void PageServChan::addPressedSL() { + uint i; + QString txt = LineEdit6->text(); + + for(i = 0; i < serverLB->count(); i++){ + if(txt == serverLB->text(i)){ + qWarning("Server already in the list!"); + return; + } + } + + serverLB->insertItem(txt); + serverLB->sort(); + LineEdit6->clear(); + emit modified(); + for(i = 0; i < serverLB->count(); i++){ + if(txt == serverLB->text(i)){ + serverLB->setCurrentItem(i); + serverLB->ensureCurrentVisible(); + return; + } + } +} + +void PageServChan::deletePressedCL() { + int item = channelLB->currentItem(); + if(item >= 0){ + channelLB->removeItem(item); + } + emit modified(); +} + +void PageServChan::addPressedCL() { + uint i; + QString txt = LineEdit6_2->text(); + + for(i = 0; i < channelLB->count(); i++){ + if(txt == channelLB->text(i)){ + qWarning("Server already in the list!"); + return; + } + } + + channelLB->insertItem(txt); + channelLB->sort(); + LineEdit6_2->clear(); + emit modified(); + for(i = 0; i < channelLB->count(); i++){ + if(txt == channelLB->text(i)){ + channelLB->setCurrentItem(i); + channelLB->ensureCurrentVisible(); + return; + } + } +} +#include "page_servchan.moc" -- cgit v1.2.1