Vuo  2.0.3
VuoInfoDialog.hh
Go to the documentation of this file.
1 
10 #pragma once
11 
15 class VuoInfoDialog : public QMessageBox
16 {
17  Q_OBJECT
18 
19 public:
20  VuoInfoDialog(QWidget *parent, QString summary, QString details, QString checkboxLabel, QString settingsKey);
21  void show();
22 
23 signals:
24  void notShown();
25 
26 private:
27  QString summary;
28  QString details;
29  QString checkboxLabel;
30  QString settingsKey;
31 };