Files
qt-creator/src/libs/utils/overlaywidget.h
Jarek Kobus c82f06d834 Utils: Drop unneeded Q_OBJECT macros from public headers
Change-Id: Ia495397179dc8fd1308bac982d5fb27903444884
Reviewed-by: hjk <hjk@qt.io>
2023-08-15 08:35:58 +00:00

35 lines
756 B
C++

// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "utils_global.h"
#include <QWidget>
#include <functional>
namespace Utils {
class QTCREATOR_UTILS_EXPORT OverlayWidget : public QWidget
{
public:
using PaintFunction = std::function<void(QWidget *, QPainter &, QPaintEvent *)>;
explicit OverlayWidget(QWidget *parent = nullptr);
void attachToWidget(QWidget *parent);
void setPaintFunction(const PaintFunction &paint);
protected:
bool eventFilter(QObject *obj, QEvent *ev) override;
void paintEvent(QPaintEvent *ev) override;
private:
void resizeToParent();
PaintFunction m_paint;
};
} // namespace Utils