mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +02:00
neutrino: GUI Painting of Vol. Mute and Clock (Part1)
- Added getDigitHeight() and getDigitOffset() to fontrenderer (better numerics display)
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@2151 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0aeeb601bd
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2012-03-18 (Sun, 18 Mar 2012)
Origin message was:
------------------
* neutrino: GUI Painting of Vol. Mute and Clock (Part1)
- Added getDigitHeight() and getDigitOffset() to fontrenderer (better numerics display)
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@2151 e54a6e83-5905-42d5-8d5c-058d10e6a962
------------------
This commit was generated by Migit
This commit is contained in:
@@ -292,6 +292,8 @@ return 0;
|
||||
upper = halflinegap+ascender+3; // we add 3 at top
|
||||
lower = -descender+halflinegap+1; // we add 1 at bottom
|
||||
height=upper+lower; // this is total height == distance of lines
|
||||
DigitHeight = ascender+2;
|
||||
DigitOffset = -descender+halflinegap;
|
||||
// hack end
|
||||
|
||||
//printf("glyph: hM=%d tM=%d hg=%d tg=%d ascender=%d descender=%d height=%d linegap/2=%d upper=%d lower=%d\n",
|
||||
@@ -310,6 +312,16 @@ int Font::getHeight(void)
|
||||
return height;
|
||||
}
|
||||
|
||||
int Font::getDigitHeight(void)
|
||||
{
|
||||
return DigitHeight;
|
||||
}
|
||||
|
||||
int Font::getDigitOffset(void)
|
||||
{
|
||||
return DigitOffset;
|
||||
}
|
||||
|
||||
int UTF8ToUnicode(const char * &text, const bool utf8_encoded) // returns -1 on error
|
||||
{
|
||||
int unicode_value;
|
||||
|
Reference in New Issue
Block a user