/************************************************************* ***************** ===FONTVIEW.EXE=== ****************** ************************************************************* Copyright (c)1996 Grafik Software by Malcolm Taylor -> FONTWIN.H -> Declarations for FontWindow class. */ #ifndef _fontwin_h #define _fontwin_h #include #include #include #include class FontWindow:public Window { public: FontWindow(char name[],int width,int height,int chwidth,FONT *f); ~FontWindow(); protected: void PaintWindow(int x1,int y1,int x2,int y2); void CloseWindow(); FONT *font; StaticText *type; StaticText *info; int width; DECLARE_RESPONSE_TABLE; }; void ViewFont(char *filename); #endif