static int GetFeatures() { return wxComboCtrlFeatures::All; }
#if wxUSE_COMBOCTRL_POPUP_ANIMATION
- virtual bool AnimateShow( const wxRect& rect, int flags );
void OnTimerEvent( wxTimerEvent& event );
+protected:
+ virtual bool AnimateShow( const wxRect& rect, int flags );
#endif
protected:
void SetDeterminateMode();
void Pulse();
+ WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
+
protected:
virtual wxSize DoGetBestSize() const;
- WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
-
DECLARE_DYNAMIC_CLASS_NO_COPY(wxGauge95)
};
virtual bool Show(unsigned int n, bool show = true);
virtual bool IsItemEnabled(unsigned int n) const;
virtual bool IsItemShown(unsigned int n) const;
+ virtual int GetItemFromPoint(const wxPoint& pt) const;
// override some base class methods
virtual bool Show(bool show = true);
#if wxUSE_TOOLTIPS
virtual bool HasToolTips() const;
#endif // wxUSE_TOOLTIPS
+#if wxUSE_HELP
+ // override virtual function with a platform-independent implementation
+ virtual wxString GetHelpTextAtPoint(const wxPoint & pt, wxHelpEvent::Origin origin) const
+ {
+ return wxRadioBoxBase::DoGetHelpTextAtPoint( this, pt, origin );
+ }
+#endif // wxUSE_HELP
// we inherit a version always returning false from wxStaticBox, override
// it to behave normally
void SetLabelFont(const wxFont& WXUNUSED(font)) {}
void SetButtonFont(const wxFont& font) { SetFont(font); }
-
// implementation only from now on
// -------------------------------
virtual void DoSetItemToolTip(unsigned int n, wxToolTip * tooltip);
#endif
- virtual int GetItemFromPoint(const wxPoint& pt) const;
-
-#if wxUSE_HELP
- // override virtual function with a platform-independent implementation
- virtual wxString GetHelpTextAtPoint(const wxPoint & pt, wxHelpEvent::Origin origin) const
- {
- return wxRadioBoxBase::DoGetHelpTextAtPoint( this, pt, origin );
- }
-#endif // wxUSE_HELP
-
#ifndef __WXWINCE__
virtual WXHRGN MSWGetRegionWithoutChildren();
#endif // __WXWINCE__