509 |
509 |
510 @param checked flag indicating the checked state of the button (boolean) |
510 @param checked flag indicating the checked state of the button (boolean) |
511 """ |
511 """ |
512 self.__autoHide = not checked |
512 self.__autoHide = not checked |
513 if self.__autoHide: |
513 if self.__autoHide: |
514 self.__autoHideButton.setIcon(UI.PixmapCache.getIcon("autoHideOn")) |
514 self.__autoHideButton.setIcon(UI.PixmapCache.getIcon("autoHideOn.png")) |
515 else: |
515 else: |
516 self.__autoHideButton.setIcon(UI.PixmapCache.getIcon("autoHideOff")) |
516 self.__autoHideButton.setIcon(UI.PixmapCache.getIcon("autoHideOff.png")) |
517 |
517 |
518 def __appFocusChanged(self, old, now): |
518 def __appFocusChanged(self, old, now): |
519 """ |
519 """ |
520 Private slot to handle a change of the focus. |
520 Private slot to handle a change of the focus. |
521 |
521 |