2026-03-23 11:11:55 +08:00
|
|
|
#ifndef DESIGNER_VIEW_H
|
|
|
|
|
#define DESIGNER_VIEW_H
|
|
|
|
|
|
2026-06-01 16:26:02 +08:00
|
|
|
#include "baseView.h"
|
2026-03-23 11:11:55 +08:00
|
|
|
|
2026-06-01 16:26:02 +08:00
|
|
|
class DesignerView : public BaseView
|
2026-03-23 11:11:55 +08:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit DesignerView(QWidget *parent = 0);
|
|
|
|
|
virtual ~DesignerView();
|
|
|
|
|
|
2026-06-01 16:26:02 +08:00
|
|
|
void initialize() override;
|
2026-03-23 11:11:55 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|