blob: 0161dee30bb6d402dc4cd77941664c5c770cd9b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* undelete: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id: menunoselectitem.h 0.5 2005/11/17 21:05:05 hflor Exp $
*/
#ifndef __MENUNOSELECTITEM_H
#define __MENUNOSELECTITEM_H
#include <vdr/osd.h>
#include <vdr/config.h>
#ifdef HAVE_ELCHI
#include <vdr/theme.h>
#endif
// --- cMenuOsdNoSelectItem -----------------------------------------------------
class cMenuOsdNoSelectItem : public cOsdItem {
public:
cMenuOsdNoSelectItem(const char *Text):cOsdItem(Text) { SetSelectable(false); }
};
#endif //__MENUNOSELECTITEM_H
|