]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/statbmp.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/statbmp.cpp
3 // Purpose: wxStaticBitmap
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/statbmp.h"
32 #include "wx/window.h"
34 #include "wx/dcclient.h"
37 #include "wx/msw/private.h"
39 #include "wx/sysopt.h"
43 // ---------------------------------------------------------------------------
45 // ---------------------------------------------------------------------------
47 #if wxUSE_EXTENDED_RTTI
48 WX_DEFINE_FLAGS( wxStaticBitmapStyle
)
50 wxBEGIN_FLAGS( wxStaticBitmapStyle
)
51 // new style border flags, we put them first to
52 // use them for streaming out
53 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
54 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
55 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
56 wxFLAGS_MEMBER(wxBORDER_RAISED
)
57 wxFLAGS_MEMBER(wxBORDER_STATIC
)
58 wxFLAGS_MEMBER(wxBORDER_NONE
)
60 // old style border flags
61 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
62 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
63 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
64 wxFLAGS_MEMBER(wxRAISED_BORDER
)
65 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
66 wxFLAGS_MEMBER(wxBORDER
)
68 // standard window styles
69 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
70 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
71 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
72 wxFLAGS_MEMBER(wxWANTS_CHARS
)
73 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
74 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
75 wxFLAGS_MEMBER(wxVSCROLL
)
76 wxFLAGS_MEMBER(wxHSCROLL
)
78 wxEND_FLAGS( wxStaticBitmapStyle
)
80 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBitmap
, wxControl
,"wx/statbmp.h")
82 wxBEGIN_PROPERTIES_TABLE(wxStaticBitmap
)
83 wxPROPERTY_FLAGS( WindowStyle
, wxStaticBitmapStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
84 wxEND_PROPERTIES_TABLE()
86 wxBEGIN_HANDLERS_TABLE(wxStaticBitmap
)
87 wxEND_HANDLERS_TABLE()
89 wxCONSTRUCTOR_5( wxStaticBitmap
, wxWindow
* , Parent
, wxWindowID
, Id
, wxBitmap
, Bitmap
, wxPoint
, Position
, wxSize
, Size
)
92 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap
, wxControl
)
100 // ===========================================================================
102 // ===========================================================================
104 // ---------------------------------------------------------------------------
106 // ---------------------------------------------------------------------------
108 // we may have either bitmap or icon: if a bitmap with mask is passed, we
109 // will transform it to an icon ourselves because otherwise the mask will
110 // be ignored by Windows
111 // note that this function will create a new object every time
112 // it is called even if the image needs no conversion
114 static wxGDIImage
* ConvertImage( const wxGDIImage
& bitmap
)
116 bool isIcon
= bitmap
.IsKindOf( CLASSINFO(wxIcon
) );
120 wxASSERT_MSG( wxDynamicCast(&bitmap
, wxBitmap
),
121 _T("not an icon and not a bitmap?") );
123 const wxBitmap
& bmp
= (const wxBitmap
&)bitmap
;
124 wxMask
*mask
= bmp
.GetMask();
125 if ( mask
&& mask
->GetMaskBitmap() )
127 wxIcon
* icon
= new wxIcon
;
128 icon
->CopyFromBitmap(bmp
);
133 return new wxBitmap( bmp
);
136 // copying a bitmap is a cheap operation
137 return new wxIcon( (const wxIcon
&)bitmap
);
140 bool wxStaticBitmap::Create(wxWindow
*parent
,
142 const wxGDIImage
& bitmap
,
146 const wxString
& name
)
148 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
151 // we may have either bitmap or icon: if a bitmap with mask is passed, we
152 // will transform it to an icon ourselves because otherwise the mask will
153 // be ignored by Windows
154 m_isIcon
= bitmap
.IsKindOf(CLASSINFO(wxIcon
));
156 wxGDIImage
*image
= ConvertImage( bitmap
);
157 m_isIcon
= image
->IsKindOf( CLASSINFO(wxIcon
) );
159 // create the native control
160 if ( !MSWCreateControl(_T("STATIC"), wxEmptyString
, pos
, size
) )
162 // control creation failed
166 // no need to delete the new image
167 SetImageNoCopy(image
);
169 // GetBestSize will work properly now, so set the best size if needed
170 SetInitialSize(size
);
172 // Win9x and 2000 don't draw correctly the images with alpha channel so we
173 // need to draw them ourselves and it's easier to just always do it rather
174 // than check if we have an image with alpha or not
175 if ( wxGetWinVersion() <= wxWinVersion_2000
)
177 Connect(wxEVT_PAINT
, wxPaintEventHandler(wxStaticBitmap::DoPaintManually
));
183 WXDWORD
wxStaticBitmap::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
185 WXDWORD msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
187 // what kind of control are we?
188 msStyle
|= m_isIcon
? SS_ICON
: SS_BITMAP
;
190 // we use SS_CENTERIMAGE to prevent the control from resizing the bitmap to
191 // fit to its size -- this is unexpected and doesn't happen in other ports
193 // and SS_NOTIFY is necessary to receive mouse events
194 msStyle
|= SS_CENTERIMAGE
| SS_NOTIFY
;
199 bool wxStaticBitmap::ImageIsOk() const
201 return m_image
&& m_image
->Ok();
204 wxIcon
wxStaticBitmap::GetIcon() const
206 wxCHECK_MSG( m_image
, wxIcon(), _T("no image in wxStaticBitmap") );
208 // we can't ask for an icon if all we have is a bitmap
209 wxCHECK_MSG( m_isIcon
, wxIcon(), _T("no icon in this wxStaticBitmap") );
211 return *(wxIcon
*)m_image
;
214 wxBitmap
wxStaticBitmap::GetBitmap() const
218 // don't fail because we might have replaced the bitmap with icon
219 // ourselves internally in ConvertImage() to keep the transparency but
220 // the user code doesn't know about it so it still can use GetBitmap()
221 // to retrieve the bitmap
222 return wxBitmap(GetIcon());
224 else // we have a bitmap
226 wxCHECK_MSG( m_image
, wxBitmap(), _T("no image in wxStaticBitmap") );
228 return *(wxBitmap
*)m_image
;
232 void wxStaticBitmap::Free()
239 wxSize
wxStaticBitmap::DoGetBestSize() const
243 wxSize
best(m_image
->GetWidth(), m_image
->GetHeight());
248 // this is completely arbitrary
249 return wxSize(16, 16);
252 void wxStaticBitmap::DoPaintManually(wxPaintEvent
& WXUNUSED(event
))
256 const wxSize
size(GetSize());
257 const wxBitmap
bmp(GetBitmap());
259 // Clear the background
260 dc
.SetBrush(GetBackgroundColour());
261 dc
.SetPen(*wxTRANSPARENT_PEN
);
262 dc
.DrawRectangle(0, 0, size
.GetWidth(), size
.GetHeight());
264 // Draw the image in the middle
266 (size
.GetWidth() - bmp
.GetWidth()) / 2,
267 (size
.GetHeight() - bmp
.GetHeight()) / 2,
268 true /* use mask */);
271 void wxStaticBitmap::SetImage( const wxGDIImage
* image
)
273 wxGDIImage
* convertedImage
= ConvertImage( *image
);
274 SetImageNoCopy( convertedImage
);
275 InvalidateBestSize();
278 void wxStaticBitmap::SetImageNoCopy( wxGDIImage
* image
)
282 m_isIcon
= image
->IsKindOf( CLASSINFO(wxIcon
) );
283 // the image has already been copied
292 HANDLE handle
= (HANDLE
)m_image
->GetHandle();
293 LONG style
= ::GetWindowLong( (HWND
)GetHWND(), GWL_STYLE
) ;
294 ::SetWindowLong( (HWND
)GetHWND(), GWL_STYLE
, ( style
& ~( SS_BITMAP
|SS_ICON
) ) |
295 ( m_isIcon
? SS_ICON
: SS_BITMAP
) );
296 HGDIOBJ oldHandle
= (HGDIOBJ
)::SendMessage(GetHwnd(), STM_SETIMAGE
,
297 m_isIcon
? IMAGE_ICON
: IMAGE_BITMAP
, (LPARAM
)handle
);
298 // detect if this is still the handle we passed before or
299 // if the static-control made a copy of the bitmap!
300 if (m_currentHandle
!= 0 && oldHandle
!= (HGDIOBJ
) m_currentHandle
)
302 // the static control made a copy and we are responsible for deleting it
303 DeleteObject((HGDIOBJ
) oldHandle
);
305 m_currentHandle
= (WXHANDLE
)handle
;
310 int width
= image
->GetWidth(),
311 height
= image
->GetHeight();
312 if ( width
&& height
)
317 ::MoveWindow(GetHwnd(), x
, y
, width
, height
, FALSE
);
326 ::InvalidateRect(GetHwndOf(GetParent()), &rect
, TRUE
);
329 #endif // wxUSE_STATBMP