00001 /**************************************************************************** 00002 ** $Id: rclistviewitem.h,v 1.2 2006/01/05 11:04:08 leader Exp $ 00003 ** 00004 ** Code file of the Ananas select database window 00005 ** of Ananas Designer and Engine applications 00006 ** 00007 ** Created : 20031201 00008 ** 00009 ** Copyright (C) 2003-2004 Leader InfoTech. All rights reserved. 00010 ** 00011 ** This file is part of the Library of the Ananas 00012 ** automation accounting system. 00013 ** 00014 ** This file may be distributed and/or modified under the terms of the 00015 ** GNU General Public License version 2 as published by the Free Software 00016 ** Foundation and appearing in the file LICENSE.GPL included in the 00017 ** packaging of this file. 00018 ** 00019 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00020 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00021 ** 00022 ** See http://www.leaderit.ru/page=ananas or email sales@leaderit.ru 00023 ** See http://www.leaderit.ru/gpl/ for GPL licensing information. 00024 ** 00025 ** Contact org@leaderit.ru if any conditions of this licensing are 00026 ** not clear to you. 00027 ** 00028 **********************************************************************/ 00029 #ifndef RCLISTVIEWITEM_H 00030 #define RCLISTVIEWITEM_H 00031 00032 //#include <qdir.h> 00033 //#include <qstring.h> 00034 #include <qlistview.h> 00035 //#include <qlineedit.h> 00036 //#include <qstring.h> 00037 00038 //#include "deditrc.h" 00039 //#include "acfgrc.h" 00040 //#include "atests.h" 00041 00042 class QListView; 00043 class QListViewItem; 00044 00045 class rcListViewItem : public QListViewItem 00046 { 00047 public: 00048 QString rcfile; 00049 bool group; 00050 00051 rcListViewItem( QListView *parent, 00052 const QString &name = QString::null, 00053 const QString &rc = QString::null, 00054 bool fgroup = false ); 00055 00056 rcListViewItem( QListView *parent, 00057 rcListViewItem* after, 00058 const QString &name = QString::null, 00059 const QString &rc = QString::null, 00060 bool fgroup = false ); 00061 00062 rcListViewItem( rcListViewItem *parent, 00063 const QString &name = QString::null, 00064 const QString &rc = QString::null, 00065 bool fgroup = false ); 00066 00067 virtual ~rcListViewItem(); 00068 void init( const QString &rc = QString::null, bool fgroup = false ); 00069 }; 00070 #endif 00071