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

Modified Files:
        Container.py InputBox.py 
Log Message:
changes for the new input widget

Index: Container.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/Container.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Container.py        18 Feb 2004 21:52:04 -0000      1.8
--- Container.py        13 Mar 2004 22:33:15 -0000      1.9
***************
*** 7,10 ****
--- 7,13 ----
  #-----------------------------------------------------------------------
  # $Log$
+ # Revision 1.9  2004/03/13 22:33:15  dischi
+ # changes for the new input widget
+ #
  # Revision 1.8  2004/02/18 21:52:04  dischi
  # Major GUI update:
***************
*** 137,140 ****
              if not child == self.border:
                  child.draw()
!         if self.border:
              self.border.draw()
--- 140,144 ----
              if not child == self.border:
                  child.draw()
! 
!         if self.border and self.border != -1:
              self.border.draw()

Index: InputBox.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/InputBox.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** InputBox.py 24 Feb 2004 18:56:09 -0000      1.16
--- InputBox.py 13 Mar 2004 22:33:15 -0000      1.17
***************
*** 11,14 ****
--- 11,17 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.17  2004/03/13 22:33:15  dischi
+ # changes for the new input widget
+ #
  # Revision 1.16  2004/02/24 18:56:09  dischi
  # add hfill to text_prop
***************
*** 83,92 ****
  
      def __init__(self, text, handler=None, type='text', x=None, y=None, width=0, 
height=0,
!                  icon=None, vertical_expansion=1, text_prop=None, parent='osd'):
  
          PopupBox.__init__(self, text, handler, x, y, width, height,
                            icon, vertical_expansion, text_prop, parent)
  
!         self.lbg = LetterBoxGroup(type=type)
          self.add_child(self.lbg)
          
--- 86,97 ----
  
      def __init__(self, text, handler=None, type='text', x=None, y=None, width=0, 
height=0,
!                  icon=None, vertical_expansion=1, text_prop=None, input_text='',
!                  numboxes=0, parent='osd'):
  
          PopupBox.__init__(self, text, handler, x, y, width, height,
                            icon, vertical_expansion, text_prop, parent)
  
!         self.lbg = LetterBoxGroup(type=type, numboxes=numboxes, text=input_text,
!                                   width=self.content.width-self.content.h_margin*2)
          self.add_child(self.lbg)
          



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to