mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2025-01-22 17:12:54 +08:00
15 lines
212 B
C
15 lines
212 B
C
|
#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
|