You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
329 B

  1. '''
  2. Created on Jan 20, 2014
  3. @author: Chris
  4. '''
  5. class ComponentRegister(object):
  6. ''' Mixin class for attaching controllers to objects '''
  7. def Registercontroller(self, controller):
  8. ''' Assigns a Controller to a view (usually panel or frame) object'''
  9. if self._controller in None:
  10. self._controller = controller