summaryrefslogtreecommitdiff
path: root/osd.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-05-12 14:46:46 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-05-12 14:46:46 +0200
commit2cc450a67cd8c5bef3f0b568735e5bb7efde660a (patch)
tree85a6a3629a5171903663f29606e747f90d609892 /osd.h
parent97a5ac7cba7eccbabc757fc46d62bbb3786b94fc (diff)
downloadvdr-2cc450a67cd8c5bef3f0b568735e5bb7efde660a.tar.gz
vdr-2cc450a67cd8c5bef3f0b568735e5bb7efde660a.tar.bz2
Added 'insert' capabilities to cList
Diffstat (limited to 'osd.h')
-rw-r--r--osd.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/osd.h b/osd.h
index 9b619ea5..afd44859 100644
--- a/osd.h
+++ b/osd.h
@@ -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);
};