diff options
author | Tobias Grimm <tobias@e-tobi.loc> | 2008-12-13 11:02:42 +0100 |
---|---|---|
committer | Tobias Grimm <tobias@e-tobi.loc> | 2008-12-13 11:02:42 +0100 |
commit | e2bcda13cdbcaa85f8b7462977b946b095c8b24a (patch) | |
tree | 6ab1d92cd0a324481b2259d910e68bba707c1f2e /ttxtsubsglobals.h | |
parent | e5d1aacca2020e63dbaf320ba8b1de61746ad410 (diff) | |
download | vdr-plugin-ttxtsubs-0.0.5pre2.tar.gz vdr-plugin-ttxtsubs-0.0.5pre2.tar.bz2 |
- New featuresv0.0.5pre2
- Text colours can be set and row spacing can be adjusted.
(The usual semitransparent "background" colour appearently
doesn't work with the ElchiAIO patch, don't know why.)
Thanks to Rolf Ahrenberg for the patch!
- ttxtsubs menus can now be translated to different languages.
Thanks to Rolf Ahrenberg for the patch!
English, Finnish and Swedish now included, others are welcome!
- Bugs fixed:
- Information for channels with no teletext at all is now cached
too, making channel switches to such channels faster.
- Note:
- The VDR 1.2.x patch "VDR.patch" is the same as in ttxtsubs 0.0.4b,
and the 0.0.4 and 0.0.3d patch should work equally well - there is
no need to repatch if you previously used any of those.
Diffstat (limited to 'ttxtsubsglobals.h')
-rw-r--r-- | ttxtsubsglobals.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ttxtsubsglobals.h b/ttxtsubsglobals.h index 09bae9d..cee1bd7 100644 --- a/ttxtsubsglobals.h +++ b/ttxtsubsglobals.h @@ -18,6 +18,9 @@ class cTtxtsubsConf { mBottomLB = 0; mBottomAdj = 0; mFrenchSpecial = 0; + mLineSpacing = 0; + mFgColor = 1; + mBgColor = 10; memset(mLanguages, 0, sizeof(mLanguages)); memset(mHearingImpaireds, 0, sizeof(mHearingImpaireds)); } @@ -30,6 +33,9 @@ class cTtxtsubsConf { int bottomLB(void) {return mBottomLB;} int bottomAdj(void) {return mBottomAdj;} int frenchSpecial(void) {return mFrenchSpecial;} + int lineSpacing(void) {return mLineSpacing;} + int fgColor(void) {return mFgColor;} + int bgColor(void) {return mBgColor;} char (*languages(void))[MAXLANGUAGES][2][4] {return &mLanguages;} int (*hearingImpaireds(void))[MAXLANGUAGES][2] {return &mHearingImpaireds;} @@ -43,6 +49,9 @@ class cTtxtsubsConf { int mBottomLB; int mBottomAdj; int mFrenchSpecial; + int mLineSpacing; + int mFgColor; + int mBgColor; char mLanguages[MAXLANGUAGES][2][4]; int mHearingImpaireds[MAXLANGUAGES][2]; }; |