diff options
Diffstat (limited to 'plugins/infowidget/iwfiletreeitem.cpp')
-rw-r--r-- | plugins/infowidget/iwfiletreeitem.cpp | 166 |
1 files changed, 0 insertions, 166 deletions
diff --git a/plugins/infowidget/iwfiletreeitem.cpp b/plugins/infowidget/iwfiletreeitem.cpp deleted file mode 100644 index effe20a..0000000 --- a/plugins/infowidget/iwfiletreeitem.cpp +++ /dev/null @@ -1,166 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2005 by Joris Guisson * - * joris.guisson@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 <tdelocale.h> -#include <tdeglobal.h> -#include <tdemessagebox.h> -#include <interfaces/functions.h> -#include <interfaces/torrentinterface.h> -#include <interfaces/torrentfileinterface.h> -#include <util/bitset.h> -#include "iwfiletreeitem.h" -#include "iwfiletreediritem.h" -#include "functions.h" - -using namespace kt; - -namespace kt -{ - - IWFileTreeItem::IWFileTreeItem(IWFileTreeDirItem* item,const TQString & name,kt::TorrentFileInterface & file) - : FileTreeItem(item,name,file) - { - perc_complete = 0.0; - connect(&file,TQT_SIGNAL(downloadPercentageChanged( float )),this,TQT_SLOT(onPercentageUpdated( float ))); - connect(&file,TQT_SIGNAL(previewAvailable( bool )),this,TQT_SLOT(onPreviewAvailable( bool ))); - } - - IWFileTreeItem::~IWFileTreeItem() - { - } - - int IWFileTreeItem::compare(TQListViewItem* i, int col, bool ascending) const - { - if (col == 4) - { - IWFileTreeItem* other = dynamic_cast<IWFileTreeItem*>(i); - if (!other) - return 0; - else - return CompareVal(perc_complete,other->perc_complete); - } - else - { - return FileTreeItem::compare(i, col, ascending); - } - } - - - void IWFileTreeItem::updatePreviewInformation(kt::TorrentInterface* tc) - { - if (file.isMultimedia()) - { - if (tc->readyForPreview(file.getFirstChunk(), file.getFirstChunk()+1) ) - { - setText(3, i18n("Available")); - } - else - { - setText(3, i18n("Pending")); - } - } - else - setText(3, i18n("No")); - } - - void IWFileTreeItem::updatePercentageInformation() - { - onPercentageUpdated(file.getDownloadPercentage()); - } - - void IWFileTreeItem::onPercentageUpdated(float p) - { - double percent = p; - if (percent < 0.0) - percent = 0.0; - else if (percent > 100.0) - percent = 100.0; - TDELocale* loc = TDEGlobal::locale(); - setText(4,i18n("%1 %").arg(loc->formatNumber(percent,2))); - perc_complete = percent; - } - - void IWFileTreeItem::onPreviewAvailable(bool av) - { - if (av) - { - setText(3, i18n("Available")); - } - else if (file.isMultimedia()) - { - setText(3, i18n("Pending")); - } - else - { - setText(3, i18n("No")); - } - } - - void IWFileTreeItem::updatePriorityInformation(kt::TorrentInterface* tc) - { - switch(file.getPriority()) - { - case FIRST_PRIORITY: - setText(2, i18n("Yes, First")); - break; - case LAST_PRIORITY: - setText(2, i18n("Yes, Last")); - break; - case ONLY_SEED_PRIORITY: - case EXCLUDED: - setText(2, i18n("No")); - break; - case PREVIEW_PRIORITY: - break; - default: - setText(2, i18n("Yes")); - break; - } - } - - void IWFileTreeItem::updateDNDInformation() - { - if (file.doNotDownload() && isOn()) - { - setChecked(false); - setText(2, i18n("No")); - } - } - - bt::ConfirmationResult IWFileTreeItem::confirmationDialog() - { - return bt::KEEP_DATA; - /* - TQString msg = i18n("Do you want to keep the existing data for seeding ?"); - int ret = KMessageBox::warningYesNoCancel(0,msg,TQString(), - KGuiItem(i18n("Keep the data")), - KGuiItem(i18n("Delete the data"))); - if (ret == KMessageBox::Yes) - return bt::KEEP_DATA; - else if (ret == KMessageBox::No) - return bt::THROW_AWAY_DATA; - else - return bt::CANCELED; - */ - } - -} - -#include "iwfiletreeitem.moc" - |