Base class for Wireshark specific dialogs that require interaction with a CaptureFile.
More...
#include <wireshark_dialog.h>
|
| virtual void | keyPressEvent (QKeyEvent *event) |
| | Handles key press events.
|
| |
|
virtual void | accept () |
| | Accepts the dialog.
|
| |
| virtual void | reject () |
| | Rejects the dialog.
|
| |
| virtual void | beginRetapPackets () |
| | Mark the start of a code block that retaps packets. If the user closes the dialog while tapping, the dialog will not be destroyed until endRetapPackets is called.
|
| |
| virtual void | endRetapPackets () |
| | Mark the end of a code block that retaps packets. If the user has closed the dialog it will be destroyed at this point.
|
| |
| void | setWindowSubtitle (const QString &subtitle) |
| | Set the window subtitle, e.g. "Foo Timeouts". The subtitle and file name will be added to the dialog window title.
|
| |
| const QString & | windowSubtitle () |
| | Retrieves the current window subtitle.
|
| |
|
virtual void | updateWidgets () |
| | Updates the state and contents of the dialog's widgets.
|
| |
| bool | registerTapListener (const char *tap_name, void *tap_data, const char *filter, unsigned flags, tap_reset_cb tap_reset, tap_packet_cb tap_packet, tap_draw_cb tap_draw) |
| | Convenience wrapper for register_tap_listener. Tap listeners registered via this function are automatically removed during destruction. They can also be explicitly removed using remove_tap_listener or removeTapListeners.
|
| |
| virtual void | removeTapListeners () |
| | Remove all tap listeners registered via registerTapListener.
|
| |
| bool | dialogClosed () const |
| | Check to see if the user has closed (and not minimized) the dialog.
|
| |
| int | retapDepth () const |
| | Check to see if we're currently retapping. If this is positive, tapping will fail in process_specified_records.
|
| |
| virtual void | captureFileClosing () |
| | Called when the capture file is about to close. This can be used to disconnect taps and similar actions. updateWidgets() is called at the end. To enable/disable widgets captureFileClosed() is more suitable.
|
| |
| virtual void | captureFileClosed () |
| | Called when the capture file was closed. This can be used to enable or disable widgets according to the state of file_closed_. updateWidgets() is called at the end.
|
| |
| void | loadGeometry (int width=0, int height=0, const QString &dialog_name=QString()) |
| | Loads the geometry and splitter state for the dialog.
|
| |
| void | loadSplitterState (QSplitter *splitter=nullptr) |
| | Loads the state of a splitter for the dialog.
|
| |
|
|
CaptureFile & | cap_file_ |
| | Reference to the underlying capture file.
|
| |
|
bool | file_closed_ |
| | Flag indicating if the capture file has been closed.
|
| |
Base class for Wireshark specific dialogs that require interaction with a CaptureFile.
◆ WiresharkDialog()
| WiresharkDialog::WiresharkDialog |
( |
QWidget & |
parent, |
|
|
CaptureFile & |
capture_file |
|
) |
| |
|
explicit |
Constructs a new WiresharkDialog object.
- Parameters
-
| parent | The parent widget. |
| capture_file | The associated capture file. |
◆ beginRetapPackets()
| void WiresharkDialog::beginRetapPackets |
( |
| ) |
|
|
protectedvirtual |
Mark the start of a code block that retaps packets. If the user closes the dialog while tapping, the dialog will not be destroyed until endRetapPackets is called.
This is automatically called when tapping begins, but might need to be called explicitly if any member functions are called or variables are accessed after tapping is finished.
Reimplemented in ExportObjectDialog.
◆ captureEvent
Handles capture events.
- Parameters
-
◆ captureFileClosed()
| void WiresharkDialog::captureFileClosed |
( |
| ) |
|
|
protectedvirtual |
◆ captureFileClosing()
| void WiresharkDialog::captureFileClosing |
( |
| ) |
|
|
protectedvirtual |
Called when the capture file is about to close. This can be used to disconnect taps and similar actions. updateWidgets() is called at the end. To enable/disable widgets captureFileClosed() is more suitable.
Reimplemented in BluetoothDeviceDialog, BluetoothHciSummaryDialog, ConversationDialog, EndpointDialog, IOGraphDialog, LteMacStatisticsDialog, LteRlcStatisticsDialog, MulticastStatisticsDialog, PacketDialog, RtpStreamDialog, VoipCallsDialog, WlanStatisticsDialog, DisStreamAnalysisDialog, DisStreamDialog, and PlotDialog.
◆ dialogClosed()
| bool WiresharkDialog::dialogClosed |
( |
| ) |
const |
|
inlineprotected |
Check to see if the user has closed (and not minimized) the dialog.
- Returns
- true if the dialog has been closed, false otherwise.
◆ endRetapPackets()
| void WiresharkDialog::endRetapPackets |
( |
| ) |
|
|
protectedvirtual |
Mark the end of a code block that retaps packets. If the user has closed the dialog it will be destroyed at this point.
This is automatically called when tapping ends, but might need to be called explicitly if any member functions are called or variables are accessed after tapping is finished.
Reimplemented in ExportObjectDialog.
◆ fileClosed()
| bool WiresharkDialog::fileClosed |
( |
| ) |
const |
|
inline |
Checks if the capture file has been closed.
- Returns
- true if the file has been closed, false otherwise.
◆ keyPressEvent()
| virtual void WiresharkDialog::keyPressEvent |
( |
QKeyEvent * |
event | ) |
|
|
inlineprotectedvirtual |
Handles key press events.
- Parameters
-
| event | The key press event. |
Reimplemented in BluetoothAttServerAttributesDialog, BluetoothDeviceDialog, BluetoothDevicesDialog, BluetoothHciSummaryDialog, FollowStreamDialog, IOGraphDialog, LteRlcGraphDialog, SequenceDialog, ShowPacketBytesDialog, PlotDialog, and ExportObjectDialog.
◆ registerTapListener()
| bool WiresharkDialog::registerTapListener |
( |
const char * |
tap_name, |
|
|
void * |
tap_data, |
|
|
const char * |
filter, |
|
|
unsigned |
flags, |
|
|
tap_reset_cb |
tap_reset, |
|
|
tap_packet_cb |
tap_packet, |
|
|
tap_draw_cb |
tap_draw |
|
) |
| |
|
protected |
Convenience wrapper for register_tap_listener. Tap listeners registered via this function are automatically removed during destruction. They can also be explicitly removed using remove_tap_listener or removeTapListeners.
Shows a warning dialog if registration is unsuccessful.
- Parameters
-
| tap_name | A registered tap name. |
| tap_data | A unique pointer. Usually 'this'. |
| filter | A display filter. |
| flags | See register_tap_listener. |
| tap_reset | Reset callback. |
| tap_packet | Per-packet callback. |
| tap_draw | Draw callback. |
- Returns
- True if registration was successful, false otherwise.
◆ reject()
| void WiresharkDialog::reject |
( |
| ) |
|
|
protectedvirtual |
◆ removeTapListeners()
| void WiresharkDialog::removeTapListeners |
( |
| ) |
|
|
protectedvirtual |
Remove all tap listeners registered via registerTapListener.
Reimplemented in VoipCallsDialog.
◆ retapDepth()
| int WiresharkDialog::retapDepth |
( |
| ) |
const |
|
inlineprotected |
Check to see if we're currently retapping. If this is positive, tapping will fail in process_specified_records.
- Returns
- The current retap depth. (In current implementation, 0 or 1.)
◆ setWindowSubtitle()
| void WiresharkDialog::setWindowSubtitle |
( |
const QString & |
subtitle | ) |
|
|
protected |
Set the window subtitle, e.g. "Foo Timeouts". The subtitle and file name will be added to the dialog window title.
- Parameters
-
| subtitle | The subtitle to add. It should be unique, short, and descriptive. |
◆ windowSubtitle()
| const QString & WiresharkDialog::windowSubtitle |
( |
| ) |
|
|
inlineprotected |
Retrieves the current window subtitle.
- Returns
- The window subtitle string.
The documentation for this class was generated from the following files:
- /builds/wireshark/wireshark/ui/qt/wireshark_dialog.h
- /builds/wireshark/wireshark/ui/qt/wireshark_dialog.cpp