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.
54 lines
1.6 KiB
54 lines
1.6 KiB
/***************************************************************************
|
|
* Copyright (C) 2004 by Jens Dagerbo *
|
|
* jens.dagerbo@swipnet.se *
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef __FILELIST_ITEM_H__
|
|
#define __FILELIST_ITEM_H__
|
|
|
|
|
|
#include <tqlistview.h>
|
|
#include <tqpixmap.h>
|
|
|
|
#include <kurl.h>
|
|
|
|
#include <kdevpartcontroller.h>
|
|
|
|
class FileListItem : public TQListViewItem
|
|
{
|
|
public:
|
|
FileListItem( TQListView * parent, KURL const & url, DocumentState = Clean );
|
|
|
|
KURL url();
|
|
|
|
DocumentState state();
|
|
void setState( DocumentState );
|
|
|
|
bool isActive();
|
|
static void setActive( FileListItem * item );
|
|
|
|
virtual int compare( TQListViewItem * i, int col, bool ascending ) const;
|
|
private:
|
|
virtual void setHeight( int ); // override of TQListViewItem::setHeight()
|
|
virtual void paintCell( TQPainter * p, const TQColorGroup & cg, int column, int width, int align ); // override of TQListViewItem::paintCell()
|
|
|
|
KURL _url;
|
|
DocumentState _state;
|
|
TQPixmap _icon;
|
|
|
|
static FileListItem * s_activeItem;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// kate: space-indent off; indent-width 4; tab-width 4; show-tabs off;
|