#ifndef __GTKCONTROLH__
#define __GTKCONTROLH__
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface
#endif
// wxControl
//-----------------------------------------------------------------------------
-extern const wxChar* wxControlNameStr;
-
class wxControl : public wxControlBase
{
public:
wxControl(wxWindow *parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
-#if wxUSE_VALIDATORS
const wxValidator& validator = wxDefaultValidator,
-#endif
const wxString& name = wxControlNameStr)
{
- Create(parent, id, pos, size, style,
-#if wxUSE_VALIDATORS
- validator,
-#endif
- name);
+ Create(parent, id, pos, size, style, validator, name);
}
bool Create(wxWindow *parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
-#if wxUSE_VALIDATORS
const wxValidator& validator = wxDefaultValidator,
-#endif
const wxString& name = wxControlNameStr);
// this function will filter out '&' characters and will put the accelerator
protected:
virtual wxSize DoGetBestSize() const;
+#ifdef __WXGTK20__
+ wxString PrepareLabelMnemonics( const wxString &label ) const;
+#endif
wxString m_label;
char m_chAccel; // enabled to avoid breaking binary compatibility later on