예제 #1
0
    def set_indexable(self, indexable):
        """C.set_indexable (...) -> None

        Sets the indexable of the Container.

        Adds the Container to an IIndexable implementation and causes its
        children to be added to the same, too.
        """
        BaseWidget.set_indexable(self, indexable)
        for child in self.children:
            child.set_indexable(indexable)
예제 #2
0
    def set_indexable(self, indexable):
        """C.set_indexable (...) -> None

        Sets the indexable of the Container.

        Adds the Container to an IIndexable implementation and causes its
        children to be added to the same, too.
        """
        BaseWidget.set_indexable(self, indexable)
        for child in self.children:
            child.set_indexable(indexable)
예제 #3
0
    def set_indexable (self, indexable):
        """B.set_indexable (...) -> None

        Sets the indexable of the Bin.

        Adds the Bin to an IIndexable implementation and causes its child
        to be added to the same, too.
        """
        BaseWidget.set_indexable (self, indexable)
        if self.child:
            self.child.set_indexable (indexable)
예제 #4
0
파일: Bin.py 프로젝트: illume/eyestabs
    def set_indexable(self, indexable):
        """B.set_indexable (...) -> None

        Sets the indexable of the Bin.

        Adds the Bin to an IIndexable implementation and causes its child
        to be added to the same, too.
        """
        BaseWidget.set_indexable(self, indexable)
        if self.child:
            self.child.set_indexable(indexable)