diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-12 14:46:46 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-12 14:46:46 +0200 |
commit | 2cc450a67cd8c5bef3f0b568735e5bb7efde660a (patch) | |
tree | 85a6a3629a5171903663f29606e747f90d609892 /osd.h | |
parent | 97a5ac7cba7eccbabc757fc46d62bbb3786b94fc (diff) | |
download | vdr-2cc450a67cd8c5bef3f0b568735e5bb7efde660a.tar.gz vdr-2cc450a67cd8c5bef3f0b568735e5bb7efde660a.tar.bz2 |
Added 'insert' capabilities to cList
Diffstat (limited to 'osd.h')
-rw-r--r-- | osd.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.h 1.28 2002/05/05 12:00:00 kls Exp $ + * $Id: osd.h 1.29 2002/05/12 11:19:22 kls Exp $ */ #ifndef __OSD_H @@ -116,7 +116,8 @@ public: cOsdMenu(const char *Title, int c0 = 0, int c1 = 0, int c2 = 0, int c3 = 0, int c4 = 0); virtual ~cOsdMenu(); int Current(void) { return current; } - void Add(cOsdItem *Item, bool Current = false); + void Add(cOsdItem *Item, bool Current = false, cOsdItem *After = NULL); + void Ins(cOsdItem *Item, bool Current = false, cOsdItem *Before = NULL); void Display(void); virtual eOSState ProcessKey(eKeys Key); }; |