blob: 94b91299ac70f0594495524abd14654760466946 (
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
52
53
54
55
56
57
|
/*
buglvi.h - Custom TQListViewItem that holds a Bug object
copyright : (c) 2001 by Martijn Klingens
email : klingens@kde.org
*************************************************************************
* *
* 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 KBBMAINWINDOW_BUGLVI_H
#define KBBMAINWINDOW_BUGLVI_H
#include <klistview.h>
#include "bug.h"
#include "bugcommand.h"
namespace KBugBusterMainWindow
{
/**
* @author Martijn Klingens
*/
class BugLVI : public KListViewItem
{
public:
BugLVI( KListView *tqparent , const Bug &bug );
~BugLVI();
Bug& bug() { return m_bug; }
void setBug( Bug &bug ) { m_bug = bug; }
TQString key ( int column, bool ascending ) const;
void setCommandState( BugCommand::State state );
void paintCell(TQPainter* p, const TQColorGroup& cg,
int column, int width, int align);
private:
Bug m_bug;
BugCommand::State mCommandState;
};
} // namespace
#endif // KBBMAINWINDOW_BUGLVI_H
/* vim: set et ts=4 softtabstop=4 sw=4: */
|