1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Added a note to the description of cFont::Size(), regarding possible differences between it and cFont::Height()

This commit is contained in:
Klaus Schmidinger 2016-12-13 15:01:24 +01:00
parent 08066065e3
commit d71544d797
3 changed files with 7 additions and 2 deletions

View File

@ -3323,6 +3323,8 @@ Thomas Reufer <thomas@reufer.ch>
ViewPort and DrawPort ViewPort and DrawPort
for suggesting to reduce the priority of the "video directory scanner" thread for suggesting to reduce the priority of the "video directory scanner" thread
for making the 'newplugin' script create the 'po' subdirectory for translations for making the 'newplugin' script create the 'po' subdirectory for translations
for suggesting to add a note to the description of cFont::Size(), regarding possible
differences between it and cFont::Height()
Eike Sauer <EikeSauer@t-online.de> Eike Sauer <EikeSauer@t-online.de>
for reporting a problem with channels that need more than 5 TS packets for detecting for reporting a problem with channels that need more than 5 TS packets for detecting

View File

@ -8851,3 +8851,5 @@ Video Disk Recorder Revision History
The cRecordingsHandler now performs its actual operations in a separate thread, The cRecordingsHandler now performs its actual operations in a separate thread,
thus avoiding locking problems and reducing the time between subsequent thus avoiding locking problems and reducing the time between subsequent
operations. operations.
- Added a note to the description of cFont::Size(), regarding possible differences
between it and cFont::Height() (suggested to Thomas Reufer).

5
font.h
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: font.h 3.1 2014/01/07 12:11:55 kls Exp $ * $Id: font.h 4.1 2016/12/13 14:58:53 kls Exp $
*/ */
#ifndef __FONT_H #ifndef __FONT_H
@ -43,7 +43,8 @@ public:
///< Returns the font name. ///< Returns the font name.
virtual int Size(void) const { return Height(); } virtual int Size(void) const { return Height(); }
///< Returns the original size as requested when the font was created. ///< Returns the original size as requested when the font was created.
///< This may be different than the actual height. ///< This may be smaller than the actual height, for instance if the
///< font contains descenders.
virtual int Width(uint c) const = 0; virtual int Width(uint c) const = 0;
///< Returns the width of the given character in pixel. ///< Returns the width of the given character in pixel.
virtual int Width(const char *s) const = 0; virtual int Width(const char *s) const = 0;