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