The 'skincurses' plugin now adjusts the size of the OSD to the size of the console window

This commit is contained in:
Klaus Schmidinger 2006-09-10 14:25:55 +02:00
parent 2aa6df4b7c
commit 1b79274fae
3 changed files with 17 additions and 6 deletions

View File

@ -4919,3 +4919,5 @@ Video Disk Recorder Revision History
- Added --remove-destination to the 'cp' command for binaries in the Makefiles of
the plugins (thanks to Rolf Ahrenberg).
- The 'skincurses' plugin now adjusts the size of the OSD to the size of the console
window.

View File

@ -35,3 +35,7 @@ VDR Plugin 'skincurses' Revision History
- Fixed handling tabbed item display.
- When the 'skincurses' plugin is loaded, it automatically sets the 'curses'
skin as the current one.
2006-09-10: Version 0.0.8
- The size of the OSD is now adjusted to the size of the console window.

View File

@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
* $Id: skincurses.c 1.10 2006/06/03 14:20:39 kls Exp $
* $Id: skincurses.c 1.11 2006/09/10 14:23:55 kls Exp $
*/
#include <ncurses.h>
@ -11,7 +11,7 @@
#include <vdr/plugin.h>
#include <vdr/skins.h>
static const char *VERSION = "0.0.7";
static const char *VERSION = "0.0.8";
static const char *DESCRIPTION = "A text only skin";
static const char *MAINMENUENTRY = NULL;
@ -53,8 +53,8 @@ static int clrMessage[] = {
clrRed
};
#define OsdWidth 50//XXX
#define OsdHeight 20//XXX
static int OsdWidth = 50;
static int OsdHeight = 20;
class cCursesOsd : public cOsd {
private:
@ -780,8 +780,13 @@ bool cPluginSkinCurses::ProcessArgs(int argc, char *argv[])
bool cPluginSkinCurses::Initialize(void)
{
// Initialize any background activities the plugin shall perform.
initscr();
return true;
WINDOW *w = initscr();
if (w) {
OsdWidth = w->_maxx - w->_begx + 1;
OsdHeight = w->_maxy - w->_begy + 1;
return true;
}
return false;
}
bool cPluginSkinCurses::Start(void)