summaryrefslogtreecommitdiffstats
path: root/ui/qt/widgets/follow_stream_text.h
blob: 0dd8dca53a0c2e874e1a72ab5bfdb848730f89c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/** @file
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef FOLLOW_STREAM_TEXT_H
#define FOLLOW_STREAM_TEXT_H

#include <QPlainTextEdit>

class FollowStreamText : public QPlainTextEdit
{
    Q_OBJECT
public:
    explicit FollowStreamText(QWidget *parent = 0);

protected:
    void mouseMoveEvent(QMouseEvent *event);
    void mousePressEvent(QMouseEvent *event);
    void leaveEvent(QEvent *event);

signals:
    // Perhaps this is not descriptive enough. We should add more words.
    void mouseMovedToTextCursorPosition(int);
    void mouseClickedOnTextCursorPosition(int);

public slots:

};

#endif // FOLLOW_STREAM_TEXT_H