]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/bmpbuttn.h
Dispatch pending events without waiting for idle time (closes #10994).
[wxWidgets.git] / include / wx / osx / bmpbuttn.h
index 50a7fca286c86128c61f44ea2e6ca182eee3a35e..df98620825d7b39504cd58e887fffbc5d6d49838 100644 (file)
@@ -1,5 +1,50 @@
-#ifdef __WXMAC_CLASSIC__
-#include "wx/osx/classic/bmpbuttn.h"
-#else
-#include "wx/osx/carbon/bmpbuttn.h"
-#endif
+/////////////////////////////////////////////////////////////////////////////
+// Name:        bmpbuttn.h
+// Purpose:     wxBitmapButton class
+// Author:      Stefan Csomor
+// Modified by:
+// Created:     1998-01-01
+// RCS-ID:      $Id$
+// Copyright:   (c) Stefan Csomor
+// Licence:     wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_OSX_BMPBUTTN_H_
+#define _WX_OSX_BMPBUTTN_H_
+
+#include "wx/button.h"
+
+#define wxDEFAULT_BUTTON_MARGIN 4
+
+class WXDLLIMPEXP_CORE wxBitmapButton : public wxBitmapButtonBase
+{
+public:
+    wxBitmapButton()
+        {
+            SetMargins(wxDEFAULT_BUTTON_MARGIN, wxDEFAULT_BUTTON_MARGIN);
+        }
+    
+    wxBitmapButton(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap,
+                   const wxPoint& pos = wxDefaultPosition,
+                   const wxSize& size = wxDefaultSize, long style = wxBU_AUTODRAW,
+                   const wxValidator& validator = wxDefaultValidator,
+                   const wxString& name = wxButtonNameStr)
+        {
+            Create(parent, id, bitmap, pos, size, style, validator, name);
+        }
+
+    bool Create(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap,
+                const wxPoint& pos = wxDefaultPosition,
+                const wxSize& size = wxDefaultSize, long style = wxBU_AUTODRAW,
+                const wxValidator& validator = wxDefaultValidator,
+                const wxString& name = wxButtonNameStr);
+
+protected:
+    virtual wxSize DoGetBestSize() const;    
+
+    virtual void DoSetBitmap(const wxBitmap& bitmap, State which);
+
+    DECLARE_DYNAMIC_CLASS(wxBitmapButton)
+};
+
+#endif // _WX_OSX_BMPBUTTN_H_