00001 /* 00002 * CListBox.h 00003 * 00004 * Created on: 12.05.2010 00005 * Author: vdv 00006 */ 00007 00008 #ifndef LIBGUI_CLISTBOX_H_ 00009 #define LIBGUI_CLISTBOX_H_ 00010 00011 #include "CComponent.h" 00012 00013 class CGraphics; 00014 00015 //TODO multiple select 00022 class CListBox : public CComponent 00023 { 00024 public: 00029 CListBox(); 00030 ~CListBox(); 00031 virtual void Paint(CGraphics* g); 00032 private: 00033 }; 00034 00035 #endif /* LIBGUI_CLISTBOX_H_ */