mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Made cOsdMenu::Display() virtual
This commit is contained in:
parent
903148b5ad
commit
e45b9d0be3
@ -601,6 +601,8 @@ Sven Goethel <sgoethel@jausoft.com>
|
|||||||
|
|
||||||
Jan Rieger <jan@ricomp.de>
|
Jan Rieger <jan@ricomp.de>
|
||||||
for suggestions and testing raw keyboard input
|
for suggestions and testing raw keyboard input
|
||||||
|
for suggesting to make cOsdMenu::Display() virtual, which allows plugins to do some
|
||||||
|
additional processing after calling the base class function
|
||||||
|
|
||||||
Walter Stroebel <walter.stroebel@lifeline.nl>
|
Walter Stroebel <walter.stroebel@lifeline.nl>
|
||||||
for introducing "Doxygen" to document the VDR source code
|
for introducing "Doxygen" to document the VDR source code
|
||||||
|
2
HISTORY
2
HISTORY
@ -2395,3 +2395,5 @@ Video Disk Recorder Revision History
|
|||||||
Endriss).
|
Endriss).
|
||||||
- Added 'repeat' function keys '7' and '9' ("jump to mark") in replay mode
|
- Added 'repeat' function keys '7' and '9' ("jump to mark") in replay mode
|
||||||
(suggested by Oliver Endriss).
|
(suggested by Oliver Endriss).
|
||||||
|
- Made cOsdMenu::Display() virtual, which allows plugins to do some additional
|
||||||
|
processing after calling the base class function (suggested by Jan Rieger).
|
||||||
|
4
osd.h
4
osd.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: osd.h 1.39 2003/04/21 13:40:45 kls Exp $
|
* $Id: osd.h 1.40 2003/09/14 10:59:22 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __OSD_H
|
#ifndef __OSD_H
|
||||||
@ -165,7 +165,7 @@ public:
|
|||||||
int Current(void) { return current; }
|
int Current(void) { return current; }
|
||||||
void Add(cOsdItem *Item, bool Current = false, cOsdItem *After = NULL);
|
void Add(cOsdItem *Item, bool Current = false, cOsdItem *After = NULL);
|
||||||
void Ins(cOsdItem *Item, bool Current = false, cOsdItem *Before = NULL);
|
void Ins(cOsdItem *Item, bool Current = false, cOsdItem *Before = NULL);
|
||||||
void Display(void);
|
virtual void Display(void);
|
||||||
virtual eOSState ProcessKey(eKeys Key);
|
virtual eOSState ProcessKey(eKeys Key);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user