ToolTipListBox.h
Go to the documentation of this file.00001
00011 #ifndef __ToolTipListBox_H__
00012 #define __ToolTipListBox_H__
00013
00014 #ifndef WX_PRECOMP
00015 #include "wx/wx.h"
00016 #endif
00017
00023 class ToolTipListBox : public wxListBox
00024 {
00025 public:
00026 ToolTipListBox(wxWindow *parent, wxWindowID id,
00027 const wxPoint& pos = wxDefaultPosition,
00028 const wxSize& size = wxDefaultSize,
00029 int n = 0, const wxString choices[] = NULL,
00030 long style = 0,
00031 const wxValidator& validator = wxDefaultValidator,
00032 const wxString& name = wxListBoxNameStr);
00033
00034 void SetToolTip(const wxString &tip);
00035 wxToolTip* GetToolTip() const;
00036
00037 DECLARE_EVENT_TABLE()
00038
00039 private:
00040 };
00041
00042 #endif