logwindow.h

00001 
00002 /***************************************************************************
00003  *   This file is part of Aspect, a simple PEC tool.                       *
00004  *                                                                         *
00005  *   Copyright (C) 2007 by Wolfgang Hoffmann <woho@woho.de>                *
00006  *                                                                         *
00007  *   This program is free software, licensed under the GPL v2.             *
00008  *   See the file COPYING for more details.                                *
00009  ***************************************************************************/
00010 
00011 
00012 #ifndef ASPECT_LOGWINDOW_H
00013 #define ASPECT_LOGWINDOW_H
00014 
00015 
00016 #include <QDialog>
00017 
00018     class QTime;
00019 class QString;
00020 
00021 namespace Ui { class LogDialog; };
00022 
00023 
00024 class LogDialog: public QDialog
00025     {
00026     Q_OBJECT
00027 
00028 public:
00029     LogDialog(QWidget *pParent = 0);
00030     ~LogDialog();
00031 
00032 public slots:
00033     void append(const QString &qsText, bool bComplete);
00034 
00035 private:
00036     Ui::LogDialog *m_pUi;
00037     };
00038 
00039 
00040 #endif // ASPECT_LOGWINDOW_H
00041 

Generated on Sun Jun 3 16:45:46 2007 for Aspect by  doxygen 1.5.1