summaryrefslogtreecommitdiffstats
path: root/ui/qt/simple_dialog.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /ui/qt/simple_dialog.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ui/qt/simple_dialog.h')
-rw-r--r--ui/qt/simple_dialog.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/ui/qt/simple_dialog.h b/ui/qt/simple_dialog.h
new file mode 100644
index 0000000..2afda98
--- /dev/null
+++ b/ui/qt/simple_dialog.h
@@ -0,0 +1,51 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef SIMPLE_DIALOG_H
+#define SIMPLE_DIALOG_H
+
+#include <config.h>
+
+#include <stdio.h>
+
+#include <glib.h>
+
+#include "ui/simple_dialog.h"
+
+#include <QPair>
+#include <QString>
+
+typedef QPair<QString,QString> MessagePair;
+
+class QCheckBox;
+class QMessageBox;
+class QWidget;
+
+// This might be constructed before Qt is initialized and must be a plain, non-Qt object.
+class SimpleDialog
+{
+public:
+ explicit SimpleDialog(QWidget *parent, ESD_TYPE_E type, int btn_mask, const char *msg_format, va_list ap);
+ ~SimpleDialog();
+
+ static void displayQueuedMessages(QWidget *parent = 0);
+ static QString dontShowThisAgain();
+ void setDetailedText(QString text) { detailed_text_ = text; }
+ void setCheckBox(QCheckBox *cb) { check_box_ = cb; }
+ int exec();
+ void show();
+
+private:
+ const MessagePair splitMessage(QString &message) const;
+ QString detailed_text_;
+ QCheckBox *check_box_;
+ QMessageBox *message_box_;
+};
+
+#endif // SIMPLE_DIALOG_H