Main Page | Namespaces | Classes | Compounds | Files | Compound Members | Related divider.h00001 // 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 #ifndef __divider 00008 #define __divider 00009 00010 #include <windows.h> 00011 #include <string> 00012 #include "WinForm.h" 00013 #include "GUIControl.h" 00014 00015 namespace GUIToolkit { 00016 00017 class WinForm ; // Forward Declaration 00018 00020 /* 00021 * I don't know if the windows API provide smarter means of doing this. 00022 * @todo check efficiency of this routine. 00023 */ 00024 class divider : public Component { 00025 00026 public: 00027 00029 divider(); 00030 00032 ~divider(); 00033 00035 void PutInWinForm(WinForm * WF, int x0, int x1, int y0, int y1); 00036 00037 private: 00038 HWND hButton; 00039 }; 00040 00041 }; 00042 00043 00044 #endif Docs made by Doxygen. Email: Mikael Christensen |