diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-05-26 16:44:50 +0200 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-06-09 10:06:25 +0200 |
| commit | 42547e1c5ebe3c21c39e567c370810ea5308fe70 (patch) | |
| tree | c04e602161ac0cd85b2ed6328db5e53ffd7858a6 /lib/gui | |
| parent | 03dcb1c046c540dc112c234ed5ffcd32f4005098 (diff) | |
| download | enigma2-42547e1c5ebe3c21c39e567c370810ea5308fe70.tar.gz enigma2-42547e1c5ebe3c21c39e567c370810ea5308fe70.zip | |
fix empty streams list crash, correctly show/hide color key buttons, re-implement plugin-hook for blue key, fix possible exit crash
Conflicts:
lib/python/Screens/AudioSelection.py
Diffstat (limited to 'lib/gui')
| -rw-r--r-- | lib/gui/esubtitle.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/gui/esubtitle.h b/lib/gui/esubtitle.h index 45345db1..2b0ec8ff 100644 --- a/lib/gui/esubtitle.h +++ b/lib/gui/esubtitle.h @@ -29,9 +29,17 @@ struct ePangoSubtitlePage void clear() { m_elements.clear(); } }; +struct eVobSubtitlePage +{ + pts_t show_pts; + int m_timeout; /* in milliseconds */ + ePtr<gPixmap> m_pixmap; +}; + class eDVBTeletextSubtitlePage; class eDVBPangoSubtitlePage; class ePangoSubtitlePage; +class eVobSubtitlePage; class eSubtitleWidget: public eWidget, public Object { |
