summaryrefslogtreecommitdiffstats
path: root/ui/qt/remote_settings_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/remote_settings_dialog.h')
-rw-r--r--ui/qt/remote_settings_dialog.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/ui/qt/remote_settings_dialog.h b/ui/qt/remote_settings_dialog.h
new file mode 100644
index 00000000..8e751e09
--- /dev/null
+++ b/ui/qt/remote_settings_dialog.h
@@ -0,0 +1,42 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef REMOTE_SETTINGS_DIALOG_H
+#define REMOTE_SETTINGS_DIALOG_H
+
+#include <config.h>
+
+#ifdef HAVE_PCAP_REMOTE
+#include <QDialog>
+#include "capture_opts.h"
+
+namespace Ui {
+class RemoteSettingsDialog;
+}
+
+class RemoteSettingsDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit RemoteSettingsDialog(QWidget *parent = 0, interface_t *iface = NULL);
+ ~RemoteSettingsDialog();
+
+signals:
+ void remoteSettingsChanged(interface_t *iface);
+
+private slots:
+ void on_buttonBox_accepted();
+
+private:
+ Ui::RemoteSettingsDialog *ui;
+ interface_t mydevice;
+};
+#endif
+#endif // REMOTE_SETTINGS_DIALOG_H