Update of /cvsroot/freevo/freevo/src/gui
In directory sc8-pr-cvs1:/tmp/cvs-serv9028

Modified Files:
        Button.py LetterBox.py LetterBoxGroup.py ListBox.py 
        ListItem.py OptionBox.py RegionScroller.py Scrollbar.py 
Log Message:
Adding self to the other GetPopupBoxStyle calls.


Index: Button.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/Button.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Button.py   23 Mar 2003 23:19:39 -0000      1.5
--- Button.py   30 Mar 2003 18:19:53 -0000      1.6
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.6  2003/03/30 18:19:53  rshortt
+ # Adding self to the other GetPopupBoxStyle calls.
+ #
  # Revision 1.5  2003/03/23 23:19:39  rshortt
  # When selected these objects now use skin properties as well.
***************
*** 108,112 ****
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle()
  
          if not self.bg_color:
--- 111,115 ----
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle(self)
  
          if not self.bg_color:

Index: LetterBox.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/LetterBox.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** LetterBox.py        30 Mar 2003 17:21:17 -0000      1.6
--- LetterBox.py        30 Mar 2003 18:19:53 -0000      1.7
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.7  2003/03/30 18:19:53  rshortt
+ # Adding self to the other GetPopupBoxStyle calls.
+ #
  # Revision 1.6  2003/03/30 17:21:17  rshortt
  # New classes: PasswordInputBox, PasswordLetterBox.
***************
*** 132,136 ****
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle()
  
          if not self.bg_color:
--- 135,139 ----
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle(self)
  
          if not self.bg_color:

Index: LetterBoxGroup.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/LetterBoxGroup.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** LetterBoxGroup.py   30 Mar 2003 17:21:19 -0000      1.6
--- LetterBoxGroup.py   30 Mar 2003 18:19:53 -0000      1.7
***************
*** 11,14 ****
--- 11,17 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.7  2003/03/30 18:19:53  rshortt
+ # Adding self to the other GetPopupBoxStyle calls.
+ #
  # Revision 1.6  2003/03/30 17:21:19  rshortt
  # New classes: PasswordInputBox, PasswordLetterBox.
***************
*** 116,120 ****
          (BLAH, BLAH, BLAH, BLAH,
           button_default, BLAH) = \
!          self.skin.GetPopupBoxStyle()
  
          if not self.bg_color:
--- 119,123 ----
          (BLAH, BLAH, BLAH, BLAH,
           button_default, BLAH) = \
!          self.skin.GetPopupBoxStyle(self)
  
          if not self.bg_color:

Index: ListBox.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/ListBox.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ListBox.py  24 Mar 2003 00:37:06 -0000      1.7
--- ListBox.py  30 Mar 2003 18:19:53 -0000      1.8
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.8  2003/03/30 18:19:53  rshortt
+ # Adding self to the other GetPopupBoxStyle calls.
+ #
  # Revision 1.7  2003/03/24 00:37:06  rshortt
  # OptionBox now uses skin properties.
***************
*** 125,129 ****
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle()
      
          # I am commenting a lot of this out until I get alpha
--- 128,132 ----
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle(self)
      
          # I am commenting a lot of this out until I get alpha

Index: ListItem.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/ListItem.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ListItem.py 23 Mar 2003 23:19:39 -0000      1.4
--- ListItem.py 30 Mar 2003 18:19:53 -0000      1.5
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.5  2003/03/30 18:19:53  rshortt
+ # Adding self to the other GetPopupBoxStyle calls.
+ #
  # Revision 1.4  2003/03/23 23:19:39  rshortt
  # When selected these objects now use skin properties as well.
***************
*** 95,99 ****
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle()
  
          if not self.bg_color:
--- 98,102 ----
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle(self)
  
          if not self.bg_color:

Index: OptionBox.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/OptionBox.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** OptionBox.py        24 Mar 2003 00:37:06 -0000      1.3
--- OptionBox.py        30 Mar 2003 18:19:53 -0000      1.4
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.4  2003/03/30 18:19:53  rshortt
+ # Adding self to the other GetPopupBoxStyle calls.
+ #
  # Revision 1.3  2003/03/24 00:37:06  rshortt
  # OptionBox now uses skin properties.
***************
*** 96,100 ****
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle()
  
          if not self.bg_color:
--- 99,103 ----
          (BLAH, BLAH, BLAH, BLAH,
           button_default, button_selected) = \
!          self.skin.GetPopupBoxStyle(self)
  
          if not self.bg_color:

Index: RegionScroller.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/RegionScroller.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** RegionScroller.py   9 Mar 2003 21:37:06 -0000       1.6
--- RegionScroller.py   30 Mar 2003 18:19:53 -0000      1.7
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.7  2003/03/30 18:19:53  rshortt
+ # Adding self to the other GetPopupBoxStyle calls.
+ #
  # Revision 1.6  2003/03/09 21:37:06  rshortt
  # Improved drawing.  draw() should now be called instead of _draw(). draw()
***************
*** 114,118 ****
  
          (BLAH, BLAH, BLAH, BLAH,
!          button_default, BLAH) = self.skin.GetPopupBoxStyle()
  
          if not self.bd_color: 
--- 117,121 ----
  
          (BLAH, BLAH, BLAH, BLAH,
!          button_default, BLAH) = self.skin.GetPopupBoxStyle(self)
  
          if not self.bd_color: 

Index: Scrollbar.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/Scrollbar.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Scrollbar.py        23 Mar 2003 23:18:11 -0000      1.4
--- Scrollbar.py        30 Mar 2003 18:19:53 -0000      1.5
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.5  2003/03/30 18:19:53  rshortt
+ # Adding self to the other GetPopupBoxStyle calls.
+ #
  # Revision 1.4  2003/03/23 23:18:11  rshortt
  # Uses skin properties now.
***************
*** 93,97 ****
          (BLAH, BLAH, BLAH, BLAH,
           button_default, BLAH) = \
!          self.skin.GetPopupBoxStyle()
  
          if not self.bg_color:
--- 96,100 ----
          (BLAH, BLAH, BLAH, BLAH,
           button_default, BLAH) = \
!          self.skin.GetPopupBoxStyle(self)
  
          if not self.bg_color:




-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to