]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/statbmp.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticBitmap
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "statbmp.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/window.h"
34 #include "wx/msw/private.h"
38 #include "wx/statbmp.h"
41 #include "wx/sysopt.h"
45 // ---------------------------------------------------------------------------
47 // ---------------------------------------------------------------------------
49 #if wxUSE_EXTENDED_RTTI
50 WX_DEFINE_FLAGS( wxStaticBitmapStyle
)
52 wxBEGIN_FLAGS( wxStaticBitmapStyle
)
53 // new style border flags, we put them first to
54 // use them for streaming out
55 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
56 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
57 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
58 wxFLAGS_MEMBER(wxBORDER_RAISED
)
59 wxFLAGS_MEMBER(wxBORDER_STATIC
)
60 wxFLAGS_MEMBER(wxBORDER_NONE
)
62 // old style border flags
63 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
64 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
65 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
66 wxFLAGS_MEMBER(wxRAISED_BORDER
)
67 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
68 wxFLAGS_MEMBER(wxBORDER
)
70 // standard window styles
71 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
72 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
73 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
74 wxFLAGS_MEMBER(wxWANTS_CHARS
)
75 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
76 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
77 wxFLAGS_MEMBER(wxVSCROLL
)
78 wxFLAGS_MEMBER(wxHSCROLL
)
80 wxEND_FLAGS( wxStaticBitmapStyle
)
82 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBitmap
, wxControl
,"wx/statbmp.h")
84 wxBEGIN_PROPERTIES_TABLE(wxStaticBitmap
)
85 wxPROPERTY_FLAGS( WindowStyle
, wxStaticBitmapStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
86 wxEND_PROPERTIES_TABLE()
88 wxBEGIN_HANDLERS_TABLE(wxStaticBitmap
)
89 wxEND_HANDLERS_TABLE()
91 wxCONSTRUCTOR_5( wxStaticBitmap
, wxWindow
* , Parent
, wxWindowID
, Id
, wxBitmap
, Bitmap
, wxPoint
, Position
, wxSize
, Size
)
94 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap
, wxControl
)
102 // ===========================================================================
104 // ===========================================================================
106 // ---------------------------------------------------------------------------
108 // ---------------------------------------------------------------------------
110 // we may have either bitmap or icon: if a bitmap with mask is passed, we
111 // will transform it to an icon ourselves because otherwise the mask will
112 // be ignored by Windows
113 // note that this function will create a new object every time
114 // it is called even if the image needs no conversion
116 static wxGDIImage
* ConvertImage( const wxGDIImage
& bitmap
)
118 bool isIcon
= bitmap
.IsKindOf( CLASSINFO(wxIcon
) );
122 wxASSERT_MSG( wxDynamicCast(&bitmap
, wxBitmap
),
123 _T("not an icon and not a bitmap?") );
125 const wxBitmap
& bmp
= (const wxBitmap
&)bitmap
;
126 wxMask
*mask
= bmp
.GetMask();
127 if ( mask
&& mask
->GetMaskBitmap() )
129 wxIcon
* icon
= new wxIcon
;
130 icon
->CopyFromBitmap(bmp
);
135 return new wxBitmap( bmp
);
138 // copying a bitmap is a cheap operation
139 return new wxIcon( (const wxIcon
&)bitmap
);
142 bool wxStaticBitmap::Create(wxWindow
*parent
,
144 const wxGDIImage
& bitmap
,
148 const wxString
& name
)
150 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
153 // we may have either bitmap or icon: if a bitmap with mask is passed, we
154 // will transform it to an icon ourselves because otherwise the mask will
155 // be ignored by Windows
156 m_isIcon
= bitmap
.IsKindOf(CLASSINFO(wxIcon
));
158 wxGDIImage
*image
= ConvertImage( bitmap
);
159 m_isIcon
= image
->IsKindOf( CLASSINFO(wxIcon
) );
161 // create the native control
162 if ( !MSWCreateControl(_T("STATIC"), wxEmptyString
, pos
, size
) )
164 // control creation failed
168 // no need to delete the new image
169 SetImageNoCopy(image
);
171 // GetBestSize will work properly now, so set the best size if needed
177 wxBorder
wxStaticBitmap::GetDefaultBorder() const
179 return wxBORDER_NONE
;
182 WXDWORD
wxStaticBitmap::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
184 WXDWORD msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
186 // what kind of control are we?
187 msStyle
|= m_isIcon
? SS_ICON
: SS_BITMAP
;
189 // we use SS_CENTERIMAGE to prevent the control from resizing the bitmap to
190 // fit to its size -- this is unexpected and doesn't happen in other ports
191 msStyle
|= SS_CENTERIMAGE
;
196 bool wxStaticBitmap::ImageIsOk() const
198 return m_image
&& m_image
->Ok();
201 void wxStaticBitmap::Free()
208 wxSize
wxStaticBitmap::DoGetBestSize() const
212 wxSize
best(m_image
->GetWidth(), m_image
->GetHeight());
217 // this is completely arbitrary
218 return wxSize(16, 16);
221 void wxStaticBitmap::SetImage( const wxGDIImage
* image
)
223 wxGDIImage
* convertedImage
= ConvertImage( *image
);
224 SetImageNoCopy( convertedImage
);
225 InvalidateBestSize();
228 void wxStaticBitmap::SetImageNoCopy( wxGDIImage
* image
)
232 m_isIcon
= image
->IsKindOf( CLASSINFO(wxIcon
) );
233 // the image has already been copied
242 HANDLE handle
= (HANDLE
)m_image
->GetHandle();
243 LONG style
= ::GetWindowLong( (HWND
)GetHWND(), GWL_STYLE
) ;
244 ::SetWindowLong( (HWND
)GetHWND(), GWL_STYLE
, ( style
& ~( SS_BITMAP
|SS_ICON
) ) |
245 ( m_isIcon
? SS_ICON
: SS_BITMAP
) );
246 ::SendMessage(GetHwnd(), STM_SETIMAGE
,
247 m_isIcon
? IMAGE_ICON
: IMAGE_BITMAP
, (LPARAM
)handle
);
252 int width
= image
->GetWidth(),
253 height
= image
->GetHeight();
254 if ( width
&& height
)
259 ::MoveWindow(GetHwnd(), x
, y
, width
, height
, FALSE
);
268 ::InvalidateRect(GetHwndOf(GetParent()), &rect
, TRUE
);
271 WXLRESULT
wxStaticBitmap::MSWWindowProc(WXUINT nMsg
,
276 static int s_useHTClient
= -1;
277 if (s_useHTClient
== -1)
278 s_useHTClient
= wxSystemOptions::GetOptionInt(wxT("msw.staticbitmap.htclient"));
279 if (s_useHTClient
== 1)
281 // Ensure that static items get messages. Some controls don't like this
282 // message to be intercepted (e.g. RichEdit), hence the tests.
283 // Also, this code breaks some other processing such as enter/leave tracking
284 // so it's off by default.
286 if ( nMsg
== WM_NCHITTEST
)
287 return (long)HTCLIENT
;
291 return wxWindow::MSWWindowProc(nMsg
, wParam
, lParam
);
294 #endif // wxUSE_STATBMP