|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2003 by Julian Rockey *
|
|
|
|
* linux@jrockey.com *
|
|
|
|
* thanks: Roberto Raggi for TQSimpleRichText stuff *
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#include "filecreate_listitem.h"
|
|
|
|
|
|
|
|
#include <tdeglobal.h>
|
|
|
|
#include <kiconloader.h>
|
|
|
|
|
|
|
|
#include <tqsimplerichtext.h>
|
|
|
|
#include <tqpixmap.h>
|
|
|
|
|
|
|
|
namespace FileCreate {
|
|
|
|
|
|
|
|
ListItem::ListItem(TQListView * listview, const FileType * filetype) :
|
|
|
|
TDEListViewItem(listview), m_filetype(filetype),
|
|
|
|
m_filetypeRenderer(NULL)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ListItem::ListItem(ListItem * listitem, const FileType * filetype) :
|
|
|
|
TDEListViewItem(listitem), m_filetype(filetype),
|
|
|
|
m_filetypeRenderer(NULL)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
ListItem::~ListItem()
|
|
|
|
{
|
|
|
|
if (m_filetypeRenderer) delete m_filetypeRenderer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ListItem::setup()
|
|
|
|
{
|
|
|
|
if (m_filetypeRenderer) delete m_filetypeRenderer;
|
|
|
|
m_filetypeRenderer = new TQSimpleRichText( text(1), listView()->font() );
|
|
|
|
m_filetypeRenderer->setWidth(listView()->columnWidth(1));
|
|
|
|
setHeight(m_filetypeRenderer->height());
|
|
|
|
TDEListViewItem::setup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ListItem::setHeight( int height )
|
|
|
|
{
|
|
|
|
TDEListViewItem::setHeight( TQMAX(TQMAX(height,m_iconHeight), m_filetypeRenderer->height() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ListItem::prepareResize() {
|
|
|
|
if (m_filetypeRenderer) {
|
|
|
|
m_filetypeRenderer->setWidth(listView()->columnWidth(1));
|
|
|
|
setHeight(m_filetypeRenderer->height());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ListItem::paintCell( TQPainter* p, const TQColorGroup& cg, int column, int width, int align )
|
|
|
|
{
|
|
|
|
|
|
|
|
TQBrush brush( isSelected() ? cg.highlight() : backgroundColor(column) );
|
|
|
|
|
|
|
|
if( column == 1 ){
|
|
|
|
// m_filetypeRenderer->setWidth(width);
|
|
|
|
// setHeight(m_filetypeRenderer->height());
|
|
|
|
m_filetypeRenderer->draw( p, 0, 0, TQRect(0, 0, width, height()), cg, &brush );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TDEListViewItem::paintCell( p, cg, column, width, align );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ListItem::init()
|
|
|
|
{
|
|
|
|
m_iconHeight = 0;
|
|
|
|
setText(0, m_filetype->ext()!="" ? TQString("." + m_filetype->ext()) : TQString("") );
|
|
|
|
setText(1, "<qt><b>"+m_filetype->name()+"</b>. " + m_filetype->descr() );
|
|
|
|
|
|
|
|
TDEIconLoader * loader = TDEGlobal::iconLoader();
|
|
|
|
TQPixmap iconPix = loader->loadIcon(m_filetype->icon(), TDEIcon::Desktop,
|
|
|
|
TDEIcon::SizeMedium,
|
|
|
|
TDEIcon::DefaultState, NULL,
|
|
|
|
true);
|
|
|
|
if (!iconPix.isNull()) {
|
|
|
|
setPixmap(0, iconPix);
|
|
|
|
m_iconHeight = iconPix.height();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|