Update of /cvsroot/freevo/freevo/src/gui/areas
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8388/src/gui/areas

Modified Files:
        area.py handler.py 
Log Message:
renamed SKIN_* and OSD_* variables to GUI_*

Index: handler.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/areas/handler.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** handler.py  27 Nov 2004 13:26:57 -0000      1.19
--- handler.py  31 Dec 2004 11:57:41 -0000      1.20
***************
*** 108,113 ****
          if vfs.isfile(self.storage_file):
              self.storage = util.cache.load(self.storage_file)
!             if self.storage and self.storage.has_key(config.SKIN_XML_FILE):
!                 self.display_style['menu'] = 
self.storage[config.SKIN_XML_FILE]
  
  
--- 108,113 ----
          if vfs.isfile(self.storage_file):
              self.storage = util.cache.load(self.storage_file)
!             if self.storage and self.storage.has_key(config.GUI_XML_FILE):
!                 self.display_style['menu'] = self.storage[config.GUI_XML_FILE]
  
  
***************
*** 151,155 ****
                                       len(area.style)
  
!         self.storage[config.SKIN_XML_FILE] = self.display_style['menu']
          util.cache.save(self.storage_file, self.storage)
  
--- 151,155 ----
                                       len(area.style)
  
!         self.storage[config.GUI_XML_FILE] = self.display_style['menu']
          util.cache.save(self.storage_file, self.storage)
  
***************
*** 208,212 ****
  
              for i in menu.choices:
!                 if config.SKIN_FORCE_TEXTVIEW_STYLE == 1 and \
                         i.type == 'dir' and not i.media:
                      # directory with few items and folder:
--- 208,212 ----
  
              for i in menu.choices:
!                 if config.GUI_FORCE_TEXTVIEW_STYLE == 1 and \
                         i.type == 'dir' and not i.media:
                      # directory with few items and folder:
***************
*** 228,232 ****
                  folder += 1
                  # directory with mostly folder:
!                 if config.SKIN_FORCE_TEXTVIEW_STYLE == 1 and folder > 3 \
                         and not i.media:
                      self.use_text_view = False
--- 228,232 ----
                  folder += 1
                  # directory with mostly folder:
!                 if config.GUI_FORCE_TEXTVIEW_STYLE == 1 and folder > 3 \
                         and not i.media:
                      self.use_text_view = False

Index: area.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/areas/area.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** area.py     30 Dec 2004 11:26:59 -0000      1.21
--- area.py     31 Dec 2004 11:57:41 -0000      1.22
***************
*** 246,253 ****
                  # OVERSCAN to fill the whole screen
                  if bg.label == 'background':
!                     bg.x -= config.OSD_OVERSCAN_X
!                     bg.y -= config.OSD_OVERSCAN_Y
!                     bg.width  += 2 * config.OSD_OVERSCAN_X
!                     bg.height += 2 * config.OSD_OVERSCAN_Y
                  if bg.label == 'watermark' and self.menu.selected.image:
                      imagefile = self.menu.selected.image
--- 246,253 ----
                  # OVERSCAN to fill the whole screen
                  if bg.label == 'background':
!                     bg.x -= config.GUI_OVERSCAN_X
!                     bg.y -= config.GUI_OVERSCAN_Y
!                     bg.width  += 2 * config.GUI_OVERSCAN_X
!                     bg.height += 2 * config.GUI_OVERSCAN_Y
                  if bg.label == 'watermark' and self.menu.selected.image:
                      imagefile = self.menu.selected.image



-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to