home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2233.zip / wxOS2-2_3_3.zip / wxWindows-2.3.3 / contrib / src / xrc / xh_bmp.cpp < prev    next >
C/C++ Source or Header  |  2001-12-31  |  1KB  |  55 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        xh_bmp.cpp
  3. // Purpose:     XRC resource for wxBitmap and wxIcon
  4. // Author:      Vaclav Slavik
  5. // Created:     2000/09/09
  6. // RCS-ID:      $Id: xh_bmp.cpp,v 1.3 2001/12/29 16:14:04 VS Exp $
  7. // Copyright:   (c) 2000 Vaclav Slavik
  8. // Licence:     wxWindows licence
  9. /////////////////////////////////////////////////////////////////////////////
  10.  
  11. #ifdef __GNUG__
  12. #pragma implementation "xh_bmp.h"
  13. #endif
  14.  
  15. // For compilers that support precompilation, includes "wx.h".
  16. #include "wx/wxprec.h"
  17.  
  18. #ifdef __BORLANDC__
  19.     #pragma hdrstop
  20. #endif
  21.  
  22. #include "wx/xrc/xh_bmp.h"
  23. #include "wx/bitmap.h"
  24.  
  25.  
  26. wxBitmapXmlHandler::wxBitmapXmlHandler() 
  27. : wxXmlResourceHandler() 
  28. {
  29. }
  30.  
  31. wxObject *wxBitmapXmlHandler::DoCreateResource()
  32.     return new wxBitmap(GetBitmap(wxT("")));
  33. }
  34.  
  35. bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node)
  36. {
  37.     return IsOfClass(node, wxT("wxBitmap"));
  38. }
  39.  
  40. wxIconXmlHandler::wxIconXmlHandler() 
  41. : wxXmlResourceHandler() 
  42. {
  43. }
  44.  
  45. wxObject *wxIconXmlHandler::DoCreateResource()
  46.     return new wxIcon(GetIcon(wxT("")));
  47. }
  48.  
  49. bool wxIconXmlHandler::CanHandle(wxXmlNode *node)
  50. {
  51.     return IsOfClass(node, wxT("wxIcon"));
  52. }
  53.