Example #1
0
 def __init__(self, uid):
     BaseUIView.__init__(self, uid)
     self.icon = None
     self.dp = None
     self.emblem = None
     self.name = None
     self.pymsn_contact = None
Example #2
0
 def getGroup(uid):
     group = BaseUIView.getView(uid)
     if group is None:
         return GroupView(uid)
     else:
         return group
Example #3
0
 def __init__(self, uid):
     BaseUIView.__init__(self, uid)
     self.contacts = []
Example #4
0
 def __init__(self, uid):
     BaseUIView.__init__(self, uid)
     self.groups = []
Example #5
0
 def getContact(uid):
     contact = BaseUIView.getView(uid)
     if contact is None:
         return ContactView(uid)
     else:
         return contact