feat: add a new awesome feature

This commit is contained in:
2025-11-30 19:05:58 +08:00
parent f05962954f
commit 46febdb973
21 changed files with 318 additions and 101 deletions
+4
View File
@@ -41,6 +41,9 @@ public:
Canvas(int x, int y, int width, int height);
~Canvas() {}
void setX(int x)override;
void setY(int y)override;
//绘制容器及其子控件
void draw() override;
bool handleEvent(const ExMessage& msg) override;
@@ -68,5 +71,6 @@ public:
private:
//用来检查对话框是否模态,此控件不做实现
bool model() const override { return false; };
};