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/libktorrent/interfaces/filetreeitem.cpp

183 lines
4.5 KiB

/***************************************************************************
* 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 <tdeglobal.h>
#include <tdelocale.h>
#include <kiconloader.h>
#include <kmimetype.h>
#include <interfaces/functions.h>
#include <torrent/globals.h>
#include "filetreeitem.h"
#include "filetreediritem.h"
#include "torrentfileinterface.h"
using namespace bt;
namespace kt
{
FileTreeItem::FileTreeItem(FileTreeDirItem* item,const TQString & name,kt::TorrentFileInterface & file)
: TQCheckListItem(item,TQString(),TQCheckListItem::CheckBox),name(name),file(file)
{
parent = item;
manual_change = false;
init();
}
FileTreeItem::~FileTreeItem()
{
}
void FileTreeItem::setChecked(bool on,bool keep_data)
{
manual_change = true;
setOn(on);
manual_change = false;
if (!on)
{
if (keep_data)
file.setPriority(ONLY_SEED_PRIORITY);
else
file.setDoNotDownload(true);
}
else
{
if (file.getPriority() == ONLY_SEED_PRIORITY)
file.setPriority(NORMAL_PRIORITY);
else
file.setDoNotDownload(false);
}
updatePriorityText();
parent->childStateChange();
}
void FileTreeItem::updatePriorityText()
{
switch(file.getPriority())
{
case FIRST_PRIORITY:
setText(2,i18n("Yes, First"));
break;
case LAST_PRIORITY:
setText(2,i18n("Yes, Last"));
break;
case EXCLUDED:
case ONLY_SEED_PRIORITY:
setText(2,i18n("No"));
break;
case PREVIEW_PRIORITY:
break;
default:
setText(2,i18n("Yes"));
break;
}
}
void FileTreeItem::init()
{
manual_change = true;
if (file.doNotDownload() || file.getPriority() == ONLY_SEED_PRIORITY)
setOn(false);
else
setOn(true);
manual_change = false;
setText(0,name);
setText(1,BytesToString(file.getSize()));
updatePriorityText();
setPixmap(0,KMimeType::findByPath(name)->pixmap(TDEIcon::Small));
}
void FileTreeItem::stateChange(bool on)
{
if (manual_change)
{
updatePriorityText();
return;
}
if (!on)
{
switch (confirmationDialog())
{
case KEEP_DATA:
file.setPriority(ONLY_SEED_PRIORITY);
break;
case THROW_AWAY_DATA:
file.setDoNotDownload(true);
break;
case CANCELED:
default:
manual_change = true;
setOn(true);
manual_change = false;
return;
}
}
else
{
if (file.getPriority() == ONLY_SEED_PRIORITY)
file.setPriority(NORMAL_PRIORITY);
else
file.setDoNotDownload(false);
}
updatePriorityText();
parent->childStateChange();
}
int FileTreeItem::compare(TQListViewItem* i, int col, bool ascending) const
{
if (col == 1)
{
FileTreeItem* other = dynamic_cast<FileTreeItem*>(i);
if (!other)
return 0;
else
return (int)(file.getSize() - other->file.getSize());
}
else
{
// lets sort case insensitive
return TQString::compare(text(col).lower(),i->text(col).lower());
// TQCheckListItem::compare(i, col, ascending);
}
}
ConfirmationResult FileTreeItem::confirmationDialog()
{
if (file.isPreExistingFile())
return KEEP_DATA;
else
return THROW_AWAY_DATA;
}
Uint64 FileTreeItem::bytesToDownload() const
{
if (file.doNotDownload())
return 0;
else
return file.getSize();
}
}