def children(self):
     return REF(self.__dict__, "_AbsLayoutWidget__content")
 def name(self):
     return REF(self.__dict__, "_AbsApplication__name")
 def components(self):
     return REF(self.__dict__, "_AbsApplication__components")
 def rows(self):
     return REF(self.__dict__,
                "_" + str(self.__class__.__name__) + "__rows")
 def condition(self):
     return REF(self.__dict__, "_AbsControlNode__condition")
 def text(self):
     #return REF(self.__dict__, "_" + str(self.__class__.__name__) + "__text")
     return REF(self.__dict__, "_TextedWidget__text")
 def visible(self):
     return REF(self.__dict__, "_AbsWidget__visible")
 def menu(self):
     return REF(self.__dict__, "_AbsWindow__menu")
 def body(self):
     return REF(self.__dict__, "_AbsWindow__body")
 def data(self):
     return REF(self.__dict__, "_SelfSizeable__data")
 def title(self):
     return REF(self.__dict__, "_AbsWindow__title")
 def height(self):
     try:
         return REF(self.__dict__, "_Sizeable__height")
     except KeyError:
         raise UnsetPropertyError("Set 'height' before accessing it")
 def width(self):
     try:
         return REF(self.__dict__, "_Sizeable__width")
     except KeyError:
         raise UnsetPropertyError("Set 'width' before accessing it")
 def checked(self):
     return REF(self.__dict__, "_Checkable__checked")
Exemplo n.º 15
0
 def pool(self):
     return REF(self.__dict__, "_pool")
 def value(self):
     return REF(self.__dict__, "_AbsWidget__value")
Exemplo n.º 17
0
 def get(self, selector, val):
     if selector is "id":
         return REF(REF(self._pool, val), "obj")
Exemplo n.º 18
0
 def onclick(self):
     return REF(self.__dict__, "_AbsButtonWidget__onclick")