summaryrefslogtreecommitdiffstats
path: root/apps/ktorrent/addpeerwidget.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 02:37:40 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 02:37:40 +0000
commit9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0 (patch)
treed088b5210e77d9fa91d954d8550e00e372b47378 /apps/ktorrent/addpeerwidget.cpp
downloadktorrent-9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0.tar.gz
ktorrent-9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0.zip
Updated to final KDE3 ktorrent release (2.2.6)
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1077377 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'apps/ktorrent/addpeerwidget.cpp')
-rw-r--r--apps/ktorrent/addpeerwidget.cpp111
1 files changed, 111 insertions, 0 deletions
diff --git a/apps/ktorrent/addpeerwidget.cpp b/apps/ktorrent/addpeerwidget.cpp
new file mode 100644
index 0000000..20c27c3
--- /dev/null
+++ b/apps/ktorrent/addpeerwidget.cpp
@@ -0,0 +1,111 @@
+/***************************************************************************
+ * Copyright (C) 2006 by Ivan Vasić *
+ * ivasic@gmail.com *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+#include "addpeerwidget.h"
+
+#include <util/constants.h>
+#include <interfaces/torrentinterface.h>
+
+#include <klocale.h>
+#include <ksqueezedtextlabel.h>
+#include <klineedit.h>
+#include <knuminput.h>
+#include <kmessagebox.h>
+
+#include <qstring.h>
+#include <qstringlist.h>
+#include <qregexp.h>
+#include <qvalidator.h>
+
+using namespace kt;
+using bt::Uint16;
+
+//PeerSource
+
+ManualPeerSource::ManualPeerSource()
+{}
+
+void ManualPeerSource::start()
+{}
+
+void ManualPeerSource::stop(bt::WaitJob* )
+{}
+
+ManualPeerSource::~ ManualPeerSource()
+{}
+
+void ManualPeerSource::signalPeersReady()
+{
+ peersReady(this);
+}
+
+
+//AddPeerWidget
+
+AddPeerWidget::AddPeerWidget(kt::TorrentInterface* tc, QWidget *parent, const char *name)
+ :AddPeerWidgetBase(parent, name), m_tc(tc)
+{
+ if(!tc)
+ {
+ //oops, something went wrong...
+ m_status->setText(i18n("Torrent does not exist. Report this bug to KTorrent developers."));
+ m_ip->setEnabled(false);
+ m_port->setEnabled(false);
+ return;
+ }
+
+ m_peerSource = new ManualPeerSource();
+
+ //Register this peer source with ps manager.
+ m_tc->addPeerSource(m_peerSource);
+}
+
+AddPeerWidget::~ AddPeerWidget()
+{
+ //Unregister this peer source with ps manager.
+ m_tc->removePeerSource(m_peerSource);
+
+ delete m_peerSource;
+}
+
+void AddPeerWidget::btnAdd_clicked()
+{
+ int var=0;
+
+ QRegExp rx("[0-9]{1,3}(.[0-9]{1,3}){3,3}");
+ QRegExpValidator v( rx,0);
+
+ QString ip = m_ip->text();
+
+ if(v.validate( ip, var ) == QValidator::Acceptable)
+ {
+ m_peerSource->addPeer(ip, m_port->value());
+
+ m_peerSource->signalPeersReady();
+
+ m_status->setText(i18n("Potential peer added."));
+ }
+ else
+ {
+ KMessageBox::sorry(0, i18n("Malformed IP address."));
+ m_status->setText("");
+ }
+}
+
+#include "addpeerwidget.moc"