+
+wxBitmap wxXmlResourceHandler::GetBitmap(const wxString& param, wxSize size)
+{
+ wxString name = GetParamValue(param);
+ if (name.IsEmpty()) return wxNullBitmap;
+#if wxUSE_FILESYSTEM
+ wxFSFile *fsfile = GetCurFileSystem().OpenFile(name);
+ if (fsfile == NULL)
+ {
+ wxLogError(_("XML resource: Cannot create bitmap from '%s'."), param.mb_str());
+ return wxNullBitmap;
+ }
+ wxImage img(*(fsfile->GetStream()));
+ delete fsfile;
+#else
+ wxImage img(GetParamValue(_T("bitmap")));
+#endif
+ if (!img.Ok())
+ {
+ wxLogError(_("XML resource: Cannot create bitmap from '%s'."), param.mb_str());
+ return wxNullBitmap;
+ }
+ if (!(size == wxDefaultSize)) img.Rescale(size.x, size.y);
+ return img.ConvertToBitmap();
+}
+
+
+
+wxIcon wxXmlResourceHandler::GetIcon(const wxString& param, wxSize size)
+{
+#if wxCHECK_VERSION(2,3,0) || defined(__WXMSW__)
+ wxIcon icon;
+ icon.CopyFromBitmap(GetBitmap(param, size));
+#else
+ wxIcon *iconpt;
+ wxBitmap bmppt = GetBitmap(param, size);
+ iconpt = (wxIcon*)(&bmppt);
+ wxIcon icon(*iconpt);
+#endif
+ return icon;
+}
+
+
+