#include <static.h>
_CLASSDEF(TStatus)
class TStatus : public TStatic
{
public:
   TStatus(PTWindowsObject Parent, int ResourceId, WORD ATextLen, PTModule AModule=NULL) :
      TStatic(Parent, ResourceId, ATextLen, AModule){};
   virtual void WMPaint(RTMessage msg)=[WM_FIRST+WM_PAINT];
   virtual void WMSetText(RTMessage msg)=[WM_FIRST+WM_SETTEXT];
};
