blob: 693af24f923788ecf337c444eeda1dae1a62939c (
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
26
27
28
29
30
31
|
/*
* Image plugin to VDR (C++)
*
* (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
*/
#ifndef ___MENU_IMAGE_H
#define ___MENU_IMAGE_H
#include <vdr/osdbase.h>
#include <vdr/menuitems.h>
#include "menu.h"
// ----------------------------------------------------------------
class cMenuImageBrowse:public cMenuBrowse {
private:
bool sourcing;
void SetButtons(void);
eOSState Source(bool second);
public:
cMenuImageBrowse(void);
virtual eOSState ProcessKey(eKeys Key);
};
#endif //___MENU_IMAGE_H
|