You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
315 B
C++
19 lines
315 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QMainWindow>
|
|
#include "ui_TestTransform.h"
|
|
|
|
class TestTransform : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TestTransform(QWidget *parent = Q_NULLPTR);
|
|
|
|
Q_SLOT void onButtonClicked();
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent *event);
|
|
private:
|
|
Ui::TestTransformClass ui;
|
|
};
|