]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/bmpbuttn.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / cocoa / bmpbuttn.h
CommitLineData
da0634c1
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/cocoa/bmpbuttn.h
3// Purpose: wxBitmapButton class
4// Author: David Elliott
5// Modified by:
6// Created: 2003/03/16
da0634c1 7// Copyright: (c) 2003 David Elliott
1c4e8f38 8// Licence: wxWindows licence
da0634c1
DE
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef __WX_COCOA_BMPBUTTN_H__
12#define __WX_COCOA_BMPBUTTN_H__
13
14#include "wx/cocoa/NSButton.h"
15
16// ========================================================================
17// wxBitmapButton
18// ========================================================================
53a2db12 19class WXDLLIMPEXP_CORE wxBitmapButton : public wxBitmapButtonBase
da0634c1
DE
20{
21 DECLARE_DYNAMIC_CLASS(wxBitmapButton)
22 DECLARE_EVENT_TABLE()
23 WX_DECLARE_COCOA_OWNER(NSButton,NSControl,NSView)
24// ------------------------------------------------------------------------
25// initialization
26// ------------------------------------------------------------------------
27public:
28 wxBitmapButton() { }
29 wxBitmapButton(wxWindow *parent, wxWindowID winid,
30 const wxBitmap& bitmap,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize, long style = 0,
33 const wxValidator& validator = wxDefaultValidator,
34 const wxString& name = wxButtonNameStr)
35 {
36 Create(parent, winid, bitmap, pos, size, style, validator, name);
37 }
38
39 bool Create(wxWindow *parent, wxWindowID winid,
40 const wxBitmap& bitmap,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize, long style = 0,
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxButtonNameStr);
45 virtual ~wxBitmapButton();
46
47// ------------------------------------------------------------------------
48// Cocoa callbacks
49// ------------------------------------------------------------------------
50protected:
51 virtual void Cocoa_wxNSButtonAction(void);
52// ------------------------------------------------------------------------
53// Implementation
54// ------------------------------------------------------------------------
55public:
908686c5
DE
56 // The wxButton::DoGetBestSize is not correct for bitmap buttons
57 wxSize DoGetBestSize() const
58 { return wxButtonBase::DoGetBestSize(); }
da0634c1
DE
59};
60
61#endif // __WX_COCOA_BMPBUTTN_H__