1 /*************************************************************************** 2 * Copyright (C) 2004-2021 by Pere Constans 3 * constans@molspaces.com 4 * cb2Bib version 2.0.1. Licensed under the GNU GPL version 3. 5 * See the LICENSE file that comes with this distribution. 6 ***************************************************************************/ 7 #ifndef C2BBIBPREPARSERLOG_H 8 #define C2BBIBPREPARSERLOG_H 9 10 #include "ui_c2bLogWidget.h" 11 12 #include <QDialog> 13 14 15 class QCheckBox; 16 17 18 class c2bBibPreparserLog : public QDialog 19 { 20 21 Q_OBJECT 22 23 public: 24 explicit c2bBibPreparserLog(QWidget* parentw = 0); 25 ~c2bBibPreparserLog(); 26 27 void append(const QString& ms); 28 29 30 public slots: 31 void show(); 32 33 34 protected slots: 35 void help(); 36 37 38 private: 39 QCheckBox* PreparserShowLog; 40 Ui::c2bLogWidget ui; 41 void closeEvent(QCloseEvent* qevent); 42 }; 43 44 #endif