Ananas Library 0.9.5
rclistviewitem.h
1/****************************************************************************
2** $Id: rclistviewitem.h,v 1.2 2006/01/05 11:04:08 leader Exp $
3**
4** Code file of the Ananas select database window
5** of Ananas Designer and Engine applications
6**
7** Created : 20031201
8**
9** Copyright (C) 2003-2004 Leader InfoTech. All rights reserved.
10**
11** This file is part of the Library of the Ananas
12** automation accounting system.
13**
14** This file may be distributed and/or modified under the terms of the
15** GNU General Public License version 2 as published by the Free Software
16** Foundation and appearing in the file LICENSE.GPL included in the
17** packaging of this file.
18**
19** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
20** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21**
22** See http://www.leaderit.ru/page=ananas or email sales@leaderit.ru
23** See http://www.leaderit.ru/gpl/ for GPL licensing information.
24**
25** Contact org@leaderit.ru if any conditions of this licensing are
26** not clear to you.
27**
28**********************************************************************/
29#ifndef RCLISTVIEWITEM_H
30#define RCLISTVIEWITEM_H
31
32//#include <qdir.h>
33//#include <qstring.h>
34#include <qlistview.h>
35//#include <qlineedit.h>
36//#include <qstring.h>
37
38//#include "deditrc.h"
39//#include "acfgrc.h"
40//#include "atests.h"
41
42class QListView;
43class QListViewItem;
44
45class rcListViewItem : public QListViewItem
46{
47public:
48 QString rcfile;
49 bool group;
50
51 rcListViewItem( QListView *parent,
52 const QString &name = QString::null,
53 const QString &rc = QString::null,
54 bool fgroup = false );
55
56 rcListViewItem( QListView *parent,
57 rcListViewItem* after,
58 const QString &name = QString::null,
59 const QString &rc = QString::null,
60 bool fgroup = false );
61
62 rcListViewItem( rcListViewItem *parent,
63 const QString &name = QString::null,
64 const QString &rc = QString::null,
65 bool fgroup = false );
66
67 virtual ~rcListViewItem();
68 void init( const QString &rc = QString::null, bool fgroup = false );
69};
70#endif
71