Example #1
0
 def __init__(self, parent, **kwargs):
     """!
     A constructor for the class
     @param self The pointer for the object
     @param parent The parent object for the frame
     @param **kwargs Other arguments as accepted by ttk.Scrollbar
     """
     #Initialise the inherited class
     Progressbar.__init__(self, parent, **kwargs)
Example #2
0
 def __init__(self, master, **options):
     Progressbar.__init__(self, master, **options)
     self.queue = Queue.Queue()
     self.check_queue()