]>
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"
33 #include "wx/window.h"
35 #include "wx/dcclient.h"
38 #include "wx/msw/private.h"
40 #include "wx/sysopt.h"
44 // ---------------------------------------------------------------------------
46 // ---------------------------------------------------------------------------
48 #if wxUSE_EXTENDED_RTTI
49 WX_DEFINE_FLAGS( wxStaticBitmapStyle
)
51 wxBEGIN_FLAGS( wxStaticBitmapStyle
)
52 // new style border flags, we put them first to
53 // use them for streaming out
54 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
55 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
56 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
57 wxFLAGS_MEMBER(wxBORDER_RAISED
)
58 wxFLAGS_MEMBER(wxBORDER_STATIC
)
59 wxFLAGS_MEMBER(wxBORDER_NONE
)
61 // old style border flags
62 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
63 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
64 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
65 wxFLAGS_MEMBER(wxRAISED_BORDER
)
66 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
67 wxFLAGS_MEMBER(wxBORDER
)
69 // standard window styles
70 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
71 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
72 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
73 wxFLAGS_MEMBER(wxWANTS_CHARS
)
74 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
75 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
76 wxFLAGS_MEMBER(wxVSCROLL
)
77 wxFLAGS_MEMBER(wxHSCROLL
)
79 wxEND_FLAGS( wxStaticBitmapStyle
)
81 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBitmap
, wxControl
,"wx/statbmp.h")
83 wxBEGIN_PROPERTIES_TABLE(wxStaticBitmap
)
84 wxPROPERTY_FLAGS( WindowStyle
, wxStaticBitmapStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
85 wxEND_PROPERTIES_TABLE()
87 wxBEGIN_HANDLERS_TABLE(wxStaticBitmap
)
88 wxEND_HANDLERS_TABLE()
90 wxCONSTRUCTOR_5( wxStaticBitmap
, wxWindow
* , Parent
, wxWindowID
, Id
, wxBitmap
, Bitmap
, wxPoint
, Position
, wxSize
, Size
)
93 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap
, wxControl
)
101 // ===========================================================================
103 // ===========================================================================
105 // ---------------------------------------------------------------------------
107 // ---------------------------------------------------------------------------
109 // we may have either bitmap or icon: if a bitmap with mask is passed, we
110 // will transform it to an icon ourselves because otherwise the mask will
111 // be ignored by Windows
112 // note that this function will create a new object every time
113 // it is called even if the image needs no conversion
115 static wxGDIImage
* ConvertImage( const wxGDIImage
& bitmap
)
117 bool isIcon
= bitmap
.IsKindOf( CLASSINFO(wxIcon
) );
121 wxASSERT_MSG( wxDynamicCast(&bitmap
, wxBitmap
),
122 wxT("not an icon and not a bitmap?") );
124 const wxBitmap
& bmp
= (const wxBitmap
&)bitmap
;
125 wxMask
*mask
= bmp
.GetMask();
126 if ( mask
&& mask
->GetMaskBitmap() )
128 wxIcon
* icon
= new wxIcon
;
129 icon
->CopyFromBitmap(bmp
);
134 return new wxBitmap( bmp
);
137 // copying a bitmap is a cheap operation
138 return new wxIcon( (const wxIcon
&)bitmap
);
141 bool wxStaticBitmap::Create(wxWindow
*parent
,
143 const wxGDIImage
& bitmap
,
147 const wxString
& name
)
149 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
152 // we may have either bitmap or icon: if a bitmap with mask is passed, we
153 // will transform it to an icon ourselves because otherwise the mask will
154 // be ignored by Windows
155 m_isIcon
= bitmap
.IsKindOf(CLASSINFO(wxIcon
));
157 wxGDIImage
*image
= ConvertImage( bitmap
);
158 m_isIcon
= image
->IsKindOf( CLASSINFO(wxIcon
) );
160 // create the native control
161 if ( !MSWCreateControl(wxT("STATIC"), wxEmptyString
, pos
, size
) )
163 // control creation failed
167 // no need to delete the new image
168 SetImageNoCopy(image
);
170 // GetBestSize will work properly now, so set the best size if needed
171 SetInitialSize(size
);
173 // painting manually is reported not to work under Windows CE (see #10093),
174 // so don't do it there even if this probably means that alpha is not
175 // supported there -- but at least bitmaps without alpha appear correctly
177 // Windows versions before XP (and even XP if the application has no
178 // manifest and so the old comctl32.dll is used) don't draw correctly the
179 // images with alpha channel so we need to draw them ourselves and it's
180 // easier to just always do it rather than check if we have an image with
182 if ( wxTheApp
->GetComCtl32Version() < 600 )
184 Connect(wxEVT_PAINT
, wxPaintEventHandler(wxStaticBitmap::DoPaintManually
));
186 #endif // !__WXWINCE__
191 WXDWORD
wxStaticBitmap::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
193 WXDWORD msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
195 // what kind of control are we?
196 msStyle
|= m_isIcon
? SS_ICON
: SS_BITMAP
;
198 // we use SS_CENTERIMAGE to prevent the control from resizing the bitmap to
199 // fit to its size -- this is unexpected and doesn't happen in other ports
201 // and SS_NOTIFY is necessary to receive mouse events
202 msStyle
|= SS_CENTERIMAGE
| SS_NOTIFY
;
207 bool wxStaticBitmap::ImageIsOk() const
209 return m_image
&& m_image
->Ok();
212 wxIcon
wxStaticBitmap::GetIcon() const
214 wxCHECK_MSG( m_image
, wxIcon(), wxT("no image in wxStaticBitmap") );
216 // we can't ask for an icon if all we have is a bitmap
217 wxCHECK_MSG( m_isIcon
, wxIcon(), wxT("no icon in this wxStaticBitmap") );
219 return *(wxIcon
*)m_image
;
222 wxBitmap
wxStaticBitmap::GetBitmap() const
226 // don't fail because we might have replaced the bitmap with icon
227 // ourselves internally in ConvertImage() to keep the transparency but
228 // the user code doesn't know about it so it still can use GetBitmap()
229 // to retrieve the bitmap
230 return wxBitmap(GetIcon());
232 else // we have a bitmap
234 wxCHECK_MSG( m_image
, wxBitmap(), wxT("no image in wxStaticBitmap") );
236 return *(wxBitmap
*)m_image
;
240 void wxStaticBitmap::Free()
245 wxSize
wxStaticBitmap::DoGetBestSize() const
249 wxSize
best(m_image
->GetWidth(), m_image
->GetHeight());
254 // this is completely arbitrary
255 return wxSize(16, 16);
260 void wxStaticBitmap::DoPaintManually(wxPaintEvent
& WXUNUSED(event
))
264 const wxSize
size(GetSize());
265 const wxBitmap
bmp(GetBitmap());
267 // Clear the background: notice that we're supposed to be transparent, so
268 // use the parent background colour if we don't have our own instead of
269 // falling back to the default
270 const wxWindow
*win
= UseBgCol() ? this : GetParent();
271 dc
.SetBrush(win
->GetBackgroundColour());
272 dc
.SetPen(*wxTRANSPARENT_PEN
);
273 dc
.DrawRectangle(0, 0, size
.GetWidth(), size
.GetHeight());
275 // Draw the image in the middle
277 (size
.GetWidth() - bmp
.GetWidth()) / 2,
278 (size
.GetHeight() - bmp
.GetHeight()) / 2,
279 true /* use mask */);
282 #endif // !__WXWINCE__
284 void wxStaticBitmap::SetImage( const wxGDIImage
* image
)
286 wxGDIImage
* convertedImage
= ConvertImage( *image
);
287 SetImageNoCopy( convertedImage
);
288 InvalidateBestSize();
291 void wxStaticBitmap::SetImageNoCopy( wxGDIImage
* image
)
295 m_isIcon
= image
->IsKindOf( CLASSINFO(wxIcon
) );
296 // the image has already been copied
305 HANDLE handle
= (HANDLE
)m_image
->GetHandle();
306 LONG style
= ::GetWindowLong( (HWND
)GetHWND(), GWL_STYLE
) ;
307 ::SetWindowLong( (HWND
)GetHWND(), GWL_STYLE
, ( style
& ~( SS_BITMAP
|SS_ICON
) ) |
308 ( m_isIcon
? SS_ICON
: SS_BITMAP
) );
309 HGDIOBJ oldHandle
= (HGDIOBJ
)::SendMessage(GetHwnd(), STM_SETIMAGE
,
310 m_isIcon
? IMAGE_ICON
: IMAGE_BITMAP
, (LPARAM
)handle
);
311 // detect if this is still the handle we passed before or
312 // if the static-control made a copy of the bitmap!
313 if (m_currentHandle
!= 0 && oldHandle
!= (HGDIOBJ
) m_currentHandle
)
315 // the static control made a copy and we are responsible for deleting it
316 DeleteObject((HGDIOBJ
) oldHandle
);
318 m_currentHandle
= (WXHANDLE
)handle
;
323 int width
= image
->GetWidth(),
324 height
= image
->GetHeight();
325 if ( width
&& height
)
330 ::MoveWindow(GetHwnd(), x
, y
, width
, height
, FALSE
);
339 ::InvalidateRect(GetHwndOf(GetParent()), &rect
, TRUE
);
342 #endif // wxUSE_STATBMP