00001 /*************************************************************************** 00002 io_report.h 00003 ------------------- 00004 begin : Mo 16.03.2009 00005 copyright : (C) 2009 by Andre Simon 00006 email : andre.simon1@gmx.de 00007 ***************************************************************************/ 00008 00009 /* 00010 This file is part of Highlight. 00011 00012 Highlight is free software: you can redistribute it and/or modify 00013 it under the terms of the GNU General Public License as published by 00014 the Free Software Foundation, either version 3 of the License, or 00015 (at your option) any later version. 00016 00017 Highlight is distributed in the hope that it will be useful, 00018 but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 GNU General Public License for more details. 00021 00022 You should have received a copy of the GNU General Public License 00023 along with Highlight. If not, see <http://www.gnu.org/licenses/>. 00024 */ 00025 00026 #ifndef IO_REPORT_H 00027 #define IO_REPORT_H 00028 00029 #include <QtGui/QDialog> 00030 00031 namespace Ui { 00032 class io_report; 00033 } 00034 00035 class io_report : public QDialog { 00036 Q_OBJECT 00037 Q_DISABLE_COPY(io_report) 00038 public: 00039 explicit io_report(QWidget *parent = 0); 00040 virtual ~io_report(); 00041 00042 void addInputErrors(QStringList & list); 00043 void addOutputErrors(QStringList & list); 00044 void addReformatErrors(QStringList & list); 00045 00046 bool removeInputErrorFiles(); 00047 00048 00049 protected: 00050 virtual void changeEvent(QEvent *e); 00051 00052 private: 00053 Ui::io_report *m_ui; 00054 }; 00055 00056 #endif // IO_REPORT_H