| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*
- * Copyright (c) 2012-2026 Daniele Bartolini et al.
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
- namespace Crown
- {
- public class Statusbar : Gtk.Box
- {
- // Data
- public uint _timer_id;
- // Widgets
- public Gtk.Label _status;
- public Gtk.Label _temporary_message;
- public Gtk.Button _donate;
- public Gtk.Label _version;
- public const string IDLE_STATUS = "Idle";
- public Statusbar()
- {
- Object(orientation: Gtk.Orientation.HORIZONTAL, spacing: 0);
- this.margin_start = 8;
- this.margin_end = 8;
- // Data
- _timer_id = 0;
- // Widgets
- clear_status();
- _temporary_message = new Gtk.Label("");
- _donate = new Gtk.Button.from_icon_name("hearth-symbolic", Gtk.IconSize.SMALL_TOOLBAR);
- _donate.can_focus = false;
- _donate.get_style_context().add_class("flat");
- _donate.clicked.connect(() => {
- GLib.Application.get_default().activate_action("donate", null);
- });
- _version = new Gtk.Label(null);
- _version.get_style_context().add_class("colorfast-link");
- _version.set_markup("<a href=\"\">" + CROWN_VERSION + "</a>");
- _version.get_style_context().add_class("version-label");
- _version.can_focus = false;
- _version.activate_link.connect(() => {
- GLib.Application.get_default().activate_action("changelog", null);
- return true;
- });
- this.pack_start(_status, false, false, 0);
- this.pack_start(_temporary_message, false, false, 0);
- this.pack_end(_version, false, false, 0);
- this.pack_end(_donate, false, false, 6);
- this.get_style_context().add_class("statusbar");
- }
- ~Statusbar()
- {
- if (_timer_id > 0)
- GLib.Source.remove(_timer_id);
- }
- /// Shows a message on the statusbar and removes it after 4 seconds.
- public void set_temporary_message(string message)
- {
- _temporary_message.set_label("; " + message);
- if (_timer_id > 0) {
- GLib.Source.remove(_timer_id);
- _timer_id = 0;
- }
- _timer_id = GLib.Timeout.add_seconds(4, () => {
- _temporary_message.set_label("");
- _timer_id = 0;
- return GLib.Source.REMOVE;
- });
- }
- public void set_status(string status)
- {
- _status.set_text(status);
- }
- public void clear_status()
- {
- if (_status == null)
- _status = new Gtk.Label(IDLE_STATUS);
- else
- _status.set_text(IDLE_STATUS);
- }
- }
- } /* namespace Crown */
|