Update of /cvsroot/freevo/freevo/src/gui
In directory sc8-pr-cvs1:/tmp/cvs-serv8166
Added Files:
ProgressBox.py Progressbar.py
Log Message:
Add progressbar and box with progressbar
--- NEW FILE: ProgressBox.py ---
#if 0 /*
# -----------------------------------------------------------------------
# ProgressBox.py - simple box with progress bar
# -----------------------------------------------------------------------
# $Id: ProgressBox.py,v 1.1 2003/09/01 18:52:55 dischi Exp $
#
# Notes:
# Todo:
#
# -----------------------------------------------------------------------
# $Log: ProgressBox.py,v $
# Revision 1.1 2003/09/01 18:52:55 dischi
# Add progressbar and box with progressbar
#
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
# Copyright (C) 2003 Krister Lagerstrom, et al.
# Please see the file freevo/Docs/CREDITS for a complete list of authors.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MER-
# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# ----------------------------------------------------------------------- */
#endif
import config
from GUIObject import *
from PopupBox import *
from Color import *
from Progressbar import *
from Border import *
from Label import *
from types import *
DEBUG = 0
import event as em
class ProgressBox(PopupBox):
"""
left x coordinate. Integer
top y coordinate. Integer
width Integer
height Integer
text String to print.
bg_color Background color (Color)
fg_color Foreground color (Color)
icon icon
border Border
bd_color Border color (Color)
bd_width Border width Integer
"""
def __init__(self, parent='osd', text=" ", left=None,
top=None, width=0, height=0, bg_color=None, fg_color=None,
icon=None, border=None, bd_color=None, bd_width=None,
vertical_expansion=1, full=0):
PopupBox.__init__(self, parent, text, None, left, top, width, height,
bg_color, fg_color, icon, border, bd_color, bd_width,
vertical_expansion)
self.progressbar = Progressbar(full=full, width=self.width-20)
self.add_child(self.progressbar)
def tick(self):
self.progressbar.tick()
self.draw()
self.osd.update(self.get_rect())
def eventhandler(self, event):
return self.parent.eventhandler(event)
--- NEW FILE: Progressbar.py ---
#if 0 /*
# -----------------------------------------------------------------------
# Progressbar.py - a simple progress bar
# -----------------------------------------------------------------------
# $Id: Progressbar.py,v 1.1 2003/09/01 18:52:55 dischi Exp $
#
# Notes:
# Todo:
#
# -----------------------------------------------------------------------
# $Log: Progressbar.py,v $
# Revision 1.1 2003/09/01 18:52:55 dischi
# Add progressbar and box with progressbar
#
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
# Copyright (C) 2003 Krister Lagerstrom, et al.
# Please see the file freevo/Docs/CREDITS for a complete list of authors.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MER-
# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# ----------------------------------------------------------------------- */
#endif
import pygame
import config
import skin
from GUIObject import *
from Container import *
from Color import *
from Border import *
from Label import *
from types import *
from osd import Font
DEBUG = 0
class Progressbar(Container):
"""
left x coordinate. Integer
top y coordinate. Integer
width Integer
height Integer
bg_color Background color (Color)
border Border
bd_color Border color (Color)
bd_width Border width Integer
"""
def __init__(self, left=None, top=None, width=70, height=None, bg_color=None,
border=None, bd_color=None, bd_width=None, full=0):
default_height = 25
if not height:
height = default_height
Container.__init__(self, 'widget', left, top, width, height, bg_color,
0, 0, 0, border, bd_color, bd_width)
self.h_margin = 2
self.v_margin = 2
self.set_v_align(Align.BOTTOM)
self.set_h_align(Align.CENTER)
self.position = 0
self.full = full
def _draw(self):
if not self.width or not self.height:
raise TypeError, 'Not all needed variables set.'
position = (self.position * 100) / self.full
width, height = self.get_size()
self.surface = pygame.Surface((width, height), 0, 32)
self.surface.fill(self.bg_color.get_color_sdl())
self.surface.set_alpha(self.bg_color.get_alpha())
box = pygame.Surface(((width * position ) / 100 , height), 0, 32)
box.fill(self.selected_bg_color.get_color_sdl())
box.set_alpha(self.selected_bg_color.get_alpha())
self.surface.blit(box, (0,0))
Container._draw(self)
self.blit_parent()
def tick(self):
if self.position < self.full:
self.position += 1
def eventhandler(self, event):
return self.parent.eventhandler(event)
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog