logo
Main Page | Namespaces | Classes | Compounds | Files | Compound Members | Related

Label.h

00001 //
00002 //  SYNTOPIA. See http://Syntopia.sourceforge.net for details and documentation.        
00003 //
00004 //      Author of this file: Mikael Hvidtfeldt Christensen (mikaelc@users.sourceforge.net)
00005 //
00006 
00007 
00008 #ifndef __Label
00009 #define __Label
00010 
00011 #include <windows.h>
00012 #include <string>
00013 #include "WinForm.h"
00014 #include "GUIControl.h"
00015 
00016 namespace GUIToolkit {
00017 
00018 class WinForm ; // Forward Declaration
00019 
00021 class Label : public Component {
00022 
00023 public:
00024 
00026         Label(std::string s); 
00027 
00029         ~Label();
00030 
00032         void PutInWinForm(WinForm * WF, int x0, int x1, int y0, int y1); 
00033         
00034 private:
00035 
00036         std::string myLabel;
00037         HWND hLabel;
00038 };
00039 
00040 
00041 };
00042 
00043 
00044 #endif

Syntopia Project. Visit the web page, or the SourceForge page.
Docs made by Doxygen. Email: Mikael Christensen