src/label.cpp

Go to the documentation of this file.
00001 /*
00002 * Copyright (c) 2006 by Kirill Kolodyazhniy.
00003 * See the file "license.terms" for information on usage and redistribution
00004 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
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 };

Generated on Thu Oct 26 13:47:45 2006 for MWidgets by  doxygen 1.4.7