00001 /********************************************************************** 00002 ** ModulesDetail 00003 ** 00004 ** Display module information 00005 ** 00006 ** Copyright (C) 2002, Michael Lauer 00007 ** mickey@tm.informatik.uni-frankfurt.de 00008 ** http://www.Vanille.de 00009 ** 00010 ** Based on ProcessDetail by Dan Williams <williamsdr@acm.org> 00011 ** 00012 ** This file may be distributed and/or modified under the terms of the 00013 ** GNU General Public License version 2 as published by the Free Software 00014 ** Foundation and appearing in the file LICENSE.GPL included in the 00015 ** packaging of this file. 00016 ** 00017 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00018 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00019 ** 00020 **********************************************************************/ 00021 00022 #ifndef DETAIL_H 00023 #define DETAIL_H 00024 00025 #include <qwidget.h> 00026 00027 class QTextView; 00028 00029 class Detail : public QWidget 00030 { 00031 Q_OBJECT 00032 00033 public: 00034 Detail( QWidget * = 0x0, const char * = 0x0, WFlags = 0 ); 00035 ~Detail(); 00036 00037 QTextView* detailView; 00038 }; 00039 00040 #endif // DETAIL_H
1.4.2