Home
last modified time | relevance | path

Searched refs:GenericFont (Results 1 – 19 of 19) sorted by relevance

/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/src/
H A Dgeneric_font.hpp35 class GenericFont: public SkinObject class
38 virtual ~GenericFont() { } in ~GenericFont()
52 GenericFont( intf_thread_t *pIntf ): SkinObject( pIntf ) { } in GenericFont() function in GenericFont
55 typedef CountedPtr<GenericFont> GenericFontPtr;
H A Dtooltip.hpp31 class GenericFont;
42 Tooltip( intf_thread_t *pIntf, const GenericFont &rFont, int delay );
55 const GenericFont &m_rFont;
H A Dwindow_manager.hpp37 class GenericFont;
146 void createTooltip( const GenericFont &rTipFont );
H A Dbitmap_font.hpp34 class BitmapFont: public GenericFont
H A Dft2_font.hpp40 class FT2Font: public GenericFont
H A Dtheme.hpp62 GenericFont *getFontById( const std::string &id ) const;
H A Dtooltip.cpp36 Tooltip::Tooltip( intf_thread_t *pIntf, const GenericFont &rFont, int delay ): in Tooltip()
H A Dbitmap_font.cpp31 GenericFont( pIntf ), m_rBitmap( rBitmap ) in BitmapFont()
H A Dtheme.cpp244 GenericFont *Theme::getFontById( const std::string &id ) const in getFontById()
H A Dft2_font.cpp37 GenericFont( pIntf ), m_name( rName ), m_buffer( NULL ), m_size( size ), in FT2Font()
H A Dwindow_manager.cpp619 void WindowManager::createTooltip( const GenericFont &rTipFont ) in createTooltip()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/controls/
H A Dctrl_list.hpp33 class GenericFont;
43 const GenericFont &rFont, const GenericBitmap *pBitmap,
74 const GenericFont &m_rFont;
H A Dctrl_text.hpp33 class GenericFont;
65 const GenericFont &rFont, const UString &rHelp,
99 const GenericFont &m_rFont;
H A Dctrl_tree.hpp33 class GenericFont;
44 const GenericFont &rFont,
89 const GenericFont &m_rFont;
H A Dctrl_text.cpp45 const GenericFont &rFont, const UString &rHelp, in CtrlText()
H A Dctrl_list.cpp44 const GenericFont &rFont, const GenericBitmap *pBitmap, in CtrlList()
H A Dctrl_tree.cpp49 const GenericFont &rFont, in CtrlTree()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/parser/
H A Dbuilder.hpp42 class GenericFont;
110 GenericFont *getFont( const std::string &fontId );
H A Dbuilder.cpp197 GenericFont *pFont = getFont( rData.m_tooltipfont ); in addTheme()
294 GenericFont *pFont = new BitmapFont( getIntf(), *pBmp, rData.m_type ); in addBitmapFont()
312 GenericFont *pFont = new FT2Font( getIntf(), full_path, rData.m_size ); in addFont()
330 GenericFont *pFont = new FT2Font( getIntf(), path, rData.m_size ); in addFont()
743 GenericFont *pFont = getFont( rData.m_fontId ); in addText()
959 GenericFont *pFont = getFont( rData.m_fontId ); in addList()
1023 GenericFont *pFont = getFont( rData.m_fontId ); in addTree()
1209 GenericFont *Builder::getFont( const std::string &fontId ) in getFont()
1211 GenericFont *pFont = m_pTheme->getFontById(fontId); in getFont()