1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/anybutton.h
3 // Purpose: wxAnyButton class
4 // Author: Vadim Zeitlin
5 // Created: 2000-08-15 (extracted from button.h)
7 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_UNIV_ANYBUTTON_H_
12 #define _WX_UNIV_ANYBUTTON_H_
14 // ----------------------------------------------------------------------------
15 // Common button functionality
16 // ----------------------------------------------------------------------------
18 class WXDLLIMPEXP_CORE wxAnyButton
: public wxAnyButtonBase
23 virtual ~wxAnyButton() {}
26 // choose the default border for this window
27 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_STATIC
; }
30 wxDECLARE_NO_COPY_CLASS(wxAnyButton
);
33 #endif // _WX_UNIV_ANYBUTTON_H_