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.
kasablanca/src/kbitem.cpp

72 lines
1.4 KiB

//
// C++ Implementation: KbItem
//
// Description:
//
//
// Author: mkulke <sikor_sxe@radicalapproach.de>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include <tqdatetime.h>
#include "kbfileinfo.h"
#include "kbitem.h"
KbItem::KbItem(KbFileInfo kfi, TQListView* parent, TQListViewItem* after) : TQListViewItem(parent, after)
{
m_file = kfi.fileName();
m_path = kfi.dirPath(),
m_date = kfi.Date(),
m_size = kfi.Size(),
m_date_int = kfi.DateInt();
setText(0, m_file);
setText(1, TQString::number(m_size));
setText(2, m_date);
}
KbItem::KbItem(TQListView* parent, TQListViewItem* after) : TQListViewItem(parent, after)
{
}
KbItem::~KbItem()
{
}
int KbItem::compare(TQListViewItem * i, int col, bool ascending) const
{
if ((this->rtti() == 1001) && (i->rtti() == 1002))
{
if (ascending) return -1;
else return 1;
}
else if ((this->rtti() == 1002) && (i->rtti() == 1001))
{
if (ascending) return 1;
else return -1;
}
if (col == 1)
{
unsigned int x = this->text(1).toInt();
unsigned int y = i->text(1).toInt();
if (x == y) return 0;
if (x < y) return -1;
if (x > y) return 1;
}
if (col == 2)
{
unsigned int x = this->m_date_int;
unsigned int y = static_cast<KbItem*>(i)->m_date_int;
if (x == y) return 0;
if (x < y) return -1;
if (x > y) return 1;
}
return TQListViewItem::compare(i, col, ascending);
}