comparison gui/app/cfg.h @ 36429:28ea255e40ce

Add support for TV/DVB to the GUI. Support is limited to a single (resp. the first) card. At the same time, add the new GUI option 'gui_tv_digital', the new GUI message 'evPlayTV' and the new GUI font symbol 'b'. Additionally, update the documentation.
author ib
date Fri, 29 Nov 2013 12:41:32 +0000
parents e27855a45128
children
comparison
equal deleted inserted replaced
36428:7766530caa76 36429:28ea255e40ce
19 #ifndef MPLAYER_GUI_CFG_H 19 #ifndef MPLAYER_GUI_CFG_H
20 #define MPLAYER_GUI_CFG_H 20 #define MPLAYER_GUI_CFG_H
21 21
22 #include "m_config.h" 22 #include "m_config.h"
23 #include "m_option.h" 23 #include "m_option.h"
24
25 typedef struct {
26 int StreamType;
27 char *SchemeName;
28 } guiTV_t;
29
30 extern guiTV_t guiTV[2];
24 31
25 extern m_config_t *gui_conf; 32 extern m_config_t *gui_conf;
26 33
27 extern int gtkCacheOn; 34 extern int gtkCacheOn;
28 extern int gtkCacheSize; 35 extern int gtkCacheSize;
80 extern int gui_save_pos; 87 extern int gui_save_pos;
81 extern int gui_main_pos_x; 88 extern int gui_main_pos_x;
82 extern int gui_main_pos_y; 89 extern int gui_main_pos_y;
83 extern int gui_video_pos_x; 90 extern int gui_video_pos_x;
84 extern int gui_video_pos_y; 91 extern int gui_video_pos_y;
92 extern int gui_tv_digital;
85 93
86 extern int guiWinID; 94 extern int guiWinID;
87 95
88 extern char *skinName; 96 extern char *skinName;
89 97