diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-09-30 14:36:13 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-09-30 14:36:13 +0200 |
commit | c23c82523b32dccc912720dc83030f8abfab70cf (patch) | |
tree | 268a0af28cfef2ea690883812ae882114fe6a192 /mainwindow.h | |
parent | e684cb72f4ac5092f83e3949248799dc0af8a5f2 (diff) |
Make Ethernet / Port editable.
* CMake: Thread Sanitizer
* Main Window status bar updater
* Track mouse movement
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'mainwindow.h')
-rw-r--r-- | mainwindow.h | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/mainwindow.h b/mainwindow.h index 9ccf159..a7d3a37 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -5,6 +5,7 @@ #include "pcapplusplus.h" #include "qhexedit2/src/qhexedit.h" +#include <atomic> #include <optional> #include <QMainWindow> #include <QMenu> @@ -25,6 +26,9 @@ public: bool updateTableRow(size_t index); private: + bool eventFilter(QObject *obj, QEvent *event); + void updateStatusBarMessage(const QString & message); + struct { QMenu menu; QAction randomize; @@ -37,12 +41,19 @@ private: QAction deleteBytes; QAction deleteSelection; QHexEdit editor; - ByteWindow bytewindow; + ByteWindow *bytewindow = nullptr; } myHexEdit; - time_t firstPacketTs; - Ui::MainWindow *ui; - PcapPlusPlus *ppp; + struct { + int x; + int y; + } mouse; + + time_t firstPacketTs = 0; + Ui::MainWindow *ui = nullptr; + QString statusbarMessage; + PcapPlusPlus *ppp = nullptr; + std::atomic<bool> isProcessing = false; signals: void processPcap(); |