Changeset 1901
- Timestamp:
- 19/11/08 20:54:46 (7 weeks ago)
- svm:headrev:
cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11183- Location:
- freevo/src
- Files:
-
- 11 modified
-
dialog/__init__.py (modified) (1 diff)
-
dialog/dialogs.py (modified) (1 diff)
-
dialog/display.py (modified) (1 diff)
-
dialog/plugins/osd_display.py (modified) (1 diff)
-
dialog/plugins/tiny_xosd_display.py (modified) (2 diffs)
-
dialog/plugins/x11_overlay_display.py (modified) (2 diffs)
-
dialog/widgets.py (modified) (1 diff)
-
helpers/svgtodialog.py (modified) (1 diff)
-
tv/plugins/livepause/__init__.py (modified) (1 diff)
-
tv/plugins/livepause/display/text.py (modified) (2 diffs)
-
tv/plugins/livepause/players.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
freevo/src/dialog/__init__.py
r1900 r1901 1 # -*- coding: iso-8859-1 -*- 2 # ----------------------------------------------------------------------- 3 # Freevo module to handle channel changing. 4 # ----------------------------------------------------------------------- 5 # $Id$ 6 # 7 # Notes: 8 # Todo: 9 # 10 # ----------------------------------------------------------------------- 11 # Freevo - A Home Theater PC framework 12 # Copyright (C) 2003 Krister Lagerstrom, et al. 13 # Please see the file freevo/Docs/CREDITS for a complete list of authors. 14 # 15 # This program is free software; you can redistribute it and/or modify 16 # it under the terms of the GNU General Public License as published by 17 # the Free Software Foundation; either version 2 of the License, or 18 # (at your option) any later version. 19 # 20 # This program is distributed in the hope that it will be useful, but 21 # WITHOUT ANY WARRANTY; without even the implied warranty of MER- 22 # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 23 # Public License for more details. 24 # 25 # You should have received a copy of the GNU General Public License along 26 # with this program; if not, write to the Free Software Foundation, Inc., 27 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 28 # 29 # ----------------------------------------------------------------------- 30 1 31 """ 2 32 Module used to display information on top of the menu or video. -
freevo/src/dialog/dialogs.py
r1900 r1901 6 6 # 7 7 # Notes: 8 #9 #10 8 # Todo: 11 #12 9 # 13 10 # ----------------------------------------------------------------------- -
freevo/src/dialog/display.py
r1900 r1901 1 # -*- coding: iso-8859-1 -*- 2 # ----------------------------------------------------------------------- 3 # 4 # ----------------------------------------------------------------------- 5 # $Id$ 6 # 7 # Notes: 8 # Todo: 9 # 10 # ----------------------------------------------------------------------- 11 # Freevo - A Home Theater PC framework 12 # Copyright (C) 2003 Krister Lagerstrom, et al. 13 # Please see the file freevo/Docs/CREDITS for a complete list of authors. 14 # 15 # This program is free software; you can redistribute it and/or modify 16 # it under the terms of the GNU General Public License as published by 17 # the Free Software Foundation; either version 2 of the License, or 18 # (at your option) any later version. 19 # 20 # This program is distributed in the hope that it will be useful, but 21 # WITHOUT ANY WARRANTY; without even the implied warranty of MER- 22 # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 23 # Public License for more details. 24 # 25 # You should have received a copy of the GNU General Public License along 26 # with this program; if not, write to the Free Software Foundation, Inc., 27 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 28 # 29 # ----------------------------------------------------------------------- 30 1 31 """ 2 32 Module defining the Display interface. -
freevo/src/dialog/plugins/osd_display.py
r1900 r1901 1 # -*- coding: iso-8859-1 -*- 2 # ----------------------------------------------------------------------- 3 # 4 # ----------------------------------------------------------------------- 5 # $Id$ 6 # 7 # Notes: 8 # Todo: 9 # 10 # ----------------------------------------------------------------------- 11 # Freevo - A Home Theater PC framework 12 # Copyright (C) 2003 Krister Lagerstrom, et al. 13 # Please see the file freevo/Docs/CREDITS for a complete list of authors. 14 # 15 # This program is free software; you can redistribute it and/or modify 16 # it under the terms of the GNU General Public License as published by 17 # the Free Software Foundation; either version 2 of the License, or 18 # (at your option) any later version. 19 # 20 # This program is distributed in the hope that it will be useful, but 21 # WITHOUT ANY WARRANTY; without even the implied warranty of MER- 22 # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 23 # Public License for more details. 24 # 25 # You should have received a copy of the GNU General Public License along 26 # with this program; if not, write to the Free Software Foundation, Inc., 27 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 28 # 29 # ----------------------------------------------------------------------- 30 1 31 import pygame.image 2 32 import pygame.draw -
freevo/src/dialog/plugins/tiny_xosd_display.py
r1900 r1901 1 # -*- coding: iso-8859-1 -*- 2 # ----------------------------------------------------------------------- 3 # Freevo module to handle channel changing. 4 # ----------------------------------------------------------------------- 5 # $Id$ 6 # 7 # Notes: 8 # Todo: 9 # 10 # ----------------------------------------------------------------------- 11 # Freevo - A Home Theater PC framework 12 # Copyright (C) 2003 Krister Lagerstrom, et al. 13 # Please see the file freevo/Docs/CREDITS for a complete list of authors. 14 # 15 # This program is free software; you can redistribute it and/or modify 16 # it under the terms of the GNU General Public License as published by 17 # the Free Software Foundation; either version 2 of the License, or 18 # (at your option) any later version. 19 # 20 # This program is distributed in the hope that it will be useful, but 21 # WITHOUT ANY WARRANTY; without even the implied warranty of MER- 22 # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 23 # Public License for more details. 24 # 25 # You should have received a copy of the GNU General Public License along 26 # with this program; if not, write to the Free Software Foundation, Inc., 27 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 28 # 29 # ----------------------------------------------------------------------- 1 30 2 31 import time … … 63 92 self.osd.display('%s (%d%%)' % (channel, level), pyosd.TYPE_STRING, line=0) 64 93 self.osd.display(percent, pyosd.TYPE_PERCENT, line=1) 65 66 -
freevo/src/dialog/plugins/x11_overlay_display.py
r1900 r1901 1 # -*- coding: iso-8859-1 -*- 2 # ----------------------------------------------------------------------- 3 # 4 # ----------------------------------------------------------------------- 5 # $Id$ 6 # 7 # Notes: 8 # Todo: 9 # 10 # ----------------------------------------------------------------------- 11 # Freevo - A Home Theater PC framework 12 # Copyright (C) 2003 Krister Lagerstrom, et al. 13 # Please see the file freevo/Docs/CREDITS for a complete list of authors. 14 # 15 # This program is free software; you can redistribute it and/or modify 16 # it under the terms of the GNU General Public License as published by 17 # the Free Software Foundation; either version 2 of the License, or 18 # (at your option) any later version. 19 # 20 # This program is distributed in the hope that it will be useful, but 21 # WITHOUT ANY WARRANTY; without even the implied warranty of MER- 22 # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 23 # Public License for more details. 24 # 25 # You should have received a copy of the GNU General Public License along 26 # with this program; if not, write to the Free Software Foundation, Inc., 27 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 28 # 29 # ----------------------------------------------------------------------- 30 1 31 import osd 2 32 import config … … 46 76 self.volume_dialog.skin = skin 47 77 super(X11GraphicsDisplay, self).show_volume(level, muted, channel) 48 78 49 79 def show_message(self, message): 50 80 dialog = MessageDialog(message) -
freevo/src/dialog/widgets.py
r1900 r1901 6 6 # 7 7 # Notes: 8 #9 #10 8 # Todo: 11 #12 9 # 13 10 # ----------------------------------------------------------------------- -
freevo/src/helpers/svgtodialog.py
r1900 r1901 1 # -*- coding: iso-8859-1 -*- 2 # ----------------------------------------------------------------------- 3 # Freevo module to handle channel changing. 4 # ----------------------------------------------------------------------- 5 # $Id$ 6 # 7 # Notes: 8 # Todo: 9 # 10 # ----------------------------------------------------------------------- 11 # Freevo - A Home Theater PC framework 12 # Copyright (C) 2003 Krister Lagerstrom, et al. 13 # Please see the file freevo/Docs/CREDITS for a complete list of authors. 14 # 15 # This program is free software; you can redistribute it and/or modify 16 # it under the terms of the GNU General Public License as published by 17 # the Free Software Foundation; either version 2 of the License, or 18 # (at your option) any later version. 19 # 20 # This program is distributed in the hope that it will be useful, but 21 # WITHOUT ANY WARRANTY; without even the implied warranty of MER- 22 # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 23 # Public License for more details. 24 # 25 # You should have received a copy of the GNU General Public License along 26 # with this program; if not, write to the Free Software Foundation, Inc., 27 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 28 # 29 # ----------------------------------------------------------------------- 30 1 31 import sys 2 32 from xml.dom import * -
freevo/src/tv/plugins/livepause/__init__.py
r1900 r1901 1 1 # -*- coding: iso-8859-1 -*- 2 2 # ----------------------------------------------------------------------- 3 # __init__.py -the Freevo Live Pause module for tv3 # the Freevo Live Pause module for tv 4 4 # ----------------------------------------------------------------------- 5 5 # $Id$ -
freevo/src/tv/plugins/livepause/display/text.py
r1900 r1901 1 1 # -*- coding: iso-8859-1 -*- 2 2 # ----------------------------------------------------------------------- 3 # display.py -the Freevo livepause osd module for tv3 # the Freevo livepause osd module for tv 4 4 # ----------------------------------------------------------------------- 5 5 # $Id$ … … 7 7 # Notes: 8 8 # 9 #10 9 # Todo: 11 #12 10 # 13 11 # ----------------------------------------------------------------------- -
freevo/src/tv/plugins/livepause/players.py
r1900 r1901 1 1 # -*- coding: iso-8859-1 -*- 2 2 # ----------------------------------------------------------------------- 3 # players.py - theFreevo DVBStreamer module for tv3 # Freevo DVBStreamer module for tv 4 4 # ----------------------------------------------------------------------- 5 5 # $Id$
