home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / contrib / src / xrc / xh_gauge.cpp < prev    next >
C/C++ Source or Header  |  2001-12-29  |  2KB  |  73 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        xh_gauge.cpp
  3. // Purpose:     XRC resource for wxGauge
  4. // Author:      Bob Mitchell
  5. // Created:     2000/03/21
  6. // RCS-ID:      $Id: xh_gauge.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_gauge.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_gauge.h"
  23. #include "wx/gauge.h"
  24.  
  25. #if wxUSE_GAUGE
  26.  
  27. wxGaugeXmlHandler::wxGaugeXmlHandler() 
  28. : wxXmlResourceHandler() 
  29. {
  30.     XRC_ADD_STYLE(wxGA_HORIZONTAL);
  31.     XRC_ADD_STYLE(wxGA_VERTICAL);
  32.     XRC_ADD_STYLE(wxGA_PROGRESSBAR);
  33.     XRC_ADD_STYLE(wxGA_SMOOTH);   // windows only
  34.     AddWindowStyles();
  35. }
  36.  
  37. wxObject *wxGaugeXmlHandler::DoCreateResource()
  38.     XRC_MAKE_INSTANCE(control, wxGauge)
  39.  
  40.     control->Create(m_parentAsWindow,
  41.                     GetID(),
  42.                     GetLong(wxT("range"), wxGAUGE_DEFAULT_RANGE), 
  43.                     GetPosition(), GetSize(),
  44.                     GetStyle(),
  45.                     wxDefaultValidator,
  46.                     GetName());
  47.  
  48.     if( HasParam(wxT("value")))
  49.     {
  50.         control->SetValue(GetLong(wxT("value")));
  51.     }
  52.     if( HasParam(wxT("shadow")))
  53.     {
  54.         control->SetShadowWidth(GetDimension(wxT("shadow")));
  55.     }
  56.     if( HasParam(wxT("bezel")))
  57.     {
  58.         control->SetBezelFace(GetDimension(wxT("bezel")));
  59.     }
  60.  
  61.     SetupWindow(control);
  62.  
  63.     return control;
  64. }
  65.  
  66. bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node)
  67. {
  68.     return IsOfClass(node, wxT("wxGauge"));
  69. }
  70.  
  71. #endif // wxUSE_GAUGE
  72.