/////////////////////////////////////////////////////////////////////////////
-// Name: bmpbutton.h
+// Name: wx/gtk/bmpbutton.h
// Purpose:
// Author: Robert Roebling
// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
-// Licence: wxWindows licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef __BMPBUTTONH__
#define __BMPBUTTONH__
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface
#endif
class wxBitmapButton: public wxBitmapButtonBase
{
public:
- wxBitmapButton();
+ wxBitmapButton() { Init(); }
+
wxBitmapButton(wxWindow *parent,
wxWindowID id,
const wxBitmap& bitmap,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxButtonNameStr)
{
+ Init();
+
Create(parent, id, bitmap, pos, size, style, validator, name);
}
+
bool Create(wxWindow *parent,
wxWindowID id,
const wxBitmap& bitmap,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxButtonNameStr);
- virtual void SetDefault();
- virtual bool Enable(bool enable = TRUE);
-
void SetLabel( const wxString &label );
wxString GetLabel() const;
virtual void SetLabel( const wxBitmap& bitmap ) { SetBitmapLabel(bitmap); }
-
+
+ virtual void SetDefault();
+ virtual bool Enable(bool enable = TRUE);
+
// implementation
// --------------
-
+
void HasFocus();
void NotFocus();
void StartSelect();
void EndSelect();
- void SetBitmap();
- void ApplyWidgetStyle();
-
- bool m_hasFocus;
- bool m_isSelected;
-
+ void DoApplyWidgetStyle(GtkRcStyle *style);
+
+ bool m_hasFocus:1;
+ bool m_isSelected:1;
+
protected:
virtual void OnSetBitmap();
+ virtual wxSize DoGetBestSize() const;
+
+ void Init();
private:
DECLARE_DYNAMIC_CLASS(wxBitmapButton)