mirror of https://github.com/chriskiehl/Gooey.git
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.
14 lines
329 B
14 lines
329 B
'''
|
|
Created on Jan 20, 2014
|
|
|
|
@author: Chris
|
|
'''
|
|
|
|
|
|
class ComponentRegister(object):
|
|
''' Mixin class for attaching controllers to objects '''
|
|
|
|
def Registercontroller(self, controller):
|
|
''' Assigns a Controller to a view (usually panel or frame) object'''
|
|
if self._controller in None:
|
|
self._controller = controller
|