Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
funnel_text_dialog.h
Go to the documentation of this file.
1
10#ifndef FUNNEL_TEXT_DIALOG_H
11#define FUNNEL_TEXT_DIALOG_H
12
13#include "epan/funnel.h"
15
16#include <QDialog>
17
18namespace Ui {
20}
21
24 FunnelTextDialog* funnel_text_dialog;
25};
26
34{
35 Q_OBJECT
36
37public:
41 explicit FunnelTextDialog(QWidget *parent, const QString &title = QString());
42
45
49 void reject();
50
51 // Funnel ops
56 static struct _funnel_text_window_t *textWindowNew(QWidget *parent, const QString title);
57
60 void setText(const QString text);
61
64 void appendText(const QString text);
65
68 void prependText(const QString text);
69
73 void clearText();
74
77 const char *getText();
78
82 void setCloseCallback(text_win_close_cb_t close_cb, void* close_cb_data);
83
86 void setTextEditable(bool editable);
87
91 void addButton(funnel_bt_t *button_cb, QString label);
92
93private slots:
97 void buttonClicked();
98
101 void on_findLineEdit_textChanged(const QString &pattern);
102
103
104private:
105 Ui::FunnelTextDialog *ui;
106
107 struct _funnel_text_window_t funnel_text_window_;
108 text_win_close_cb_t close_cb_;
109 void *close_cb_data_;
110};
111
112extern "C" {
113
120void text_window_set_text(funnel_text_window_t* ftw, const char* text);
121
128void text_window_append(funnel_text_window_t *ftw, const char* text);
135void text_window_prepend(funnel_text_window_t* ftw, const char* text);
136
143
151
159void text_window_set_close_cb(funnel_text_window_t *ftw, text_win_close_cb_t close_cb, void* close_cb_data);
160
167void text_window_set_editable(funnel_text_window_t* ftw, bool editable);
168
175
183void text_window_add_button(funnel_text_window_t* ftw, funnel_bt_t* funnel_button, const char* label);
184}
185
186
187#endif // FUNNEL_TEXT_DIALOG_H
A dialog displaying text output from a Lua funnel script.
Definition funnel_text_dialog.h:34
void setText(const QString text)
Replace the dialog's text content.
Definition funnel_text_dialog.cpp:83
void reject()
Handle dialog rejection, invoking the close callback if set.
Definition funnel_text_dialog.cpp:52
void setTextEditable(bool editable)
Set whether the text area is editable by the user.
Definition funnel_text_dialog.cpp:116
~FunnelTextDialog()
Destroy the FunnelTextDialog.
Definition funnel_text_dialog.cpp:47
void clearText()
Clear all text from the dialog.
Definition funnel_text_dialog.cpp:100
static struct _funnel_text_window_t * textWindowNew(QWidget *parent, const QString title)
Create a new funnel text window.
Definition funnel_text_dialog.cpp:76
void prependText(const QString text)
Prepend text to the beginning of the dialog's content.
Definition funnel_text_dialog.cpp:94
const char * getText()
Return the current text content as a C string.
Definition funnel_text_dialog.cpp:105
void addButton(funnel_bt_t *button_cb, QString label)
Add a script-defined button to the dialog.
Definition funnel_text_dialog.cpp:121
void appendText(const QString text)
Append text to the end of the dialog's content.
Definition funnel_text_dialog.cpp:88
void setCloseCallback(text_win_close_cb_t close_cb, void *close_cb_data)
Set the callback to invoke when the dialog is closed.
Definition funnel_text_dialog.cpp:110
A dialog that remembers its geometry and splitter state.
Definition geometry_state_dialog.h:20
void text_window_clear(funnel_text_window_t *ftw)
Clears the text in the funnel text window.
Definition funnel_text_dialog.cpp:195
void text_window_append(funnel_text_window_t *ftw, const char *text)
Append text to a funnel text window.
Definition funnel_text_dialog.cpp:181
void text_window_set_editable(funnel_text_window_t *ftw, bool editable)
Set the editable state of the text window.
Definition funnel_text_dialog.cpp:217
void text_window_prepend(funnel_text_window_t *ftw, const char *text)
Prepend text to a funnel text window.
Definition funnel_text_dialog.cpp:188
void text_window_set_close_cb(funnel_text_window_t *ftw, text_win_close_cb_t close_cb, void *close_cb_data)
Set the close callback for a funnel text window.
Definition funnel_text_dialog.cpp:210
void text_window_set_text(funnel_text_window_t *ftw, const char *text)
Set the text in a funnel text window.
Definition funnel_text_dialog.cpp:174
void text_window_add_button(funnel_text_window_t *ftw, funnel_bt_t *funnel_button, const char *label)
Adds a button to the text window.
Definition funnel_text_dialog.cpp:231
void text_window_destroy(funnel_text_window_t *ftw)
Destroys a funnel text window.
Definition funnel_text_dialog.cpp:224
const char * text_window_get_text(funnel_text_window_t *ftw)
Gets the text from a funnel text window.
Definition funnel_text_dialog.cpp:202
Represents a button attached to a funnel text window, bundling its callback, data,...
Definition funnel.h:37
Definition tap-funnel.c:21