bitmap_font.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:2k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * bitmap_font.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: bitmap_font.hpp 7174 2004-03-27 11:24:24Z asmax $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef BITMAP_FONT_HPP
  24. #define BITMAP_FONT_HPP
  25. #include "generic_font.hpp"
  26. #include <string>
  27. class GenericBitmap;
  28. /// Class to handle bitmap fonts
  29. class BitmapFont: public GenericFont
  30. {
  31.     public:
  32.         BitmapFont( intf_thread_t *pIntf, const GenericBitmap &rBitmap,
  33.                     const string &rType );
  34.         virtual ~BitmapFont() {}
  35.         virtual bool init() { return true; }
  36.         /// Render a string on a bitmap.
  37.         /// If maxWidth != -1, the text is truncated with '...'
  38.         virtual GenericBitmap *drawString( const UString &rString,
  39.             uint32_t color, int maxWidth = -1 ) const;
  40.         /// Get the font size
  41.         virtual int getSize() const { return 12; }
  42.     private:
  43.         /// Description of a glyph
  44.         struct Glyph_t
  45.         {
  46.             Glyph_t(): m_xPos( -1 ), m_yPos( 0 ) {}
  47.             int m_xPos, m_yPos;
  48.         };
  49.         /// Bitmap
  50.         const GenericBitmap &m_rBitmap;
  51.         /// Glyph size
  52.         int m_width, m_height;
  53.         /// Horizontal advance between two characters
  54.         int m_advance;
  55.         /// Horizontal advance for non-displayable characters
  56.         int m_skip;
  57.         /// Character table
  58.         Glyph_t m_table[256];
  59. };
  60. #endif