class InfoPanel(BaseWindow):
    """
    Upper right corner panel - contains the notification counter and any
    battery indicator(s) - this panel will generally show if it has anything
    relevant to say, regardless of our Awake state.
    """
    def __init__(self):
        super(InfoPanel, self).__init__()
        self.monitor_index = status.screen.get_primary_monitor()

        self.update_geometry()

        if not settings.get_show_info_panel():
            self.disabled = True
            return

        self.show_power = False
        self.show_notifications = False

        self.box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
        self.box.set_halign(Gtk.Align.FILL)
        self.box.get_style_context().add_class("toppanel")
        self.box.get_style_context().add_class("infopanel")
        self.add(self.box)

        hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
        self.box.pack_start(hbox, False, False, 6)

        self.notification_widget = NotificationWidget()
        self.notification_widget.set_no_show_all(True)
        hbox.pack_start(self.notification_widget, True, True, 2)
        self.notification_widget.connect("notification", self.on_notification_received)

        self.power_widget = PowerWidget()
        self.power_widget.set_no_show_all(True)
        self.power_widget.connect("power-state-changed",self.on_power_state_changed)
        hbox.pack_start(self.power_widget, True, True, 2)

        self.show_all()

    def refresh_power_state(self):
        if self.disabled:
            return

        self.power_widget.refresh()

    def on_notification_received(self, obj):
        self.update_visibility()

    def on_power_state_changed(self, obj):
        self.update_visibility()

    def update_visibility(self):
        """
        Determines whether or not to show the panel, depending on:
            - Whether the power widget should show (are we on battery?)
            - Whether the notification widget should show (are there any?)

        The panel will show if either of its child indicators has useful info.
        """
        if self.disabled:
            return

        do_show = False
        battery_critical = False

        self.show_power = self.power_widget.should_show()
        if self.show_power:
            battery_critical = self.power_widget.battery_critical

        self.show_notifications = self.notification_widget.should_show()

        # Determine if we want to show all the time or only when status.Awake
        if status.Awake:
            if self.show_power or self.show_notifications:
                do_show = True
        elif self.show_notifications or battery_critical:
                do_show = True

        self.set_visible(do_show)
        self.power_widget.set_visible(self.show_power)
        self.notification_widget.set_visible(self.show_notifications)
class InfoPanel(BaseWindow):
    """
    Upper right corner panel - contains the notification counter and any
    battery indicator(s) - this panel will generally show if it has anything
    relevant to say, regardless of our Awake state.
    """
    def __init__(self):
        super(InfoPanel, self).__init__()
        self.monitor_index = status.screen.get_primary_monitor()

        self.update_geometry()

        if not settings.get_show_info_panel():
            self.disabled = True
            return

        self.show_power = False
        self.show_notifications = False

        self.box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
        self.box.set_halign(Gtk.Align.FILL)
        self.box.get_style_context().add_class("toppanel")
        self.box.get_style_context().add_class("infopanel")
        self.add(self.box)

        hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
        self.box.pack_start(hbox, False, False, 6)

        self.notification_widget = NotificationWidget()
        self.notification_widget.set_no_show_all(True)
        hbox.pack_start(self.notification_widget, True, True, 2)
        self.notification_widget.connect("notification",
                                         self.on_notification_received)

        self.power_widget = PowerWidget()
        self.power_widget.set_no_show_all(True)
        self.power_widget.connect("power-state-changed",
                                  self.on_power_state_changed)
        hbox.pack_start(self.power_widget, True, True, 2)

        self.show_all()

    def refresh_power_state(self):
        if self.disabled:
            return

        self.power_widget.refresh()

    def on_notification_received(self, obj):
        self.update_visibility()

    def on_power_state_changed(self, obj):
        self.update_visibility()

    def update_visibility(self):
        """
        Determines whether or not to show the panel, depending on:
            - Whether the power widget should show (are we on battery?)
            - Whether the notification widget should show (are there any?)

        The panel will show if either of its child indicators has useful info.
        """
        if self.disabled:
            return

        do_show = False
        battery_critical = False

        self.show_power = self.power_widget.should_show()
        if self.show_power:
            battery_critical = self.power_widget.battery_critical

        self.show_notifications = self.notification_widget.should_show()

        # Determine if we want to show all the time or only when status.Awake
        if status.Awake:
            if self.show_power or self.show_notifications:
                do_show = True
        elif self.show_notifications or battery_critical:
            do_show = True

        self.set_visible(do_show)
        self.power_widget.set_visible(self.show_power)
        self.notification_widget.set_visible(self.show_notifications)