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_bttn.cpp < prev    next >
C/C++ Source or Header  |  2001-12-31  |  2KB  |  59 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        xh_bttn.cpp
  3. // Purpose:     XRC resource for buttons
  4. // Author:      Vaclav Slavik
  5. // Created:     2000/03/05
  6. // RCS-ID:      $Id: xh_bttn.cpp,v 1.4 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_bttn.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_bttn.h"
  23. #include "wx/button.h"
  24.  
  25.  
  26. wxButtonXmlHandler::wxButtonXmlHandler() 
  27. : wxXmlResourceHandler() 
  28. {
  29.     XRC_ADD_STYLE(wxBU_LEFT);
  30.     XRC_ADD_STYLE(wxBU_RIGHT);
  31.     XRC_ADD_STYLE(wxBU_TOP);
  32.     XRC_ADD_STYLE(wxBU_BOTTOM);
  33.     AddWindowStyles();
  34. }
  35.  
  36. wxObject *wxButtonXmlHandler::DoCreateResource()
  37.    XRC_MAKE_INSTANCE(button, wxButton)
  38.  
  39.    button->Create(m_parentAsWindow,
  40.                     GetID(),
  41.                     GetText(wxT("label")),
  42.                     GetPosition(), GetSize(),
  43.                     GetStyle(),
  44.                     wxDefaultValidator,
  45.                     GetName());
  46.  
  47.     if (GetBool(wxT("default"), 0))
  48.         button->SetDefault();
  49.     SetupWindow(button);
  50.     
  51.     return button;
  52. }
  53.  
  54. bool wxButtonXmlHandler::CanHandle(wxXmlNode *node)
  55. {
  56.     return IsOfClass(node, wxT("wxButton"));
  57. }
  58.