| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*
- * Copyright (c) 2012-2024 Daniele Bartolini et al.
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
- using Gtk;
- 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.Button _version;
- public Statusbar()
- {
- Object(orientation: Gtk.Orientation.HORIZONTAL, spacing: 0);
- this.margin_start = 8;
- this.margin_end = 8;
- // Data
- _timer_id = 0;
- // Widgets
- _status = new Gtk.Label("Idle");
- _temporary_message = new Gtk.Label("");
- _donate = new Gtk.Button.from_icon_name("hearth-symbolic", Gtk.IconSize.SMALL_TOOLBAR);
- _donate.get_style_context().add_class("flat");
- _donate.clicked.connect(() => {
- GLib.Application.get_default().activate_action("donate", null);
- });
- _version = new Gtk.Button.with_label(CROWN_VERSION);
- _version.get_style_context().add_class("flat");
- _version.get_style_context().add_class("compact");
- _version.clicked.connect(() => {
- GLib.Application.get_default().activate_action("changelog", null);
- });
- 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;
- });
- }
- }
- } /* namespace Crown */
|