2022-04-18 12:05:21 +08:00
|
|
|
#ifndef FINCLIPQTDEMO_H
|
|
|
|
#define FINCLIPQTDEMO_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
2022-09-22 18:27:19 +08:00
|
|
|
#include "finclip_api.h"
|
2022-04-18 12:05:21 +08:00
|
|
|
|
|
|
|
class FinclipQtDemo : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
FinclipQtDemo(QWidget *parent = nullptr);
|
|
|
|
~FinclipQtDemo();
|
2022-09-22 18:27:19 +08:00
|
|
|
private:
|
|
|
|
void resizeEvent(QResizeEvent* event);
|
2022-04-18 12:05:21 +08:00
|
|
|
};
|
|
|
|
#endif // FINCLIPQTDEMO_H
|