1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef PERFRECORDDISPLAY_H |
6 | #define PERFRECORDDISPLAY_H |
7 | |
8 | #include <QWidget> |
9 | |
10 | class PerfRecordDisplayPrivate; |
11 | class PerfRecordDisplay : public QWidget |
12 | { |
13 | Q_OBJECT |
14 | PerfRecordDisplayPrivate *const d; |
15 | public: |
16 | explicit PerfRecordDisplay(QWidget* parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags()); |
17 | virtual ~PerfRecordDisplay(); |
18 | |
19 | signals: |
20 | void showWebBrowserGP(bool flag); |
21 | }; |
22 | |
23 | #endif // PERFRECORDDISPLAY_H |
24 | |