summaryrefslogtreecommitdiffstats
path: root/ksirc/dccNew.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/dccNew.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/dccNew.cpp')
-rw-r--r--ksirc/dccNew.cpp162
1 files changed, 162 insertions, 0 deletions
diff --git a/ksirc/dccNew.cpp b/ksirc/dccNew.cpp
new file mode 100644
index 00000000..fe44fae6
--- /dev/null
+++ b/ksirc/dccNew.cpp
@@ -0,0 +1,162 @@
+/***************************************************************************
+ * *
+ * 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; version 2 of the License. *
+ * *
+ ***************************************************************************/
+
+#include <qlabel.h>
+#include <qradiobutton.h>
+#include <qcheckbox.h>
+#include <qspinbox.h>
+#include <qstringlist.h>
+#include <qlistbox.h>
+
+#include <kapplication.h>
+#include <kstandarddirs.h>
+#include <klocale.h>
+#include <kurlrequester.h>
+#include <kfiledialog.h>
+#include <kmessagebox.h>
+#include <kdebug.h>
+#include <kcombobox.h>
+#include <klineedit.h>
+
+#include "alistbox.h"
+#include "dccNew.h"
+#include "objFinder.h"
+
+dccNew::dccNew( QWidget *parent, const char *name, int type, QString nick )
+ : dccNewBase( parent, name)
+{
+
+ QColorGroup cg_mainw = kapp->palette().active();
+ cg_mainw.setColor(QColorGroup::Base, ksopts->backgroundColor);
+ cg_mainw.setColor(QColorGroup::Text, ksopts->textColor);
+ cg_mainw.setColor(QColorGroup::Link, ksopts->linkColor);
+ cg_mainw.setColor(QColorGroup::Highlight, ksopts->selBackgroundColor);
+ cg_mainw.setColor(QColorGroup::HighlightedText, ksopts->selForegroundColor);
+ nickList->setPalette(QPalette(cg_mainw,cg_mainw, cg_mainw));
+
+ QStringList allalist = objFinder::allObjects().grep(I18N_NOOP("aListBox::"));
+
+ for ( QStringList::Iterator it = allalist.begin();
+ it != allalist.end();
+ ++it ) {
+ QString name = (*it).section("::", 1);
+ kdDebug(5008) << "Looking at: " << *it << "/" << name << endl;
+
+ aListBox *a = static_cast<aListBox *>(objFinder::find(name.latin1(), "aListBox"));
+ if(a){
+ QListBoxItem *i;
+ for(i = a->firstItem(); i != 0x0; i = i->next()){
+ nickListItem *it = new nickListItem(*a->item(a->index(i)));
+ nickList->inSort(it);
+ }
+ }
+ else {
+ kdDebug(5008) << "Didn't find: " << name << endl;
+ }
+ }
+
+ KCompletion *comp = cbNicks->completionObject();
+
+ QListBoxItem *i;
+ for(i = nickList->firstItem(); i != 0x0; i = i->next()){
+ comp->addItem(i->text());
+ cbNicks->insertItem(i->text());
+ }
+ cbNicks->setCurrentText(nick);
+
+ KConfig *kConfig = kapp->config();
+ kConfig->setGroup("dccNew");
+
+ bool chatChecked = kConfig->readBoolEntry("chatChecked", false);
+
+ /*
+ * allow type to override
+ * the config setting
+ */
+ if(type == Chat){
+ chatChecked = true;
+ }
+ else if(type == Send){
+ chatChecked = false;
+ }
+
+ if(chatChecked) {
+ rbChat->setChecked(true);
+ chatClicked();
+ }
+ else {
+ rbFileSend->setChecked(true);
+ fileSendClicked();
+ }
+
+ connect(nickList, SIGNAL(highlighted(const QString &)),
+ cbNicks, SLOT(setEditText(const QString &)));
+
+ connect(pbCancel, SIGNAL(clicked()),
+ this, SLOT(reject()));
+
+ connect(pbSend, SIGNAL(clicked()),
+ this, SLOT(accept()));
+
+
+}
+
+dccNew::~dccNew()
+{
+}
+
+
+void dccNew::chatClicked()
+{
+ gbFile->setEnabled(false);
+}
+
+void dccNew::fileSendClicked()
+{
+ gbFile->setEnabled(true);
+}
+
+void dccNew::sendClicked()
+{
+ KConfig *kConfig = kapp->config();
+ kConfig->setGroup("dccNew");
+ kConfig->writeEntry("chatChecked",rbChat->isChecked());
+ int type = Chat;
+ if(rbFileSend->isChecked())
+ type = Send;
+ emit accepted(type, cbNicks->currentText(), leFile->text());
+}
+
+void dccNew::fileClicked()
+{
+ QString file =
+ KFileDialog::getOpenFileName();
+
+ leFile->setText(file);
+}
+
+QString dccNew::getFile() {
+ return leFile->text() ;
+}
+
+QString dccNew::getNick() {
+ return cbNicks->currentText();
+}
+
+int dccNew::getType() {
+ int type = Chat; if(rbFileSend->isChecked()) type = Send;
+ return type;
+}
+
+void dccNew::reject()
+{
+ emit accepted(-1, QString::null, QString::null);
+}
+
+
+#include "dccNew.moc"