mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Removed leftover 'needsBufferReserve' variable from cTransfer (thanks to Marco Schlüßler). - Fixed setting "No title" for broken event data (reported by Ronny Kornexl). - Fixed channel up/down switching on single card systems (reported by Stefan Huelswitt). - Fixed handling "pending" timers that blocked others that actually could record (reported by Thomas Koch). - Speeded up cVideoRepacker (thanks to Reinhard Nissl). - Added an 'Id' parameter to cDevice::PlayAudio() to allow plugins to easier process the audio data (thanks to Marco Schlüßler). - Added Czech language texts (thanks to Vladimír Bárta). Plugin authors may want to add the new entries to their I18N texts and contact the translators to have their texts translated. Note that there are now 21 different OSD languages, so please make sure you have 21 versions for each of your texts. - Updated the Polish OSD texts (thanks to Jaroslaw Swierczynski). - Fixed auto advance in string entry fields when pressing Up/Down in insert mode (reported by Udo Richter). - Fixed handling the "Setup/OSD/Menu button closes" option when set to 'yes' in case a replay is active (thanks to Udo Richter). - Improved cUnbufferedFile; USE_FADVISE is now defined in tools.c by default, so if you don't want to use "fadvise" you need to comment out that line (thanks to Artur Skawina). - Fixed a missing ',' in the Swedish OSD texts (thanks to Arthur Konovalov). - cDevice::Transferring() can now be used to determine whether the (primary) device is currently playing in Transfer Mode (based on a suggestion by Reinhard Nissl). - The 'runvdr' script no longer uses the $VDRUSR environment variable to set the user id under which 'vdr' shall run. Just add the '-u username' option when you call 'runvdr'. - Fixed multiple entries of the same subdirectory in the "Recordings" menu (reported by Christian Jacobsen). - Enabled generating a core dump if VDR is run with a different user id (thanks to Ville Skyttä). - Fixed handling the "Blue" key in the "Schedule" menu for the current channel (thanks to Rolf Ahrenberg). - Renamed the Makefile target 'plugins-clean' to 'clean-plugins' (suggested by Sebastian Frei). - Made all font and image data 'const' (thanks to Darren Salt). - Fixed scrolling with Up/Down in case there are non-selectable items at the beginning or end of the menu (reported by Helmut Auer). - Added cSkin::GetTextAreaWidth() and cSkin::GetTextAreaFont(), so that a plugin that wants to do special text formatting can do so (thanks to Alexander Rieger).
90 lines
2.5 KiB
C++
90 lines
2.5 KiB
C++
/*
|
|
* font.h: Font handling for the DVB On Screen Display
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: font.h 1.12 2006/02/05 13:46:36 kls Exp $
|
|
*/
|
|
|
|
#ifndef __FONT_H
|
|
#define __FONT_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
enum eDvbFont {
|
|
fontOsd,
|
|
fontFix,
|
|
fontSml
|
|
#define eDvbFontSize (fontSml + 1)
|
|
};
|
|
|
|
enum eDvbCode {
|
|
code_iso8859_1,
|
|
code_iso8859_2,
|
|
code_iso8859_5,
|
|
code_iso8859_7,
|
|
code_iso8859_13,
|
|
code_iso8859_15,
|
|
#define eDvbCodeSize (code_iso8859_15 + 1)
|
|
};
|
|
|
|
class cFont {
|
|
public:
|
|
enum { NUMCHARS = 256 };
|
|
typedef unsigned long tPixelData;
|
|
struct tCharData {
|
|
tPixelData width, height;
|
|
tPixelData lines[1];
|
|
};
|
|
private:
|
|
static eDvbCode code;
|
|
static cFont *fonts[];
|
|
const tCharData *data[NUMCHARS];
|
|
int height;
|
|
public:
|
|
cFont(const void *Data);
|
|
virtual ~cFont() {}
|
|
void SetData(const void *Data);
|
|
virtual int Width(unsigned char c) const { return data[c]->width; }
|
|
///< Returns the width of the given character.
|
|
virtual int Width(const char *s) const;
|
|
///< Returns the width of the given string.
|
|
virtual int Height(unsigned char c) const { return data[c]->height; }
|
|
///< Returns the height of the given character.
|
|
virtual int Height(const char *s) const;
|
|
///< Returns the height of the given string.
|
|
virtual int Height(void) const { return height; }
|
|
///< Returns the height of this font (all characters have the same height).
|
|
const tCharData *CharData(unsigned char c) const { return data[c]; }
|
|
static bool SetCode(const char *Code);
|
|
static void SetCode(eDvbCode Code);
|
|
static void SetFont(eDvbFont Font, const void *Data = NULL);
|
|
static const cFont *GetFont(eDvbFont Font);
|
|
};
|
|
|
|
class cTextWrapper {
|
|
private:
|
|
char *text;
|
|
char *eol;
|
|
int lines;
|
|
int lastLine;
|
|
public:
|
|
cTextWrapper(void);
|
|
cTextWrapper(const char *Text, const cFont *Font, int Width);
|
|
~cTextWrapper();
|
|
void Set(const char *Text, const cFont *Font, int Width);
|
|
///< Wraps the Text to make it fit into the area defined by the given Width
|
|
///< when displayed with the given Font.
|
|
///< Wrapping is done by inserting the necessary number of newline
|
|
///< characters into the string.
|
|
const char *Text(void);
|
|
///< Returns the full wrapped text.
|
|
int Lines(void) { return lines; }
|
|
///< Returns the actual number of lines needed to display the full wrapped text.
|
|
const char *GetLine(int Line);
|
|
///< Returns the given Line. The first line is numbered 0.
|
|
};
|
|
|
|
#endif //__FONT_H
|