OSDN Git Service

96b81e195c1c44104b704fc23cbf9fe4461ed480
[kita/kita.git] / kita / src / kitaui / listviewitem.h
1 /***************************************************************************
2 *   Copyright (C) 2004 by Kita Developers                                 *
3 *   ikemo@users.sourceforge.jp                                            *
4 *                                                                         *
5 *   This program is free software; you can redistribute it and/or modify  *
6 *   it under the terms of the GNU General Public License as published by  *
7 *   the Free Software Foundation; either version 2 of the License, or     *
8 *   (at your option) any later version.                                   *
9 ***************************************************************************/
10
11 #ifndef KITALISTVIEWITEM_H
12 #define KITALISTVIEWITEM_H
13
14 #include <QtGui/QTreeWidgetItem>
15
16 #include <kdemacros.h>
17
18 namespace Kita
19 {
20     class KDE_EXPORT ListViewItem : public QTreeWidgetItem
21     {
22     public:
23
24         ListViewItem(QTreeWidget *parent, QTreeWidgetItem *preceding,
25                 const QStringList& strings);
26
27         ListViewItem(QTreeWidget *parent, const QStringList& strings);
28
29         ListViewItem(QTreeWidgetItem *parent, QTreeWidgetItem *preceding,
30                 const QStringList& strings);
31
32         ListViewItem(QTreeWidgetItem *parent, const QStringList& strings);
33     };
34 }
35
36 #endif