PrependF methods to wx.Sizer. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@44570 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
import wx
 | 
						|
import wx.animate
 | 
						|
from Main import opj
 | 
						|
 | 
						|
GIFNames = [
 | 
						|
    'bitmaps/AG00178_.gif',
 | 
						|
    'bitmaps/BD13656_.gif',  
 | 
						|
    'bitmaps/AG00185_.gif',
 | 
						|
    'bitmaps/AG00039_.gif',
 | 
						|
    'bitmaps/AG00183_.gif',
 | 
						|
    'bitmaps/AG00028_.gif',
 | 
						|
    ]
 | 
						|
 | 
						|
#----------------------------------------------------------------------
 | 
						|
 | 
						|
class TestPanel(wx.Panel):
 | 
						|
    def __init__(self, parent, log):
 | 
						|
        self.log = log
 | 
						|
        wx.Panel.__init__(self, parent, -1)
 | 
						|
 | 
						|
        sizer = wx.FlexGridSizer(2,3,5,5)
 | 
						|
        for name in GIFNames:
 | 
						|
            ani = wx.animate.Animation(opj(name))
 | 
						|
            ctrl = wx.animate.AnimationCtrl(self, -1, ani)
 | 
						|
            ctrl.SetUseWindowBackgroundColour()
 | 
						|
            ctrl.Play()
 | 
						|
            sizer.AddF(ctrl, wx.SizerFlags().Border(wx.ALL, 10))
 | 
						|
 | 
						|
        border = wx.BoxSizer()
 | 
						|
        border.AddF(sizer, wx.SizerFlags(1).Expand().Border(wx.ALL, 20))
 | 
						|
        self.SetSizer(border)
 | 
						|
        
 | 
						|
 | 
						|
#----------------------------------------------------------------------
 | 
						|
 | 
						|
def runTest(frame, nb, log):
 | 
						|
    win = TestPanel(nb, log)
 | 
						|
    return win
 | 
						|
 | 
						|
#----------------------------------------------------------------------
 | 
						|
 | 
						|
 | 
						|
 | 
						|
overview = """<html><body>
 | 
						|
<h2><center>wx.animate.AnimationCtrl</center></h2>
 | 
						|
 | 
						|
wx.animate.AnimationCtrl is like a wx.StaticBitmap but is able to
 | 
						|
display an animation by extracing frames from a multi-image GIF file.
 | 
						|
 | 
						|
</body></html>
 | 
						|
"""
 | 
						|
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    import sys,os
 | 
						|
    import run
 | 
						|
    run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
 | 
						|
 |