Lines Matching refs:entrypath
1542 def close(self, entrypath):
1543 '''Close the entry given by entryPath if its mode is close.'''
1544 self.tk.call(self._w, 'close', entrypath)
1546 def getmode(self, entrypath):
1547 '''Returns the current mode of the entry given by entryPath.'''
1548 return self.tk.call(self._w, 'getmode', entrypath)
1550 def open(self, entrypath):
1551 '''Open the entry given by entryPath if its mode is open.'''
1552 self.tk.call(self._w, 'open', entrypath)
1554 def setmode(self, entrypath, mode='none'):
1556 entryPath has children entries and whether the children are visible. mode
1564 self.tk.call(self._w, 'setmode', entrypath, mode)
1589 def close(self, entrypath):
1590 '''Close the entry given by entryPath if its mode is close.'''
1591 self.tk.call(self._w, 'close', entrypath)
1593 def getmode(self, entrypath):
1594 '''Returns the current mode of the entry given by entryPath.'''
1595 return self.tk.call(self._w, 'getmode', entrypath)
1597 def open(self, entrypath):
1598 '''Open the entry given by entryPath if its mode is open.'''
1599 self.tk.call(self._w, 'open', entrypath)
1608 def getstatus(self, entrypath):
1609 '''Returns the current status of entryPath.'''
1610 return self.tk.call(self._w, 'getstatus', entrypath)
1612 def setstatus(self, entrypath, mode='on'):
1613 '''Sets the status of entryPath to be status. A bitmap will be
1615 self.tk.call(self._w, 'setstatus', entrypath, mode)