ClickableStaticText.h
Go to the documentation of this file.00001
00011 #ifndef __ClickableStaticText_H__
00012 #define __ClickableStaticText_H__
00013
00014 #ifndef WX_PRECOMP
00015 #include "wx/wx.h"
00016 #endif
00017
00018
00029 class ClickableStaticText : public wxStaticText
00030 {
00031 public:
00032 ClickableStaticText(wxWindow *parent,
00033 wxWindowID id,
00034 const wxString& label,
00035 const wxPoint& pos = wxDefaultPosition,
00036 const wxSize& size = wxDefaultSize,
00037 long style = 0,
00038 const wxString& name = wxStaticTextNameStr);
00039
00040 void ClickThis(wxMouseEvent &event);
00041 void SetCheckBox(wxCheckBox* cb);
00042
00043 DECLARE_EVENT_TABLE()
00044
00045 private:
00046 wxCheckBox* m_cb;
00047 };
00048
00049 #endif