00001
00002
00003
00004
00005
00006
00007 #include "stdinc.h"
00008 #include "icon.h"
00009 #include "eventhandler.h"
00010 #include "widgets.h"
00011 #include "menu.h"
00012 #include "widget.h"
00013 #include "label.h"
00014 #include "exception.h"
00015 namespace MWidgets
00016 {
00017
00018
00019 Label::Label():Widget()
00020 {
00021 };
00022
00023 void Label::Create(Widget *parent,int x,int y,int w,int h,string caption)
00024 {
00025 Widget::Create(x,y,w,h,caption,"STATIC",WS_CHILD|WS_CLIPSIBLINGS,parent->GetHwnd());
00026 };
00027
00028 WIDGET_TYPE Label::GetType()
00029 {
00030 return LABEL;
00031 };
00032
00033 };