blob: 4ec2b44ef16ee0c6ad6d9a474d1632a16a7b9ca8 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
//-*-C++-*-
/*
**************************************************************************
description
--------------------
copyright : (C) 2000-2001 by Andreas Zehender
email : zehender@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 PMTREEVIEWITEM_H
#define PMTREEVIEWITEM_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tqlistview.h>
class PMObject;
/**
* TQListViewItem for a @ref PMObject
*
* Each PMListViewItem is connected to a PMObject.
*/
class PMTreeViewItem : public TQListViewItem
{
public:
/**
* Constructs a new top-level list view item in the TQListView parent.
*/
PMTreeViewItem( PMObject* object, TQListView* parent );
/**
* Constructs a new list view item which is a child of parent and
* first in the parent's list of children.
*/
PMTreeViewItem( PMObject* object, TQListViewItem* parent );
/**
* Constructs a list view item which is a child of parent
* and is after after in the parent's list of children.
*/
PMTreeViewItem( PMObject* object, TQListView* parent, TQListViewItem* after );
/**
* Constructs a list view item which is a child of parent
* and is after after in the parent's list of children.
*/
PMTreeViewItem( PMObject* object, TQListViewItem* parent,
TQListViewItem* after );
/**
* Returns the connected @ref PMObject
*/
PMObject* object( ) const { return m_pObject; }
/**
* Returns a key that can be used for sorting, here the index in the
* parents list of children
*/
virtual TQString key( int column, bool ascending ) const;
/**
* Returns a pointer to the parent item
*/
PMTreeViewItem* parent( )
{
return ( PMTreeViewItem* ) TQListViewItem::parent( );
}
void setSelected( bool select );
/**
* Sets the text and pixmap
*/
void setDescriptions( );
private:
/**
* Initializes the selection at creation
*/
void initSelection( );
PMObject* m_pObject;
};
#endif
|