mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
23 lines
391 B
C++
23 lines
391 B
C++
#ifndef CUSTOMPAINTWIDGET_H
|
|
#define CUSTOMPAINTWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class CustomPaintWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CustomPaintWidget(QWidget *parent = 0);
|
|
~CustomPaintWidget();
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *e);
|
|
QPaintEngine *paintEngine() const { return NULL; }
|
|
};
|
|
|
|
#endif // CUSTOMPAINTWIDGET_H
|