]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/bmpbuttn.cpp
SetValue is not adding a line if values does not exist
[wxWidgets.git] / src / mac / carbon / bmpbuttn.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: bmpbuttn.cpp
3// Purpose: wxBitmapButton
a31a5f85 4// Author: Stefan Csomor
e9576ca5 5// Modified by:
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
e9576ca5
SC
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 20IMPLEMENT_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
26bool 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{
facd6764
SC
32 m_macIsUserPane = FALSE ;
33
bf19e3f6
SC
34 // since bitmapbuttonbase is subclass of button calling wxBitmapButtonBase::Create
35 // essentially creates an additional button
36 if ( !wxControl::Create(parent, id, pos, size,
b45ed7a2
VZ
37 style, validator, name) )
38 return false;
39
d460ed40 40 m_bmpNormal = bitmap;
7c551d95 41
827e7a48
RR
42 if (style & wxBU_AUTODRAW)
43 {
44 m_marginX = wxDEFAULT_BUTTON_MARGIN;
45 m_marginY = wxDEFAULT_BUTTON_MARGIN;
46 }
47 else
48 {
49 m_marginX = 0;
50 m_marginY = 0;
51 }
e9576ca5 52
e9576ca5
SC
53 int width = size.x;
54 int height = size.y;
55
c0831a3c
RD
56 if ( bitmap.Ok() )
57 {
58 wxSize newSize = DoGetBestSize();
59 if ( width == -1 )
60 width = newSize.x;
61 if ( height == -1 )
62 height = newSize.y;
63 }
e9576ca5 64
f125ccf2 65 m_bmpNormal = bitmap;
facd6764 66
e40298d5
JS
67 wxBitmapRefData * bmap = NULL ;
68
69 if ( m_bmpNormal.Ok() )
70 bmap = (wxBitmapRefData*) ( m_bmpNormal.GetRefData()) ;
71
4c37f124
SC
72 ControlButtonContentInfo info ;
73 wxMacCreateBitmapButton( &info , m_bmpNormal ) ;
74
facd6764 75 Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
21fd5529 76 m_peer = new wxMacControl() ;
4c37f124
SC
77 verify_noerr ( CreateBevelButtonControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds , CFSTR("") ,
78 (( style & wxBU_AUTODRAW ) ? kControlBevelButtonSmallBevel : kControlBevelButtonNormalBevel ) ,
5ca0d812 79 kControlBehaviorOffsetContents , &info , 0 , 0 , 0 , m_peer->GetControlRefAddr() ) );
4c37f124 80
21fd5529
SC
81
82 wxASSERT_MSG( m_peer != NULL && m_peer->Ok() , wxT("No valid mac control") ) ;
e40298d5 83
facd6764 84 MacPostControlCreate(pos,size) ;
e9576ca5 85
7c551d95 86 return TRUE;
e9576ca5
SC
87}
88
89void wxBitmapButton::SetBitmapLabel(const wxBitmap& bitmap)
90{
d460ed40 91 m_bmpNormal = bitmap;
9f884528 92 InvalidateBestSize();
3dec57ad 93
d460ed40
GD
94 ControlButtonContentInfo info ;
95 wxMacCreateBitmapButton( &info , m_bmpNormal ) ;
96 if ( info.contentType != kControlNoContent )
97 {
21fd5529 98 m_peer->SetData( kControlButtonPart , kControlBevelButtonContentTag , info ) ;
3dec57ad 99 }
e9576ca5
SC
100}
101
c0831a3c
RD
102
103wxSize wxBitmapButton::DoGetBestSize() const
104{
105 wxSize best;
106 if (m_bmpNormal.Ok())
107 {
108 best.x = m_bmpNormal.GetWidth() + 2*m_marginX;
109 best.y = m_bmpNormal.GetHeight() + 2*m_marginY;
110 }
111 return best;
112}