32 lines
961 B
Python
32 lines
961 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
###########################################################################
|
||
|
|
## Python code generated with wxFormBuilder (version 4.2.1-5faebfea)
|
||
|
|
## http://www.wxformbuilder.org/
|
||
|
|
##
|
||
|
|
## PLEASE DO *NOT* EDIT THIS FILE!
|
||
|
|
###########################################################################
|
||
|
|
|
||
|
|
import wx
|
||
|
|
import wx.xrc
|
||
|
|
|
||
|
|
import gettext
|
||
|
|
_ = gettext.gettext
|
||
|
|
|
||
|
|
###########################################################################
|
||
|
|
## Class VideoPanel
|
||
|
|
###########################################################################
|
||
|
|
|
||
|
|
class VideoPanel ( wx.Panel ):
|
||
|
|
|
||
|
|
def __init__( self, parent, id = wx.ID_ANY, pos = wx.DefaultPosition, size = wx.Size( 400,300 ), style = wx.BORDER_NONE|wx.FULL_REPAINT_ON_RESIZE|wx.TAB_TRAVERSAL, name = wx.EmptyString ):
|
||
|
|
wx.Panel.__init__ ( self, parent, id = id, pos = pos, size = size, style = style, name = name )
|
||
|
|
|
||
|
|
self.DragAcceptFiles( True )
|
||
|
|
|
||
|
|
|
||
|
|
def __del__( self ):
|
||
|
|
pass
|
||
|
|
|
||
|
|
|