summaryrefslogtreecommitdiffstats
path: root/konversation/src/quickconnectdialog.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:29:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:29:46 +0000
commitee0d2e6e1967294f4a62da1840b0ffdaa3124a2d (patch)
tree5c150db3c91a190b4911f19aeec9b1b2163c0c53 /konversation/src/quickconnectdialog.cpp
downloadkonversation-ee0d2e6e1967294f4a62da1840b0ffdaa3124a2d.tar.gz
konversation-ee0d2e6e1967294f4a62da1840b0ffdaa3124a2d.zip
Added old abandoned KDE3 version of Konversation
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/konversation@1092922 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konversation/src/quickconnectdialog.cpp')
-rw-r--r--konversation/src/quickconnectdialog.cpp108
1 files changed, 108 insertions, 0 deletions
diff --git a/konversation/src/quickconnectdialog.cpp b/konversation/src/quickconnectdialog.cpp
new file mode 100644
index 0000000..a8aacae
--- /dev/null
+++ b/konversation/src/quickconnectdialog.cpp
@@ -0,0 +1,108 @@
+/*
+ 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.
+*/
+
+/*
+ Dialog for quick connection to an IRC network without adding a server in the Server List.
+ begin: Sat June 05 2004
+ copyright: (C) 2004 by Michael Goettsche
+ email: mail@tuxipuxi.de
+*/
+
+#include "quickconnectdialog.h"
+#include "konversationapplication.h"
+
+#include <qlayout.h>
+#include <qwhatsthis.h>
+#include <qlabel.h>
+#include <qcheckbox.h>
+
+#include <klineedit.h>
+#include <klocale.h>
+
+
+QuickConnectDialog::QuickConnectDialog(QWidget *parent)
+:KDialogBase(parent, "quickconnect", true, i18n("Quick Connect"),
+KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, true)
+{
+ QWidget* page = new QWidget(this);
+ setMainWidget(page);
+
+ QGridLayout* layout = new QGridLayout(page, 2, 4);
+ layout->setSpacing(spacingHint());
+ layout->setColStretch(1, 10);
+
+ QLabel* hostNameLabel = new QLabel(i18n("&Server host:"), page);
+ QString hostNameWT = i18n("Enter the host of the network here.");
+ QWhatsThis::add(hostNameLabel, hostNameWT);
+ hostNameInput = new KLineEdit(page);
+ QWhatsThis::add(hostNameInput, hostNameWT);
+ hostNameLabel->setBuddy(hostNameInput);
+
+ QLabel* portLabel = new QLabel(i18n("&Port:"), page);
+ QString portWT = i18n("The port that the IRC server is using.");
+ QWhatsThis::add(portLabel, portWT);
+ portInput = new KLineEdit("6667", page );
+ QWhatsThis::add(portInput, portWT);
+ portLabel->setBuddy(portInput);
+
+ QLabel* nickLabel = new QLabel(i18n("&Nick:"), page);
+ QString nickWT = i18n("The nick you want to use.");
+ QWhatsThis::add(nickLabel, nickWT);
+ nickInput = new KLineEdit(Preferences::nickname(0), page);
+ QWhatsThis::add(nickInput, nickWT);
+ nickLabel->setBuddy(nickInput);
+
+ QLabel* passwordLabel = new QLabel(i18n("P&assword:"), page);
+ QString passwordWT = i18n("If the IRC server requires a password, enter it here (most servers do not require a password.)");
+ QWhatsThis::add(passwordLabel, passwordWT);
+ passwordInput = new KLineEdit(page);
+ QWhatsThis::add(passwordInput, passwordWT);
+ passwordLabel->setBuddy(passwordInput);
+
+ sslCheckBox = new QCheckBox(page, "sslCheckBox");
+ sslCheckBox->setText(i18n("&Use SSL"));
+
+ layout->addWidget(hostNameLabel, 0, 0);
+ layout->addWidget(hostNameInput, 0, 1);
+ layout->addWidget(portLabel, 0, 2);
+ layout->addWidget(portInput, 0, 3);
+
+ layout->addWidget(nickLabel, 1, 0);
+ layout->addWidget(nickInput, 1, 1);
+ layout->addWidget(passwordLabel, 1, 2);
+ layout->addWidget(passwordInput, 1, 3);
+
+ layout->addWidget(sslCheckBox, 2, 0);
+
+ hostNameInput->setFocus();
+
+ setButtonOK(KGuiItem(i18n("C&onnect"),"connect_creating",i18n("Connect to the server")));
+}
+
+QuickConnectDialog::~QuickConnectDialog()
+{
+}
+
+void QuickConnectDialog::slotOk()
+{
+ if (!hostNameInput->text().isEmpty() &&
+ !portInput->text().isEmpty() &&
+ !nickInput->text().isEmpty())
+ {
+
+ emit connectClicked(Konversation::PromptToReuseConnection,
+ hostNameInput->text().stripWhiteSpace(),
+ portInput->text(),
+ passwordInput->text(),
+ nickInput->text(),
+ "",
+ sslCheckBox->isChecked());
+ delayedDestruct();
+ }
+}
+
+#include "quickconnectdialog.moc"