aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMihai Moldovan <ionic@ionic.de>2023-08-31 12:02:58 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2023-08-31 22:49:49 +0200
commit91d8d20e430551a6c53b53f403596fea1860c0f6 (patch)
treeff22a9bc189b00c9bbb6b62f7f7f0db2a330a15a /src
parent9b8185c782e28baff506dca6c04d494005e56afd (diff)
downloadarctica-greeter-91d8d20e430551a6c53b53f403596fea1860c0f6.tar.gz
arctica-greeter-91d8d20e430551a6c53b53f403596fea1860c0f6.tar.bz2
arctica-greeter-91d8d20e430551a6c53b53f403596fea1860c0f6.zip
src/shutdown-dialog.vala: implement timer function triggering focused button.
Once the shutdown dialog is created/realized/shown, a new message will show up at the bottom of the dialog signifying that the default action will be triggered automatically in a configurable amount of seconds. This message will be updated once per second, counting down. Once the countdown reaches zero, the currently focused button (if any) is automatically clicked. The message will keep showing for another 10 seconds, just in case the user removed the focus and no button is actually focused. Multiple actions will cancel the timer: - Pressing escape. - Selecting a different button via (Shift +) Tab or the left or right arrow keys. - Clicking within the dialog (but not on any button). - Closing the dialog. Fixes: https://github.com/ArcticaProject/arctica-greeter/issues/39
Diffstat (limited to 'src')
-rw-r--r--src/shutdown-dialog.vala108
1 files changed, 107 insertions, 1 deletions
diff --git a/src/shutdown-dialog.vala b/src/shutdown-dialog.vala
index 672b776..6bac067 100644
--- a/src/shutdown-dialog.vala
+++ b/src/shutdown-dialog.vala
@@ -47,6 +47,7 @@ public class ShutdownDialog : Gtk.Fixed
private const int CLOSE_OFFSET = 3;
private const int BUTTON_TEXT_SPACE = 9;
private const int BLUR_RADIUS = 8;
+ private const uint DEFAULT_ACTION_SUPPLEMENTAL_TIME = 10;
private Monitor monitor;
private weak Background background;
@@ -55,10 +56,14 @@ public class ShutdownDialog : Gtk.Fixed
private Gtk.Box vbox;
private DialogButton close_button;
private Gtk.Box button_box;
+ private Gtk.Label default_action_label;
private Gtk.EventBox monitor_events;
private Gtk.EventBox vbox_events;
private AnimateTimer animation;
+ private uint default_action_timeout;
+ private uint default_action_time_remaining;
+ private uint default_action_time_supplemental;
private bool closing = false;
public static string font = AGSettings.get_string (AGSettings.KEY_FONT_NAME);
@@ -81,6 +86,11 @@ public class ShutdownDialog : Gtk.Fixed
close ();
return true;
});
+ monitor_events.events |= Gdk.EventMask.KEY_PRESS_MASK;
+ monitor_events.key_press_event.connect (() => {
+ stop_default_action_timeout ();
+ return false;
+ });
add (monitor_events);
vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 10);
@@ -97,7 +107,15 @@ public class ShutdownDialog : Gtk.Fixed
vbox_events.visible = true;
vbox_events.set_visible_window (false);
vbox_events.events |= Gdk.EventMask.BUTTON_PRESS_MASK;
- vbox_events.button_press_event.connect (() => { return true; });
+ vbox_events.button_press_event.connect (() => {
+ stop_default_action_timeout ();
+ return true;
+ });
+ vbox_events.events |= Gdk.EventMask.KEY_PRESS_MASK;
+ vbox_events.key_press_event.connect (() => {
+ stop_default_action_timeout ();
+ return false;
+ });
vbox_events.add (vbox);
monitor_events.add (vbox_events);
@@ -249,6 +267,12 @@ public class ShutdownDialog : Gtk.Fixed
show.connect(() => { button.grab_focus (); });
}
+ default_action_label = new Gtk.Label (null);
+ default_action_label.set_line_wrap (true);
+ default_action_label.set_alignment (0.0f, 0.5f);
+ default_action_label.visible = false;
+ vbox.pack_start (default_action_label, false, false, 0);
+
close_button = new DialogButton (Path.build_filename (Config.PKGDATADIR, "dialog_close.png"), Path.build_filename (Config.PKGDATADIR, "dialog_close_highlight.png"), Path.build_filename (Config.PKGDATADIR, "dialog_close_press.png"));
close_button.can_focus = false;
close_button.clicked.connect (() => { close (); });
@@ -258,10 +282,89 @@ public class ShutdownDialog : Gtk.Fixed
animation = new AnimateTimer ((x) => { return x; }, AnimateTimer.INSTANT);
animation.animate.connect (() => { queue_draw (); });
show.connect (() => { animation.reset(); });
+ show.connect (() => { default_action_timeout_init (); });
+ }
+
+ private bool update_default_action_label ()
+ {
+ if (0 == default_action_time_remaining)
+ {
+ if (DEFAULT_ACTION_SUPPLEMENTAL_TIME == default_action_time_supplemental)
+ {
+ /* Fun begins here, actually trigger option. */
+ var text = _("Selecting default action now.");
+ default_action_label.set_markup ("<span font=\"%s %d\" fgcolor=\"%s\">%s</span>".printf (font_family, font_size_base+1, AGSettings.get_string (AGSettings.KEY_TOGGLEBOX_FONT_FGCOLOR), text));
+
+ /*
+ * Note that, if no button is focused, this will do
+ * nothing.
+ */
+ Gtk.Window pWindow = (Gtk.Window) get_toplevel ();
+ var focused = pWindow.get_focus ();
+ if ((null != focused) && (focused is DialogButton))
+ {
+ (focused as DialogButton).clicked ();
+ }
+
+ --default_action_time_supplemental;
+
+ return true;
+ }
+ else if (0 == default_action_time_supplemental)
+ {
+ stop_default_action_timeout ();
+
+ return false;
+ }
+ else
+ {
+ --default_action_time_supplemental;
+
+ return true;
+ }
+ }
+ else
+ {
+ var text = ngettext ("Selecting default action in one second …", "Selecting default action in %u seconds …", default_action_time_remaining).printf (default_action_time_remaining);
+ default_action_label.set_markup ("<span font=\"%s %d\" fgcolor=\"%s\">%s</span>".printf (font_family, font_size_base+1, AGSettings.get_string (AGSettings.KEY_TOGGLEBOX_FONT_FGCOLOR), text));
+
+ --default_action_time_remaining;
+
+ return true;
+ }
+ }
+
+ private void stop_default_action_timeout ()
+ {
+ if (0 != default_action_timeout)
+ {
+ GLib.Source.remove (default_action_timeout);
+ }
+ default_action_timeout = 0;
+ default_action_time_remaining = AGSettings.get_integer (AGSettings.KEY_SHUTDOWN_DIALOG_TIMEOUT);
+ default_action_time_supplemental = DEFAULT_ACTION_SUPPLEMENTAL_TIME;
+
+ default_action_label.hide ();
+ }
+
+ private void default_action_timeout_init ()
+ {
+ /* Timer for forcefully selecting default option. */
+ default_action_time_remaining = AGSettings.get_integer (AGSettings.KEY_SHUTDOWN_DIALOG_TIMEOUT);
+ default_action_time_supplemental = DEFAULT_ACTION_SUPPLEMENTAL_TIME;
+
+ /* Zero means disabled, not instantaneous, honor that. */
+ if (default_action_time_remaining > 0)
+ {
+ default_action_timeout = GLib.Timeout.add_seconds (1, update_default_action_label);
+ default_action_label.visible = true;
+ }
}
public void close ()
{
+ stop_default_action_timeout ();
+
var start_value = 1.0f - animation.progress;
animation = new AnimateTimer ((x) => { return start_value + x; }, AnimateTimer.INSTANT);
animation.animate.connect ((p) =>
@@ -366,6 +469,9 @@ public class ShutdownDialog : Gtk.Fixed
Gtk.Window pWindow = (Gtk.Window) get_toplevel ();
var widget = pWindow.get_focus ();
+ /* No matter what, stop the default action timer. */
+ stop_default_action_timeout ();
+
if (widget is DialogButton)
{
pWindow = (Gtk.Window) get_toplevel ();