10#ifndef COLUMN_EDITOR_FRAME_H
11#define COLUMN_EDITOR_FRAME_H
55 virtual void showEvent(QShowEvent *event);
68 void on_typeComboBox_activated(
int index);
74 void on_fieldsNameLineEdit_textEdited(
const QString &fields);
80 void on_occurrenceLineEdit_textEdited(
const QString &occurrence);
85 void on_buttonBox_rejected();
90 void on_buttonBox_accepted();
95 void checkCanResolve(
void);
102 bool syntaxIsValid(
void);
105 Ui::ColumnEditorFrame *ui;
111 QString saved_fields_;
114 QString saved_occurrence_;
120 void setFields(
int index);
126 void typeChanged(
int index);
A QFrame that shows and hides itself with a slide animation.
Definition accordion_frame.h:21
An accordion frame for editing packet list column properties.
Definition column_editor_frame.h:23
void editColumn(int column)
Sets up the editor for a specific column index.
Definition column_editor_frame.cpp:139
virtual void keyPressEvent(QKeyEvent *event)
Handles key press events, typically for accepting/rejecting the dialog.
Definition column_editor_frame.cpp:219
void columnEdited()
Signal emitted when a column's properties have been successfully edited.
~ColumnEditorFrame()
Destroys the ColumnEditorFrame.
Definition column_editor_frame.cpp:79
virtual void showEvent(QShowEvent *event)
Handles the show event for the frame.
Definition column_editor_frame.cpp:150