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

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        xh_radbt.cpp
  3. // Purpose:     XRC resource for wxRadioButton
  4. // Author:      Bob Mitchell
  5. // Created:     2000/03/21
  6. // RCS-ID:      $Id: xh_radbt.cpp,v 1.4 2001/12/29 16:14:04 VS Exp $
  7. // Copyright:   (c) 2000 Bob Mitchell and Verant Interactive
  8. // Licence:     wxWindows licence
  9. /////////////////////////////////////////////////////////////////////////////
  10.  
  11. #ifdef __GNUG__
  12. #pragma implementation "xh_radbt.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_radbt.h"
  23. #include "wx/radiobut.h"
  24.  
  25. #if wxUSE_RADIOBOX
  26.  
  27. wxRadioButtonXmlHandler::wxRadioButtonXmlHandler() 
  28. : wxXmlResourceHandler() 
  29. {
  30.     XRC_ADD_STYLE(wxRB_GROUP);
  31.     AddWindowStyles();
  32. }
  33.  
  34. wxObject *wxRadioButtonXmlHandler::DoCreateResource()
  35.     /* BOBM - implementation note.
  36.      * once the wxBitmapRadioButton is implemented.
  37.      * look for a bitmap property. If not null, 
  38.      * make it a wxBitmapRadioButton instead of the 
  39.      * normal radio button.
  40.      */ 
  41.  
  42.     XRC_MAKE_INSTANCE(control, wxRadioButton)
  43.  
  44.     control->Create(m_parentAsWindow,
  45.                     GetID(),
  46.                     GetText(wxT("label")),
  47.                     GetPosition(), GetSize(),
  48.                     GetStyle(),
  49.                     wxDefaultValidator,
  50.                     GetName());
  51.  
  52.     control->SetValue(GetBool(wxT("value"), 0));
  53.     SetupWindow(control);
  54.     
  55.     return control;
  56. }
  57.  
  58. bool wxRadioButtonXmlHandler::CanHandle(wxXmlNode *node)
  59. {
  60.     return IsOfClass(node, wxT("wxRadioButton"));
  61. }
  62.  
  63. #endif
  64.