Newer
Older
Scratch / lockwasher / src / lib / views / include / vWindow.h
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 390 bytes Scratch
#ifndef VWINDOW_H
#define VWINDOW_H

#include <objgfx30.h>
#include <ogFont.h>
#include "vWidget.h"

class vWindow : public vWidget {
  protected:
    ogSurface * realWindow;
    ogBitFont * titleFont;
  public:
             vWindow(void);
    virtual  void vDraw(void) { return; }
    virtual  bool vCreate(void);
    	     void vSDECommand(uInt32);
    virtual  ~vWindow(void);
};
#endif