QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
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 <QMenu>
25 #include <QString>
26 #include "qgis_gui.h"
27 #include "qgis_sip.h"
28 
29 class QStatusBar;
30 class QCloseEvent;
31 
36 class GUI_EXPORT QgsMessageLogViewer: public QDialog, private Ui::QgsMessageLogViewer
37 {
38  Q_OBJECT
39  public:
40 
45  QgsMessageLogViewer( QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
46 
47  public slots:
48 
52  void logMessage( const QString &message, const QString &tag, Qgis::MessageLevel level );
53 
54  protected:
55  void closeEvent( QCloseEvent *e ) override;
56  void reject() override;
57  bool eventFilter( QObject *obj, QEvent *ev ) override;
58 
59  private slots:
60  void showContextMenuForTabBar( QPoint point );
61  void closeTab( int index );
62 
63  private:
64 
65  QString mClickedAnchor;
66  QMenu *mTabBarContextMenu = nullptr;
67 };
68 
69 #endif
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
MessageLevel
Level for messages This will be used both for message log and message bar in application.
Definition: qgis.h:67
A generic dialog widget for displaying QGIS log messages.