mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	Fixed some default parameters in 'skincurses'
This commit is contained in:
		
							
								
								
									
										4
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								HISTORY
									
									
									
									
									
								
							| @@ -2869,3 +2869,7 @@ Video Disk Recorder Revision History | ||||
| - The new plugin 'skincurses' re-implements the functionality that was previously | ||||
|   available by compiling VDR with DEBUG_OSD. Some things may not yet work as they | ||||
|   should, but it's a starting point. | ||||
|  | ||||
| 2004-05-31: Version 1.3.10 | ||||
|  | ||||
| - Fixed some default parameters in 'skincurses'. | ||||
|   | ||||
| @@ -1,6 +1,10 @@ | ||||
| VDR Plugin 'skincurses' Revision History | ||||
| ---------------------------------------- | ||||
|  | ||||
| 2004-05-29: Version 0.0.1 | ||||
| 2004-05-31: Version 0.0.1 | ||||
|  | ||||
| - Initial revision. | ||||
|  | ||||
| 2004-05-31: Version 0.0.2 | ||||
|  | ||||
| - Fixed some default parameters. | ||||
|   | ||||
| @@ -3,7 +3,7 @@ | ||||
|  * | ||||
|  * See the README file for copyright information and how to reach the author. | ||||
|  * | ||||
|  * $Id: skincurses.c 1.1 2004/05/31 14:14:00 kls Exp $ | ||||
|  * $Id: skincurses.c 1.2 2004/05/31 14:57:40 kls Exp $ | ||||
|  */ | ||||
|  | ||||
| #include <ncurses.h> | ||||
| @@ -11,7 +11,7 @@ | ||||
| #include <vdr/plugin.h> | ||||
| #include <vdr/skins.h> | ||||
|  | ||||
| static const char *VERSION        = "0.0.1"; | ||||
| static const char *VERSION        = "0.0.2"; | ||||
| static const char *DESCRIPTION    = "A text only skin"; | ||||
| static const char *MAINMENUENTRY  = NULL; | ||||
|  | ||||
| @@ -133,7 +133,7 @@ void cCursesOsd::RestoreRegion(void) | ||||
|      } | ||||
| } | ||||
|  | ||||
| void cCursesOsd::DrawText(int x, int y, const char *s, tColor ColorFg, tColor ColorBg, const cFont *Font, int Width = 0, int Height = 0, int Alignment = taDefault) | ||||
| void cCursesOsd::DrawText(int x, int y, const char *s, tColor ColorFg, tColor ColorBg, const cFont *Font, int Width, int Height, int Alignment) | ||||
| { | ||||
|   int w = Font->Width(s); | ||||
|   int h = Font->Height(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user