mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-21 21:19:15 +01:00
1994e8bdda
git-svn-id: http://wiiqt.googlecode.com/svn/trunk@34 389f4c8b-5dfe-645f-db0e-df882bc27289
24 lines
551 B
C++
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";
|
|
}
|