blob: adb8577a5b064012a26844bd655168c91d314d90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/***************************************************************************
* 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
|