skins2: fix RadialSlider
[vlc/asuraparaju-public.git] / modules / gui / skins2 / src / generic_font.hpp
blobcffcef5a1e70bde7a4d798a4404ef886cfb1d5a2
1 /*****************************************************************************
2 * generic_font.hpp
3 *****************************************************************************
4 * Copyright (C) 2003 the VideoLAN team
5 * $Id$
7 * Authors: Cyril Deguet <asmax@via.ecp.fr>
8 * Olivier Teulière <ipkiss@via.ecp.fr>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef GENERIC_FONT_HPP
26 #define GENERIC_FONT_HPP
28 #include "skin_common.hpp"
29 #include "../utils/pointer.hpp"
31 class GenericBitmap;
32 class UString;
34 /// Base class for fonts
35 class GenericFont: public SkinObject
37 public:
38 virtual ~GenericFont() { }
40 virtual bool init() = 0;
42 /// Render a string on a bitmap.
43 /// If maxWidth != -1, the text is truncated with '...'
44 /// The Bitmap is _not_ owned by this object
45 virtual GenericBitmap *drawString( const UString &rString,
46 uint32_t color, int maxWidth = -1 ) const = 0;
48 /// Get the font size
49 virtual int getSize() const = 0;
51 protected:
52 GenericFont( intf_thread_t *pIntf ): SkinObject( pIntf ) { }
55 typedef CountedPtr<GenericFont> GenericFontPtr;
58 #endif