]> git.saurik.com Git - wxWidgets.git/blob - src/msw/statbmp.cpp
fix wxExecute() return code checks and removed not working code to open URLs in new...
[wxWidgets.git] / src / msw / statbmp.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: statbmp.cpp
3 // Purpose: wxStaticBitmap
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ===========================================================================
13 // declarations
14 // ===========================================================================
15
16 // ---------------------------------------------------------------------------
17 // headers
18 // ---------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #if wxUSE_STATBMP
28
29 #include "wx/window.h"
30 #include "wx/msw/private.h"
31
32 #ifndef WX_PRECOMP
33 #include "wx/icon.h"
34 #include "wx/statbmp.h"
35 #endif
36
37 #include "wx/sysopt.h"
38
39 #include <stdio.h>
40
41 // ---------------------------------------------------------------------------
42 // macors
43 // ---------------------------------------------------------------------------
44
45 #if wxUSE_EXTENDED_RTTI
46 WX_DEFINE_FLAGS( wxStaticBitmapStyle )
47
48 wxBEGIN_FLAGS( wxStaticBitmapStyle )
49 // new style border flags, we put them first to
50 // use them for streaming out
51 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
52 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
53 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
54 wxFLAGS_MEMBER(wxBORDER_RAISED)
55 wxFLAGS_MEMBER(wxBORDER_STATIC)
56 wxFLAGS_MEMBER(wxBORDER_NONE)
57
58 // old style border flags
59 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
60 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
61 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
62 wxFLAGS_MEMBER(wxRAISED_BORDER)
63 wxFLAGS_MEMBER(wxSTATIC_BORDER)
64 wxFLAGS_MEMBER(wxBORDER)
65
66 // standard window styles
67 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
68 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
69 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
70 wxFLAGS_MEMBER(wxWANTS_CHARS)
71 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
72 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
73 wxFLAGS_MEMBER(wxVSCROLL)
74 wxFLAGS_MEMBER(wxHSCROLL)
75
76 wxEND_FLAGS( wxStaticBitmapStyle )
77
78 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBitmap, wxControl,"wx/statbmp.h")
79
80 wxBEGIN_PROPERTIES_TABLE(wxStaticBitmap)
81 wxPROPERTY_FLAGS( WindowStyle , wxStaticBitmapStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
82 wxEND_PROPERTIES_TABLE()
83
84 wxBEGIN_HANDLERS_TABLE(wxStaticBitmap)
85 wxEND_HANDLERS_TABLE()
86
87 wxCONSTRUCTOR_5( wxStaticBitmap, wxWindow* , Parent , wxWindowID , Id , wxBitmap, Bitmap, wxPoint , Position , wxSize , Size )
88
89 #else
90 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
91 #endif
92
93 /*
94 TODO PROPERTIES :
95 bitmap
96 */
97
98 // ===========================================================================
99 // implementation
100 // ===========================================================================
101
102 // ---------------------------------------------------------------------------
103 // wxStaticBitmap
104 // ---------------------------------------------------------------------------
105
106 // we may have either bitmap or icon: if a bitmap with mask is passed, we
107 // will transform it to an icon ourselves because otherwise the mask will
108 // be ignored by Windows
109 // note that this function will create a new object every time
110 // it is called even if the image needs no conversion
111
112 static wxGDIImage* ConvertImage( const wxGDIImage& bitmap )
113 {
114 bool isIcon = bitmap.IsKindOf( CLASSINFO(wxIcon) );
115
116 if( !isIcon )
117 {
118 wxASSERT_MSG( wxDynamicCast(&bitmap, wxBitmap),
119 _T("not an icon and not a bitmap?") );
120
121 const wxBitmap& bmp = (const wxBitmap&)bitmap;
122 wxMask *mask = bmp.GetMask();
123 if ( mask && mask->GetMaskBitmap() )
124 {
125 wxIcon* icon = new wxIcon;
126 icon->CopyFromBitmap(bmp);
127
128 return icon;
129 }
130
131 return new wxBitmap( bmp );
132 }
133
134 // copying a bitmap is a cheap operation
135 return new wxIcon( (const wxIcon&)bitmap );
136 }
137
138 bool wxStaticBitmap::Create(wxWindow *parent,
139 wxWindowID id,
140 const wxGDIImage& bitmap,
141 const wxPoint& pos,
142 const wxSize& size,
143 long style,
144 const wxString& name)
145 {
146 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
147 return false;
148
149 // we may have either bitmap or icon: if a bitmap with mask is passed, we
150 // will transform it to an icon ourselves because otherwise the mask will
151 // be ignored by Windows
152 m_isIcon = bitmap.IsKindOf(CLASSINFO(wxIcon));
153
154 wxGDIImage *image = ConvertImage( bitmap );
155 m_isIcon = image->IsKindOf( CLASSINFO(wxIcon) );
156
157 // create the native control
158 if ( !MSWCreateControl(_T("STATIC"), wxEmptyString, pos, size) )
159 {
160 // control creation failed
161 return false;
162 }
163
164 // no need to delete the new image
165 SetImageNoCopy(image);
166
167 // GetBestSize will work properly now, so set the best size if needed
168 SetBestSize(size);
169
170 return true;
171 }
172
173 wxBorder wxStaticBitmap::GetDefaultBorder() const
174 {
175 return wxBORDER_NONE;
176 }
177
178 WXDWORD wxStaticBitmap::MSWGetStyle(long style, WXDWORD *exstyle) const
179 {
180 WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle);
181
182 // what kind of control are we?
183 msStyle |= m_isIcon ? SS_ICON : SS_BITMAP;
184
185 // we use SS_CENTERIMAGE to prevent the control from resizing the bitmap to
186 // fit to its size -- this is unexpected and doesn't happen in other ports
187 //
188 // and SS_NOTIFY is necessary to receive mouse events
189 msStyle |= SS_CENTERIMAGE | SS_NOTIFY;
190
191 return msStyle;
192 }
193
194 bool wxStaticBitmap::ImageIsOk() const
195 {
196 return m_image && m_image->Ok();
197 }
198
199 void wxStaticBitmap::Free()
200 {
201 delete m_image;
202
203 m_image = NULL;
204 }
205
206 wxSize wxStaticBitmap::DoGetBestSize() const
207 {
208 if ( ImageIsOk() )
209 {
210 wxSize best(m_image->GetWidth(), m_image->GetHeight());
211 CacheBestSize(best);
212 return best;
213 }
214
215 // this is completely arbitrary
216 return wxSize(16, 16);
217 }
218
219 void wxStaticBitmap::SetImage( const wxGDIImage* image )
220 {
221 wxGDIImage* convertedImage = ConvertImage( *image );
222 SetImageNoCopy( convertedImage );
223 InvalidateBestSize();
224 }
225
226 void wxStaticBitmap::SetImageNoCopy( wxGDIImage* image)
227 {
228 Free();
229
230 m_isIcon = image->IsKindOf( CLASSINFO(wxIcon) );
231 // the image has already been copied
232 m_image = image;
233
234 int x, y;
235 int w, h;
236 GetPosition(&x, &y);
237 GetSize(&w, &h);
238
239 #ifdef __WIN32__
240 HANDLE handle = (HANDLE)m_image->GetHandle();
241 LONG style = ::GetWindowLong( (HWND)GetHWND(), GWL_STYLE ) ;
242 ::SetWindowLong( (HWND)GetHWND(), GWL_STYLE, ( style & ~( SS_BITMAP|SS_ICON ) ) |
243 ( m_isIcon ? SS_ICON : SS_BITMAP ) );
244 ::SendMessage(GetHwnd(), STM_SETIMAGE,
245 m_isIcon ? IMAGE_ICON : IMAGE_BITMAP, (LPARAM)handle);
246 #endif // Win32
247
248 if ( ImageIsOk() )
249 {
250 int width = image->GetWidth(),
251 height = image->GetHeight();
252 if ( width && height )
253 {
254 w = width;
255 h = height;
256
257 ::MoveWindow(GetHwnd(), x, y, width, height, FALSE);
258 }
259 }
260
261 RECT rect;
262 rect.left = x;
263 rect.top = y;
264 rect.right = x + w;
265 rect.bottom = y + h;
266 ::InvalidateRect(GetHwndOf(GetParent()), &rect, TRUE);
267 }
268
269 #endif // wxUSE_STATBMP
270