wiiqt/saveToy/savelistitem.cpp
2011-01-02 06:15:26 +00:00

24 lines
551 B
C++

#include "savelistitem.h"
SaveListItem::SaveListItem( SaveBanner banner, const QString &tid, quint32 s, QListWidget * parent ) : QListWidgetItem( parent ), size( s )
{
sb = banner;
QImage im = banner.BannerImg();
if( !im.isNull() )
{
im.load( ";/noBanner.png" );
}
QString tex = banner.Title();
if( tex.isEmpty() )
tex = "???";
this->setText( tex );
this->setIcon( QIcon( QPixmap::fromImage( im ) ) );
id = tid;
}
SaveListItem::~SaveListItem()
{
//qDebug() << "SaveListItem destroyed";
}