QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgserrordialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgserrordialog.h - error dialog
3  -------------------
4  begin : October 2012
5  copyright : (C) October 2012 Radim Blazek
6  email : radim dot blazek at gmail dot com
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 QGSERRORDIALOG_H
18 #define QGSERRORDIALOG_H
19 
20 #include <QDialog>
21 
22 #include "ui_qgserrordialogbase.h"
23 #include "qgsguiutils.h"
24 #include "qgserror.h"
25 #include "qgis_gui.h"
26 #include "qgis.h"
27 
32 class GUI_EXPORT QgsErrorDialog: public QDialog, private Ui::QgsErrorDialogBase
33 {
34  Q_OBJECT
35  public:
36 
40  QgsErrorDialog( const QgsError &error, const QString &title, QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
41 
49  static void show( const QgsError &error, const QString &title, QWidget *parent = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
50 
51  private slots:
52  void mDetailPushButton_clicked();
53  void mDetailCheckBox_stateChanged( int state );
54 
55  private:
56  QgsError mError;
57 };
58 
59 #endif
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:46
QgsError is container for error messages (report).
Definition: qgserror.h:80