summaryrefslogtreecommitdiffstats
path: root/ksirc/KSPrefs/page_startup.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitbcb704366cb5e333a626c18c308c7e0448a8e69f (patch)
treef0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /ksirc/KSPrefs/page_startup.cpp
downloadtdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz
tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip
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
Diffstat (limited to 'ksirc/KSPrefs/page_startup.cpp')
-rw-r--r--ksirc/KSPrefs/page_startup.cpp126
1 files changed, 126 insertions, 0 deletions
diff --git a/ksirc/KSPrefs/page_startup.cpp b/ksirc/KSPrefs/page_startup.cpp
new file mode 100644
index 00000000..060da44d
--- /dev/null
+++ b/ksirc/KSPrefs/page_startup.cpp
@@ -0,0 +1,126 @@
+/***************************************************************************
+ * *
+ * 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 <qlineedit.h>
+#include <qpushbutton.h>
+#include <qlistbox.h>
+
+#include <kapplication.h>
+#include <kconfig.h>
+#include <keditlistbox.h>
+
+#include <kdebug.h>
+
+#include "page_startup.h"
+
+PageStartup::PageStartup( QWidget *parent, const char *name ) : PageStartupBase( parent, name)
+{
+ notifyLB->upButton()->hide();
+ notifyLB->downButton()->hide();
+ serverLB->upButton()->hide();
+ serverLB->downButton()->hide();
+
+ QListBox *lb = serverLB->listBox();
+ connect(lb, SIGNAL(highlighted(int)),
+ this, SLOT(clickedLB(int)));
+
+ changing = false;
+
+}
+
+PageStartup::~PageStartup()
+{
+}
+
+void PageStartup::saveConfig()
+{
+ KSOServer glb = ksopts->server["global"];
+ QStringList items = serverLB->items();
+
+ ksopts->server.clear();
+
+ QStringList::iterator it = items.begin();
+ for( ; it != items.end(); ++it){
+ ksopts->server[*it] = server[*it];
+ }
+ if(!ksopts->server.contains("global")){
+ ksopts->server["global"] = glb;
+ }
+
+}
+
+void PageStartup::readConfig( const KSOptions *opts )
+{
+ server = opts->server;
+
+ changing = true;
+ ServerOpMap::Iterator it;
+ for ( it = server.begin(); it != server.end(); ++it ) {
+ if(it.data().globalCopy == false)
+ serverLB->insertItem(it.key());
+ }
+ QListBoxItem *item = serverLB->listBox()->findItem("global");
+ serverLB->listBox()->setSelected(item, true);
+ changing = false;
+ clickedLB(serverLB->listBox()->index(item));
+
+}
+
+void PageStartup::defaultConfig()
+{
+ KSOptions opts;
+ readConfig( &opts );
+}
+
+void PageStartup::changed()
+{
+ emit modified();
+
+ QString ser = serverLB->currentText();
+ if(ser.isEmpty())
+ return;
+
+ if(changing)
+ return;
+
+ kdDebug(5008) << "got changed for: " << ser <<endl;
+
+ server[ser].nick = nickLE->text();
+ server[ser].altNick = altNickLE->text();
+ server[ser].realName = rnLE->text();
+ server[ser].userID = uiLE->text();
+
+ server[ser].notifyList.clear();
+ for ( int i = 0; i < notifyLB->count(); ++i)
+ server[ser].notifyList.append( notifyLB->text( i ) );
+ server[ser].globalCopy = false;
+
+}
+
+void PageStartup::clickedLB(int index)
+{
+
+ QString text = serverLB->text(index);
+ if(!server.contains(text)){
+ server[text] = server["global"];
+ server[text].globalCopy = true;
+ }
+
+ changing = true;
+ notifyLB->clear();
+
+ nickLE->setText( server[text].nick );
+ altNickLE->setText( server[text].altNick );
+ rnLE->setText( server[text].realName );
+ uiLE->setText( server[text].userID );
+ notifyLB->insertStringList( server[text].notifyList );
+ changing = false;
+}
+
+#include "page_startup.moc"