mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2026-04-13 09:18:04 +08:00
!19 Refactor wnd, add HelloWidgets
This commit is contained in:
14
widgets_include/label.h
Normal file
14
widgets_include/label.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef LABEL_H
|
||||
#define LABEL_H
|
||||
|
||||
class c_label : public c_wnd
|
||||
{
|
||||
public:
|
||||
virtual c_wnd* clone(){return new c_label();}
|
||||
virtual void on_paint();
|
||||
protected:
|
||||
virtual void pre_create_wnd();
|
||||
private:
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user