QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsmessagelogviewer.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmessagelogviewer.h - description
3  -------------------
4  begin : October 2011
5  copyright : (C) 2011 by Juergen E. Fischer
6  email : jef at norbit dot de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 #ifndef QGSMESSAGELOGVIEWER_H
18 #define QGSMESSAGELOGVIEWER_H
19 
20 #include "ui_qgsmessagelogviewer.h"
21 #include "qgsguiutils.h"
22 #include "qgsmessagelog.h"
23 
24 #include <QString>
25 #include "qgis_gui.h"
26 #include "qgis.h"
27 
28 class QStatusBar;
29 class QCloseEvent;
30 
35 class GUI_EXPORT QgsMessageLogViewer: public QDialog, private Ui::QgsMessageLogViewer
36 {
37  Q_OBJECT
38  public:
39 
44  QgsMessageLogViewer( QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
45 
46  public slots:
47 
51  void logMessage( const QString &message, const QString &tag, Qgis::MessageLevel level );
52 
53  protected:
54  void closeEvent( QCloseEvent *e ) override;
55  void reject() override;
56  bool eventFilter( QObject *obj, QEvent *ev ) override;
57 
58  private slots:
59  void closeTab( int index );
60 
61  private:
62 
63  QString mClickedAnchor;
64 };
65 
66 #endif
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:46
MessageLevel
Level for messages This will be used both for message log and message bar in application.
Definition: qgis.h:79
A generic dialog widget for displaying QGIS log messages.