From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- ui/qt/file_set_dialog.h | 58 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 ui/qt/file_set_dialog.h (limited to 'ui/qt/file_set_dialog.h') diff --git a/ui/qt/file_set_dialog.h b/ui/qt/file_set_dialog.h new file mode 100644 index 00000000..d4158898 --- /dev/null +++ b/ui/qt/file_set_dialog.h @@ -0,0 +1,58 @@ +/** @file + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef FILE_SET_DIALOG_H +#define FILE_SET_DIALOG_H + +#include + +#include + +#include "file.h" +#include "fileset.h" + +#include "geometry_state_dialog.h" + +#include + +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 -- cgit v1.2.3