KSeExpr  4.0.4.0
ExprPopupDoc.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: 2011-2019 Disney Enterprises, Inc.
2 // SPDX-License-Identifier: LicenseRef-Apache-2.0
3 // SPDX-FileCopyrightText: 2020 L. E. Segovia <amy@amyspark.me>
4 // SPDX-License-Identifier: GPL-3.0-or-later
5 
6 #pragma once
7 
8 #include <QWidget>
9 
10 class QLabel;
11 class ExprPopupDoc : public QWidget
12 {
13  Q_OBJECT
14 
15 public:
16  QLabel *label;
17  ExprPopupDoc(QWidget *parent, const QPoint &cr, const QString &msg);
18 
19 protected:
20  void mousePressEvent(QMouseEvent *event) override;
21 };
ExprPopupDoc(QWidget *parent, const QPoint &cr, const QString &msg)
QLabel * label
Definition: ExprPopupDoc.h:16
void mousePressEvent(QMouseEvent *event) override