UI/UserInterface.py

branch
5_3_x
changeset 2764
1d85539ac41a
parent 2631
06f866e83d3a
child 2932
1cf0eb73b52d
equal deleted inserted replaced
2762:423835fb1204 2764:1d85539ac41a
5528 def __getFloatingGeometry(self, w): 5528 def __getFloatingGeometry(self, w):
5529 """ 5529 """
5530 Private method to get the geometry of a floating windows. 5530 Private method to get the geometry of a floating windows.
5531 5531
5532 @param w reference to the widget to be saved (QWidget) 5532 @param w reference to the widget to be saved (QWidget)
5533 @return list giving the widget's geometry and it's visibility 5533 @return list giving the widget's geometry and its visibility
5534 """ 5534 """
5535 s = w.size() 5535 s = w.size()
5536 p = w.pos() 5536 p = w.pos()
5537 return [p.x(), p.y(), s.width(), s.height(), not w.isHidden()] 5537 return [p.x(), p.y(), s.width(), s.height(), not w.isHidden()]
5538 5538

eric ide

mercurial