You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ktorrent/apps/ktorrent/torrentcreatordlg.cpp

153 lines
3.7 KiB

//
// C++ Implementation: $MODULE$
//
// Description:
//
//
// Author: Joris Guisson <joris.guisson@gmail.com>, (C) 2005
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include <tqcheckbox.h>
#include <tqstringlist.h>
#include <tqmap.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
#include <kcombobox.h>
#include <klineedit.h>
#include <kurlrequester.h>
#include <keditlistbox.h>
#include <kpushbutton.h>
#include <tdefiledialog.h>
#include <kprogress.h>
#include <tdelistview.h>
#include <knuminput.h>
#include "torrentcreatordlg.h"
#include "ktorrentcore.h"
#include <torrent/globals.h>
#include <kademlia/dhtbase.h>
TorrentCreatorDlg::TorrentCreatorDlg(KTorrentCore* core,TQWidget *parent, const char *name)
:TorrentCreatorDlgBase(parent, name),core(core)
{
KURLRequester* r = m_file_or_dir;
r->fileDialog()->setMode(
KFile::ExistingOnly|KFile::Directory|KFile::File|KFile::LocalOnly);
KComboBox* cb = m_chunk_size;
cb->setCurrentItem(3);
connect(m_create_btn,TQT_SIGNAL(clicked()),this,TQT_SLOT(onCreate()));
connect(m_cancel_btn,TQT_SIGNAL(clicked()),this,TQT_SLOT(reject()));
m_nodes->setHidden(true);
TQMap<TQString, int> n = bt::Globals::instance().getDHT().getClosestGoodNodes(10);
for(TQMap<TQString, int>::iterator it = n.begin(); it!=n.end(); ++it)
new TQListViewItem(m_nodeList, it.key(), TQString("%1").arg(it.data()));
}
TorrentCreatorDlg::~TorrentCreatorDlg()
{
}
void TorrentCreatorDlg::onCreate()
{
KURLRequester* r = m_file_or_dir;
KComboBox* cb = m_chunk_size;
KEditListBox* eb = m_trackers;
if (r->url().length() == 0)
{
errorMsg(i18n("You must select a file or a folder."));
return;
}
if (eb->items().count() == 0 && !m_decentralized->isChecked())
{
//errorMsg(i18n("You must add at least one tracker."));
TQString msg = i18n("You have not added a tracker, "
"are you sure you want to create this torrent ?");
if (KMessageBox::warningYesNo(this,msg) == KMessageBox::No)
return;
}
if (m_nodeList->childCount() == 0 && m_decentralized->isChecked())
{
errorMsg(i18n("You must add at least one node."));
return;
}
TQString url = r->url();
int chunk_size = cb->currentText().toInt();
TQString name = KURL::fromPathOrURL(r->url()).fileName();
TQStringList trackers;
if(m_decentralized->isChecked())
{
for(int i=0; i<m_nodeList->childCount(); ++i)
trackers.append(m_nodeList->itemAtIndex(i)->text(0) + "," + m_nodeList->itemAtIndex(i)->text(1));
}
else
trackers = eb->items();
TQString s = KFileDialog::getSaveFileName(
TQString(),"*.torrent|" + i18n("Torrent Files (*.torrent)"),
0,i18n("Choose File to Save Torrent"));
if (s.isNull())
return;
if (!s.endsWith(".torrent"))
s += ".torrent";
KProgressDialog* dlg = new KProgressDialog(this,0);
dlg->setLabel(i18n("Creating %1...").arg(s));
dlg->setModal(true);
dlg->setAllowCancel(false);
dlg->show();
core->makeTorrent(
url,trackers,chunk_size,
name,m_comments->text(),
m_start_seeding->isChecked(),s,
m_private->isChecked(),
dlg->progressBar(),
m_decentralized->isChecked());
delete dlg;
accept();
}
void TorrentCreatorDlg::errorMsg(const TQString & text)
{
KMessageBox::error(this,text,i18n("Error"));
}
void TorrentCreatorDlg::btnRemoveNode_clicked()
{
TQListViewItem* item = m_nodeList->currentItem();
if(!item)
return;
m_nodeList->removeItem(item);
}
void TorrentCreatorDlg::btnAddNode_clicked()
{
new TQListViewItem(m_nodeList, m_node->text(), TQString("%1").arg(m_port->value()));
}
void TorrentCreatorDlg::m_nodeList_selectionChanged(TQListViewItem*)
{
btnRemoveNode->setEnabled(m_nodeList->selectedItem()!=0);
}
void TorrentCreatorDlg::m_node_textChanged(const TQString& txt)
{
btnAddNode->setEnabled(!txt.isEmpty());
}
#include "torrentcreatordlg.moc"