summaryrefslogtreecommitdiffstats
path: root/ui/qt/column_editor_frame.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/column_editor_frame.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/column_editor_frame.h')
-rw-r--r--ui/qt/column_editor_frame.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/ui/qt/column_editor_frame.h b/ui/qt/column_editor_frame.h
new file mode 100644
index 00000000..3778fb0d
--- /dev/null
+++ b/ui/qt/column_editor_frame.h
@@ -0,0 +1,52 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef COLUMN_EDITOR_FRAME_H
+#define COLUMN_EDITOR_FRAME_H
+
+#include "accordion_frame.h"
+
+namespace Ui {
+class ColumnEditorFrame;
+}
+
+class ColumnEditorFrame : public AccordionFrame
+{
+ Q_OBJECT
+
+public:
+ explicit ColumnEditorFrame(QWidget *parent = nullptr);
+ ~ColumnEditorFrame();
+ void editColumn(int column);
+
+signals:
+ void columnEdited();
+
+protected:
+ virtual void showEvent(QShowEvent *event);
+ virtual void keyPressEvent(QKeyEvent *event);
+
+private slots:
+ void on_typeComboBox_activated(int index);
+ void on_fieldsNameLineEdit_textEdited(const QString &fields);
+ void on_occurrenceLineEdit_textEdited(const QString &occurrence);
+ void on_buttonBox_rejected();
+ void on_buttonBox_accepted();
+ void checkCanResolve(void);
+
+private:
+ bool syntaxIsValid(void);
+ Ui::ColumnEditorFrame *ui;
+ int cur_column_;
+ QString saved_fields_;
+ QString saved_occurrence_;
+ void setFields(int index);
+};
+
+#endif // COLUMN_EDITOR_FRAME_H