from .common import * import mlx.const as const from mlx.i18n import xstr #------------------------------------------------------------------------------- ## @package mlx.gui.statusicon # # The status icon. # # This module implements that status icon displayed on the Windows or the GNOME # taskbar, or whatever the place for status icons is called in the used # environment. It works with both the more modern appindicator interface # (mainly found on Ubuntu), if that is available, or with the older status icon # support in Gtk (which is used on Windows as well). In this latter case, the # icon has a tooltip with the flight stage and rating information, while these # data are placed into the menu in case of appindicator. #------------------------------------------------------------------------------- class StatusIcon(FlightStatusHandler): """The class handling the status icon.""" def __init__(self, iconDirectory, gui): """Construct the status icon.""" super(StatusIcon, self).__init__() self._gui = gui self._selfToggling = False menu = gtk.Menu() if appIndicator: self._stageMenuItem = gtk.MenuItem("-") self._stageMenuItem.show() menu.append(self._stageMenuItem) self._ratingMenuItem = gtk.MenuItem("-") self._ratingMenuItem.show() menu.append(self._ratingMenuItem) separator = gtk.SeparatorMenuItem() separator.show() menu.append(separator) self._showHideMenuItem = gtk.CheckMenuItem() self._showHideMenuItem.set_label(xstr("statusicon_showmain")) self._showHideMenuItem.set_active(True) self._showHideMenuItem.connect("toggled", self._showHideToggled) self._showHideMenuItem.show() menu.append(self._showHideMenuItem) self._showMonitorMenuItem = gtk.CheckMenuItem() self._showMonitorMenuItem.set_label(xstr("statusicon_showmonitor")) self._showMonitorMenuItem.set_active(False) self._showMonitorMenuItem.connect("toggled", self._showMonitorToggled) self._showMonitorMenuItem.show() menu.append(self._showMonitorMenuItem) separator = gtk.SeparatorMenuItem() separator.show() menu.append(separator) self._quitMenuItem = gtk.MenuItem() self._quitMenuItem.set_label(xstr("statusicon_quit")) self._quitMenuItem.show() self._quitMenuItem.connect("activate", self._gui._quit) menu.append(self._quitMenuItem) menu.show() iconFile = os.path.join(iconDirectory, "logo.ico") if appIndicator: if pygobject: indicator = appindicator.Indicator.new ("mava-logger-x", iconFile, appindicator.IndicatorCategory.APPLICATION_STATUS) indicator.set_status (appindicator.IndicatorStatus.ACTIVE) else: indicator = appindicator.Indicator ("mava-logger-x", iconFile, appindicator.CATEGORY_APPLICATION_STATUS) indicator.set_status (appindicator.STATUS_ACTIVE) indicator.set_menu(menu) self._indicator = indicator else: def popup_menu(status, button, time): menu.popup(None, None, gtk.status_icon_position_menu, button, time, status) statusIcon = gtk.StatusIcon() statusIcon.set_from_file(iconFile) statusIcon.set_visible(True) statusIcon.connect('popup-menu', popup_menu) statusIcon.connect('activate', lambda status: self._gui.toggleMainWindow()) self._statusIcon = statusIcon self._updateFlightStatus() def mainWindowHidden(self): """Called when the main window is hidden.""" if self._showHideMenuItem.get_active(): self._selfToggling = True self._showHideMenuItem.set_active(False) def mainWindowShown(self): """Called when the main window is shown.""" if not self._showHideMenuItem.get_active(): self._selfToggling = True self._showHideMenuItem.set_active(True) def monitorWindowHidden(self): """Called when the monitor window is hidden.""" if self._showMonitorMenuItem.get_active(): self._selfToggling = True self._showMonitorMenuItem.set_active(False) def monitorWindowShown(self): """Called when the monitor window is shown.""" if not self._showMonitorMenuItem.get_active(): self._selfToggling = True self._showMonitorMenuItem.set_active(True) def destroy(self): """Hide and destroy the status icon.""" if appIndicator: if pygobject: self._indicator.set_status(appindicator.IndicatorStatus.PASSIVE) else: self._indicator.set_status(appindicator.STATUS_PASSIVE) else: self._statusIcon.set_visible(False) def _showHideToggled(self, menuitem): """Called when the show/hide menu item is toggled.""" if self._selfToggling: self._selfToggling = False elif self._showHideMenuItem.get_active(): self._gui.showMainWindow() else: self._gui.hideMainWindow() def _showMonitorToggled(self, menuitem): """Called when the show/hide monitor window menu item is toggled.""" if self._selfToggling: self._selfToggling = False elif self._showMonitorMenuItem.get_active(): self._gui.showMonitorWindow() else: self._gui.hideMonitorWindow() def _updateFlightStatus(self): """Update the flight status.""" stage = "-" if self._stage is None \ else xstr("flight_stage_" + const.stage2string(self._stage)) if self._noGoReason is None: rating = "%.1f%%" % (self._rating,) else: rating = self._noGoReason if appIndicator: self._stageMenuItem.set_label("%s: %s" % \ (xstr("statusicon_stage"), stage)) self._ratingMenuItem.set_label("%s: %s" % \ (xstr("statusicon_rating"), rating)) else: if self._noGoReason is not None: rating = '' + rating + '' markup = "MAVA Logger X %s\n\n%s: %s\n%s: %s" %\ (const.VERSION, xstr("statusicon_stage"), stage, xstr("statusicon_rating"), rating) self._statusIcon.set_tooltip_markup(markup)