summaryrefslogtreecommitdiffstats
path: root/ui/qt/file_set_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/file_set_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/file_set_dialog.h')
-rw-r--r--ui/qt/file_set_dialog.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/ui/qt/file_set_dialog.h b/ui/qt/file_set_dialog.h
new file mode 100644
index 0000000..d415889
--- /dev/null
+++ b/ui/qt/file_set_dialog.h
@@ -0,0 +1,58 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef FILE_SET_DIALOG_H
+#define FILE_SET_DIALOG_H
+
+#include <config.h>
+
+#include <glib.h>
+
+#include "file.h"
+#include "fileset.h"
+
+#include "geometry_state_dialog.h"
+
+#include <QItemSelection>
+
+namespace Ui {
+class FileSetDialog;
+}
+
+class FilesetEntryModel;
+
+class FileSetDialog : public GeometryStateDialog
+{
+ Q_OBJECT
+
+public:
+ explicit FileSetDialog(QWidget *parent = 0);
+ ~FileSetDialog();
+
+ void fileOpened(const capture_file *cf);
+ void fileClosed();
+ void addFile(fileset_entry *entry = NULL);
+ void beginAddFile();
+ void endAddFile();
+
+signals:
+ void fileSetOpenCaptureFile(QString);
+
+private slots:
+ void selectionChanged(const QItemSelection &selected, const QItemSelection &);
+ void on_buttonBox_helpRequested();
+
+private:
+ Ui::FileSetDialog *fs_ui_;
+ FilesetEntryModel *fileset_entry_model_;
+ QPushButton *close_button_;
+ int cur_idx_;
+};
+
+#endif // FILE_SET_DIALOG_H