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/uat_dialog.h | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 ui/qt/uat_dialog.h (limited to 'ui/qt/uat_dialog.h') diff --git a/ui/qt/uat_dialog.h b/ui/qt/uat_dialog.h new file mode 100644 index 00000000..92d7d21b --- /dev/null +++ b/ui/qt/uat_dialog.h @@ -0,0 +1,71 @@ +/** @file + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef UAT_DIALOG_H +#define UAT_DIALOG_H + +#include + +#include + +#include "geometry_state_dialog.h" +#include +#include + +class QComboBox; +class QPushButton; + +struct epan_uat; + +namespace Ui { +class UatDialog; +} + +class UatDialog : public GeometryStateDialog +{ + Q_OBJECT + +public: + explicit UatDialog(QWidget *parent = 0, struct epan_uat *uat = NULL); + ~UatDialog(); + + void setUat(struct epan_uat *uat = NULL); + +private slots: + void copyFromProfile(QString filename); + void modelDataChanged(const QModelIndex &topLeft); + void modelRowsRemoved(); + void modelRowsReset(); + void on_uatTreeView_currentItemChanged(const QModelIndex ¤t, const QModelIndex &previous); + void acceptChanges(); + void rejectChanges(); + void on_newToolButton_clicked(); + void on_deleteToolButton_clicked(); + void on_copyToolButton_clicked(); + void on_moveUpToolButton_clicked(); + void on_moveDownToolButton_clicked(); + void on_clearToolButton_clicked(); + void on_buttonBox_helpRequested(); + +private: + Ui::UatDialog *ui; + UatModel *uat_model_; + UatDelegate *uat_delegate_; + QPushButton *ok_button_; + QPushButton *help_button_; + struct epan_uat *uat_; + + void checkForErrorHint(const QModelIndex ¤t, const QModelIndex &previous); + bool trySetErrorHintFromField(const QModelIndex &index); + void applyChanges(); + void addRecord(bool copy_from_current = false); + void resizeColumns(); +}; + +#endif // UAT_DIALOG_H -- cgit v1.2.3