<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>/include/ZE_ZFont.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.3 -->
<center>
<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="namespaces.html">Namespace List</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="namespacemembers.html">Namespace Members</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; <a class="qindex" href="globals.html">File Members</a> &nbsp; </center>
<hr><h1>/include/ZE_ZFont.h</h1><a href="ZE__ZFont_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
00002 <span class="comment">        This file is Part of the ZEngine Library for 2D game development.</span>
00003 <span class="comment">                   Copyright (C) 2002, 2003 James Turk</span>
00004 <span class="comment"></span>
00005 <span class="comment">                     Licensed under a BSD-style license.</span>
00006 <span class="comment"></span>
00007 <span class="comment">    The maintainer of this library is James Turk (james@conceptofzero.net) </span>
00008 <span class="comment">     and the home of this Library is http://www.zengine.sourceforge.net</span>
00009 <span class="comment">*******************************************************************************/</span>
00010 
00020 <span class="preprocessor">#ifndef __ze_zfont_h__</span>
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zfont_h__</span>
00022 <span class="preprocessor"></span>
00023 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
00024 <span class="preprocessor">#include "<a class="code" href="ZE__ZImage_8h.html">ZE_ZImage.h</a>"</span>
00025 
00026 <span class="preprocessor">#ifdef USE_SDL_TTF</span>
00027 <span class="preprocessor"></span>
00028 <span class="keyword">namespace </span>ZE
00029 {
00030 
<a name="l00036"></a><a class="code" href="classZE_1_1ZFont.html">00036</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZFont.html">ZFont</a>
00037 {
00038     <span class="keyword">protected</span>:
<a name="l00040"></a><a class="code" href="classZE_1_1ZFont.html#n0">00040</a>         <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZFont.html#n0">rEngine</a>;
<a name="l00042"></a><a class="code" href="classZE_1_1ZFont.html#n1">00042</a>         TTF_Font *<a class="code" href="classZE_1_1ZFont.html#n1">rFont</a>;
<a name="l00044"></a><a class="code" href="classZE_1_1ZFont.html#n2">00044</a>         std::string <a class="code" href="classZE_1_1ZFont.html#n2">rFilename</a>;
<a name="l00046"></a><a class="code" href="classZE_1_1ZFont.html#n3">00046</a>         SDL_Color <a class="code" href="classZE_1_1ZFont.html#n3">rColor</a>;
<a name="l00048"></a><a class="code" href="classZE_1_1ZFont.html#n4">00048</a>         SDL_Color <a class="code" href="classZE_1_1ZFont.html#n4">rBGColor</a>;
00049 
00050     <span class="keyword">public</span>:
00051 
00053         <span class="comment">//Opening and Closing//</span>
00055 <span class="comment"></span>
00061         <a class="code" href="classZE_1_1ZFont.html#a0">ZFont</a>();
00062 
00070         <a class="code" href="classZE_1_1ZFont.html#a0">ZFont</a>(std::string filename, <span class="keywordtype">int</span> size);
00071 
00077         <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZFont.html#a2">~ZFont</a>();
00078 
00086         <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a3">Open</a>(std::string filename, <span class="keywordtype">int</span> size);
00087 
00093         <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a4">Release</a>();
00094 
00096         <span class="comment">//Settings and Drawing//</span>
00098 <span class="comment"></span>
00106         <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a5">DrawText</a>(std::string text, <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &amp;image) <span class="keyword">const</span>;
00107 
00115         <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a6">DrawShadedText</a>(std::string text, <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &amp;image) <span class="keyword">const</span>;
00116 
00126         <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a7">SetColor</a>(Uint8 r, Uint8 g, Uint8 b, Uint8 a=255);
00127 
00136         <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a8">SetBGColor</a>(Uint8 r, Uint8 g, Uint8 b);
00137 
00146         <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a9">SetStyle</a>(<span class="keywordtype">bool</span> bold, <span class="keywordtype">bool</span> italic, <span class="keywordtype">bool</span> underline);
00147 
00154         <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a10">Resize</a>(<span class="keywordtype">int</span> size);
00155 
00157         <span class="comment">//Accessors//</span>
00159 <span class="comment"></span>
00166         <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a11">IsLoaded</a>() <span class="keyword">const</span>;
00167 
00174         <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a12">IsBold</a>() <span class="keyword">const</span>;
00175 
00182         <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a13">IsItalic</a>() <span class="keyword">const</span>;
00183 
00190         <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a14">IsUnderlined</a>() <span class="keyword">const</span>;
00191 
00198         <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a15">Height</a>() <span class="keyword">const</span>;
00199 
00206         <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a16">LineSkip</a>() <span class="keyword">const</span>;
00207 
00215         <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a17">StringWidth</a>(std::string text) <span class="keyword">const</span>;
00216 
00224         <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a18">StringHeight</a>(std::string text) <span class="keyword">const</span>;
00225 };
00226 
00227 }
00228 
00229 <span class="preprocessor">#endif //USE_SDL_TTF</span>
00230 <span class="preprocessor"></span>
00231 <span class="preprocessor">#endif //__ze_zfont_h__</span>
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 
width=110 height=53></a>1.3 </small></address>
</body>
</html>