comparison mp_osd.h @ 25899:9d4121fa508a

Split osd related stuff from mp_core.h into new header file mp_osd.h.
author ulion
date Wed, 30 Jan 2008 07:21:05 +0000
parents mp_core.h@eb338d06c638
children 4129c8cfa742
comparison
equal deleted inserted replaced
25898:b61b5a697afc 25899:9d4121fa508a
1 #ifndef MP_OSD_H
2 #define MP_OSD_H
3
4 #define OSD_MSG_TV_CHANNEL 0
5 #define OSD_MSG_TEXT 1
6 #define OSD_MSG_SUB_DELAY 2
7 #define OSD_MSG_SPEED 3
8 #define OSD_MSG_OSD_STATUS 4
9 #define OSD_MSG_BAR 5
10 #define OSD_MSG_PAUSE 6
11 #define OSD_MSG_RADIO_CHANNEL 7
12 /// Base id for messages generated from the commmand to property bridge.
13 #define OSD_MSG_PROPERTY 0x100
14
15 #define MAX_OSD_LEVEL 3
16 #define MAX_TERM_OSD_LEVEL 1
17
18 // These appear in options list
19 extern int osd_duration;
20 extern int term_osd;
21
22 void set_osd_bar(int type,const char* name,double min,double max,double val);
23 void set_osd_msg(int id, int level, int time, const char* fmt, ...);
24 void rm_osd_msg(int id);
25
26 #endif /* MP_OSD_H */