Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

vdkfont.h

00001 /*
00002  * ===========================
00003  * VDK Visual Development Kit
00004  * Version 0.4
00005  * October 1998
00006  * ===========================
00007  *
00008  * Copyright (C) 1998, Mario Motta
00009  * Developed by Mario Motta <mmotta@guest.net>
00010  *
00011  * This library is free software; you can redistribute it and/or
00012  * modify it under the terms of the GNU Library General Public
00013  * License as published by the Free Software Foundation; either
00014  * version 2 of the License, or (at your option) any later version.
00015  *
00016  * This library is distributed in the hope that it will be useful,
00017  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00019  * Library General Public License for more details.
00020  *
00021  * You should have received a copy of the GNU Library General Public
00022  * License along with this library; if not, write to the Free Software
00023  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
00024  * 02111-130
00025  */ 
00026 
00027  
00028 #ifndef VDKFONT_H
00029 #define VDKFONT_H
00030 #include <gdk/gdk.h>
00031 #include <vdk/rawobj.h>
00032 class VDKForm;
00037 class VDKFont: public VDKRawObject
00038 {
00039   
00040   char* fontName;
00041   // STUB
00042   PangoFontDescription *pangoDes;
00043  public:
00048   VDKFont(char* fname);
00054   VDKFont(VDKObject* obj, char* name);
00058   virtual ~VDKFont();
00062   int Height(const char* s);
00066   int Width(const char* s);
00070   bool operator==(VDKFont& f);
00074   operator char*();
00079   operator GdkFont*();
00084   GdkFont* AsGdkFont();
00088   int FontId();
00092   PangoFontDescription * AsPangoFontDescription();
00093 };
00094 
00095 #endif

Generated on Sat May 4 22:00:25 2002 for vdk 2.0.1 by doxygen1.2.15