]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: bmpbuttn.cpp | |
3 | // Purpose: wxBitmapButton | |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "bmpbuttn.h" | |
14 | #endif | |
15 | ||
d8c736e5 | 16 | #include "wx/window.h" |
e9576ca5 SC |
17 | #include "wx/bmpbuttn.h" |
18 | ||
2f1ae414 | 19 | #if !USE_SHARED_LIBRARY |
e9576ca5 | 20 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxButton) |
2f1ae414 | 21 | #endif |
e9576ca5 | 22 | |
d497dca4 | 23 | #include "wx/mac/uma.h" |
72055702 | 24 | #include "wx/bitmap.h" |
7c551d95 | 25 | |
e9576ca5 SC |
26 | bool wxBitmapButton::Create(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap, |
27 | const wxPoint& pos, | |
28 | const wxSize& size, long style, | |
29 | const wxValidator& validator, | |
30 | const wxString& name) | |
31 | { | |
d460ed40 | 32 | m_bmpNormal = bitmap; |
7c551d95 | 33 | |
e9576ca5 SC |
34 | m_marginX = 0; |
35 | m_marginY = 0; | |
36 | ||
d460ed40 GD |
37 | // int x = pos.x; |
38 | // int y = pos.y; | |
e9576ca5 SC |
39 | int width = size.x; |
40 | int height = size.y; | |
41 | ||
42 | if (id == -1) | |
43 | m_windowId = NewControlId(); | |
44 | else | |
45 | m_windowId = id; | |
46 | ||
47 | if ( width == -1 && bitmap.Ok()) | |
48 | width = bitmap.GetWidth() + 2*m_marginX; | |
49 | ||
50 | if ( height == -1 && bitmap.Ok()) | |
51 | height = bitmap.GetHeight() + 2*m_marginY; | |
52 | ||
7c551d95 SC |
53 | Rect bounds ; |
54 | Str255 title ; | |
d460ed40 GD |
55 | m_bmpNormal = bitmap; |
56 | wxBitmapRefData * bmap = (wxBitmapRefData*) ( m_bmpNormal.GetRefData()) ; | |
3dec57ad | 57 | |
7c551d95 SC |
58 | MacPreControlCreate( parent , id , "" , pos , wxSize( width , height ) ,style, validator , name , &bounds , title ) ; |
59 | ||
76a5e5d2 | 60 | m_macControl = ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false , 0 , |
3dec57ad SC |
61 | kControlBehaviorOffsetContents + |
62 | ( bmap->m_bitmapType == kMacBitmapTypeIcon ? kControlContentCIconHandle : kControlContentPictHandle ) , 0, | |
37e2cb08 | 63 | (( style & wxBU_AUTODRAW ) ? kControlBevelButtonSmallBevelProc : kControlBevelButtonNormalBevelProc ), (long) this ) ; |
76a5e5d2 | 64 | wxASSERT_MSG( (ControlHandle) m_macControl != NULL , "No valid mac control" ) ; |
7c551d95 | 65 | |
3dec57ad | 66 | ControlButtonContentInfo info ; |
d460ed40 | 67 | wxMacCreateBitmapButton( &info , m_bmpNormal ) ; |
be295828 | 68 | if ( info.contentType != kControlNoContent ) |
7c551d95 | 69 | { |
be295828 SC |
70 | ::SetControlData( (ControlHandle) m_macControl , kControlButtonPart , kControlBevelButtonContentTag , sizeof(info) , (char*) &info ) ; |
71 | } | |
7c551d95 | 72 | MacPostControlCreate() ; |
e9576ca5 | 73 | |
7c551d95 | 74 | return TRUE; |
e9576ca5 SC |
75 | } |
76 | ||
77 | void wxBitmapButton::SetBitmapLabel(const wxBitmap& bitmap) | |
78 | { | |
d460ed40 | 79 | m_bmpNormal = bitmap; |
3dec57ad | 80 | |
d460ed40 GD |
81 | ControlButtonContentInfo info ; |
82 | wxMacCreateBitmapButton( &info , m_bmpNormal ) ; | |
83 | if ( info.contentType != kControlNoContent ) | |
84 | { | |
85 | ::SetControlData( (ControlHandle) m_macControl , kControlButtonPart , kControlBevelButtonContentTag , sizeof(info) , (char*) &info ) ; | |
3dec57ad | 86 | } |
e9576ca5 SC |
87 | } |
88 |