Example #1
0
    def __init__(self,
                 widget_name,
                 username,
                 password,
                 server='imap.gmail.com',
                 port=993):
        TextBoxWidget.__init__(self, widget_name)

        # get the mail object
        self.mail = Mail(username, password, server, port)
Example #2
0
 def __init__(self, widget_name):
     TextBoxWidget.__init__(self, widget_name)
Example #3
0
    def __init__(self, widget_name):
        TextBoxWidget.__init__(self, widget_name)

        table = {((), 1): self.f_inc, ((), 3): self.f_dec}
        self.buttons(table)
Example #4
0
 def __init__(self, widget_name, username, password):
     TextBoxWidget.__init__(self, widget_name)
     
     # get the grss object
     self.grss = Grss(username, password)
Example #5
0
 def __init__(self, widget_name, username, password, server='imap.gmail.com', port=993):
     TextBoxWidget.__init__(self, widget_name)
     
     # get the mail object
     self.mail = Mail(username, password, server, port)
Example #6
0
 def __init__(self, widget_name):
     TextBoxWidget.__init__(self, widget_name)
Example #7
0
 def __init__(self, widget_name):
     TextBoxWidget.__init__(self, widget_name)
     
     table = {((), 1):self.f_inc, ((), 3):self.f_dec}
     self.buttons(table) 
Example #8
0
    def __init__(self, widget_name, username, password):
        TextBoxWidget.__init__(self, widget_name)

        # get the grss object
        self.grss = Grss(username, password)