QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
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 "qgisgui.h"
24 #include "qgserror.h"
25 
29 class GUI_EXPORT QgsErrorDialog: public QDialog, private Ui::QgsErrorDialogBase
30 {
31  Q_OBJECT
32  public:
33  QgsErrorDialog( const QgsError & theError, const QString & theTitle, QWidget *parent = nullptr, const Qt::WindowFlags& fl = QgisGui::ModalDialogFlags );
34  ~QgsErrorDialog();
35 
42  static void show( const QgsError & theError, const QString & theTitle, QWidget *parent = nullptr, const Qt::WindowFlags& fl = QgisGui::ModalDialogFlags );
43 
44  public slots:
45  void on_mDetailPushButton_clicked();
46  void on_mDetailCheckBox_stateChanged( int state );
47 
48  private:
49  QgsError mError;
50 };
51 
52 #endif
static const Qt::WindowFlags ModalDialogFlags
Definition: qgisgui.h:50
QgsError is container for error messages (report).
Definition: qgserror.h:80
typedef WindowFlags
void show()