summaryrefslogtreecommitdiffstats
path: root/src/qdbus/qdbusviewer/logviewer.h
blob: b9f18b0a5161d7427bfdf1a259c58e7ae847fb21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2016 Tasuku Suzuki <stasuku@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef LOGVIEWER_H
#define LOGVIEWER_H

#include <QtWidgets/QTextBrowser>

class LogViewer : public QTextBrowser
{
    Q_OBJECT
public:
    explicit LogViewer(QWidget *parent = 0);

protected:
    void contextMenuEvent(QContextMenuEvent *event) override;
};

#endif // LOGVIEWER_H