Wireshark  4.3.0
The Wireshark network protocol analyzer
follow_stream_text.h
Go to the documentation of this file.
1 
10 #ifndef FOLLOW_STREAM_TEXT_H
11 #define FOLLOW_STREAM_TEXT_H
12 
13 #include <QPlainTextEdit>
14 
15 class FollowStreamText : public QPlainTextEdit
16 {
17  Q_OBJECT
18 public:
19  explicit FollowStreamText(QWidget *parent = 0);
20 
21 protected:
22  void mouseMoveEvent(QMouseEvent *event);
23  void mousePressEvent(QMouseEvent *event);
24  void leaveEvent(QEvent *event);
25 
26 signals:
27  // Perhaps this is not descriptive enough. We should add more words.
28  void mouseMovedToTextCursorPosition(int);
29  void mouseClickedOnTextCursorPosition(int);
30 
31 public slots:
32 
33 };
34 
35 #endif // FOLLOW_STREAM_TEXT_H
Definition: follow_stream_text.h:16