1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-06-26 17:29:16 -04:00
|
|
|
// Name: wx/gtk/bmpbutton.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
1998-10-24 13:12:05 -04:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-02-22 14:59:36 -05:00
|
|
|
#ifndef _WX_GTK_BMPBUTTON_H_
|
|
|
|
#define _WX_GTK_BMPBUTTON_H_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
// wxBitmapButton
|
2001-06-26 16:59:19 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2009-06-16 15:31:50 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxBitmapButton : public wxBitmapButtonBase
|
1998-05-28 13:44:04 -04:00
|
|
|
{
|
1998-11-15 12:57:55 -05:00
|
|
|
public:
|
2009-06-16 15:31:50 -04:00
|
|
|
wxBitmapButton() { }
|
2002-05-04 07:57:39 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
wxBitmapButton(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& bitmap,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
2009-06-16 15:31:50 -04:00
|
|
|
long style = 0,
|
2001-06-26 16:59:19 -04:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr)
|
1999-10-11 06:05:36 -04:00
|
|
|
{
|
|
|
|
Create(parent, id, bitmap, pos, size, style, validator, name);
|
|
|
|
}
|
2002-05-04 07:57:39 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& bitmap,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
2009-06-16 15:31:50 -04:00
|
|
|
long style = 0,
|
2001-06-26 16:59:19 -04:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2009-06-27 18:22:48 -04:00
|
|
|
const wxString& name = wxButtonNameStr);
|
2008-02-22 14:59:36 -05:00
|
|
|
|
2009-06-27 18:22:48 -04:00
|
|
|
private:
|
1999-10-11 06:05:36 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxBitmapButton)
|
1998-05-28 13:44:04 -04:00
|
|
|
};
|
1998-11-15 12:57:55 -05:00
|
|
|
|
2008-02-22 14:59:36 -05:00
|
|
|
#endif // _WX_GTK_BMPBUTTON_H_
|