Newer
Older
ubixos / src / lib / objgfx40 / objgfx40 / vWidget.h
@reddawg reddawg on 15 Apr 2004 358 bytes UbixOS v1.0
#ifndef VWIDGET_H
#define VWIDGET_H

#include <objgfx40/objgfx40.h>

class vWidget : public ogSurface {
  protected:
    bool   active;
  public:
    vWidget(void) { active = true; }
    virtual void vDraw(void) = 0;
    virtual bool vGetActive(void) const { return active; }
    virtual bool vSetActive(bool);
    virtual bool vCreate(void) = 0;
};

#endif