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