mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2026-01-02 12:27:22 +08:00
refactor folder
This commit is contained in:
14
workspace/widgets_include/label.h
Normal file
14
workspace/widgets_include/label.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef GUILITE_WIDGETS_INCLUDE_LABEL_H
|
||||
#define GUILITE_WIDGETS_INCLUDE_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