diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-06-03 13:21:33 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-06-03 13:21:33 +0200 |
commit | 9966e03e2925622557d05d49f6bbf76a382fe9b8 (patch) | |
tree | 4d065ad25cff0a267203991edbdf471dfa6ccc8a /skins.h | |
parent | a12a504fad29ce7b9d4bfa7a81aafad07d92fde0 (diff) | |
download | vdr-9966e03e2925622557d05d49f6bbf76a382fe9b8.tar.gz vdr-9966e03e2925622557d05d49f6bbf76a382fe9b8.tar.bz2 |
Fixed handling tabbed item display in 'skincurses'
Diffstat (limited to 'skins.h')
-rw-r--r-- | skins.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skins.h 1.13 2006/04/09 11:23:35 kls Exp $ + * $Id: skins.h 1.14 2006/06/03 10:21:45 kls Exp $ */ #ifndef __SKINS_H @@ -95,7 +95,7 @@ protected: cTextScroller textScroller; int Tab(int n) { return (n >= 0 && n < MaxTabs) ? tabs[n] : 0; } ///< Returns the offset of the given tab from the left border of the - ///< item display area. The value returned is in pixel.//XXX ncurses??? + ///< item display area. The value returned is in pixel. const char *GetTabbedText(const char *s, int Tab); ///< Returns the part of the given string that follows the given ///< Tab (where 0 indicates the beginning of the string). If no such @@ -104,7 +104,7 @@ public: cSkinDisplayMenu(void); virtual void SetTabs(int Tab1, int Tab2 = 0, int Tab3 = 0, int Tab4 = 0, int Tab5 = 0); ///< Sets the tab columns to the given values, which are the number of - ///< characters in each column.//XXX ncurses??? + ///< characters in each column. virtual void Scroll(bool Up, bool Page); ///< If this menu contains a text area that can be scrolled, this function ///< will be called to actually scroll the text. Up indicates whether the |