diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-07-30 20:55:52 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-07-30 20:55:52 +0200 |
commit | 2da24be2e8f8ffa60e371557d75183b67fd2ea24 (patch) | |
tree | ec436bf94ad75fed1e0779d35a2bd7a64833babd /qhexedit2 | |
parent | 98c665b409595238d73f550f95c7bf83ec6142da (diff) |
Added UI to insert/delete bytes into a packet.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'qhexedit2')
-rw-r--r-- | qhexedit2/src/qhexedit.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qhexedit2/src/qhexedit.h b/qhexedit2/src/qhexedit.h index 1a5801a..f06aac5 100644 --- a/qhexedit2/src/qhexedit.h +++ b/qhexedit2/src/qhexedit.h @@ -365,7 +365,7 @@ public: QColor selectionColor(); void setSelectionColor(const QColor &color); -protected: +public: // Handle events void keyPressEvent(QKeyEvent *event); void mouseMoveEvent(QMouseEvent * event); @@ -373,7 +373,6 @@ protected: void paintEvent(QPaintEvent *event); void resizeEvent(QResizeEvent *); virtual bool focusNextPrevChild(bool next); -private: // Handle selections void resetSelection(qint64 pos); // set selectionStart and selectionEnd to pos void resetSelection(); // set selectionEnd to selectionStart |