(self, pointAbs)
| 271 | return colItem.GetBackgroundColour() |
| 272 | |
| 273 | def getRowByAbs(self, pointAbs): |
| 274 | if pointAbs == wx.Point(-1, -1): |
| 275 | return -1 |
| 276 | pointRel = self.screenToClientFixed(pointAbs) |
| 277 | row, flags = self.HitTest(pointRel) |
| 278 | return row |
| 279 | |
| 280 | def screenToClientFixed(self, ptScreen): |
| 281 | """ |