+
+ // WARNING: this doesn't work for all controls nor all platforms!
+ //
+ // simulates the event of given type (i.e. wxButton::Command() is just as
+ // if the button was clicked)
+ virtual void Command(wxCommandEvent &event);
+
+
+ virtual void SetLabel(const wxString& label);
+ virtual bool SetFont(const wxFont& font);
+ virtual bool GetAdjustMinSizeFlag() const { return m_adjustMinSize; }
+ void SetAdjustMinSizeFlag(bool adjust) { m_adjustMinSize = adjust; }
+
+