[Xfce4-commits] <xfce4-cpufreq-plugin:master> Use mnemonics in configuration dialog.
Harald Judt
noreply at xfce.org
Sun Aug 18 11:32:26 CEST 2013
Updating branch refs/heads/master
to 8f1ffd6142d1d757d3f09b4bcea09e28b9bf1a6b (commit)
from 379fd856f9ccede855cc45575e5c57679b5e05ac (commit)
commit 8f1ffd6142d1d757d3f09b4bcea09e28b9bf1a6b
Author: Harald Judt <h.judt at gmx.at>
Date: Thu Aug 15 11:53:07 2013 +0200
Use mnemonics in configuration dialog.
panel-plugin/xfce4-cpufreq-configure.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/panel-plugin/xfce4-cpufreq-configure.c b/panel-plugin/xfce4-cpufreq-configure.c
index abb83bd..7b8bd38 100644
--- a/panel-plugin/xfce4-cpufreq-configure.c
+++ b/panel-plugin/xfce4-cpufreq-configure.c
@@ -212,12 +212,13 @@ cpufreq_configure (XfcePanelPlugin *plugin)
hbox = gtk_hbox_new (FALSE, BORDER);
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
- label = gtk_label_new (_("Timeout Interval:"));
+ label = gtk_label_new_with_mnemonic (_("_Timeout interval:"));
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
spinner = configure->spinner_timeout =
gtk_spin_button_new_with_range (TIMEOUT_MIN, TIMEOUT_MAX, TIMEOUT_STEP);
+ gtk_label_set_mnemonic_widget (GTK_LABEL (label), spinner);
gtk_spin_button_set_value (GTK_SPIN_BUTTON (spinner), (gdouble)cpuFreq->options->timeout);
gtk_box_pack_start (GTK_BOX (hbox), spinner, FALSE, FALSE, 0);
g_signal_connect (G_OBJECT (spinner), "value-changed", G_CALLBACK (spinner_changed), configure);
@@ -261,12 +262,13 @@ cpufreq_configure (XfcePanelPlugin *plugin)
hbox = gtk_hbox_new (FALSE, BORDER);
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
- label = gtk_label_new (_("Display CPU:"));
+ label = gtk_label_new_with_mnemonic (_("_Display CPU:"));
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
combo = configure->combo_cpu = gtk_combo_box_new_text ();
gtk_box_pack_start (GTK_BOX (hbox), combo, FALSE, TRUE, 0);
+ gtk_label_set_mnemonic_widget (GTK_LABEL (label), combo);
for (i = 0; i < cpuFreq->cpus->len; ++i)
{
@@ -284,17 +286,17 @@ cpufreq_configure (XfcePanelPlugin *plugin)
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), cpuFreq->options->keep_compact);
g_signal_connect (G_OBJECT (button), "toggled", G_CALLBACK (check_button_changed), configure);
- button = configure->display_icon = gtk_check_button_new_with_mnemonic (_("Show CPU icon"));
+ button = configure->display_icon = gtk_check_button_new_with_mnemonic (_("Show CPU _icon"));
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), cpuFreq->options->show_icon);
g_signal_connect (G_OBJECT (button), "toggled", G_CALLBACK (check_button_changed), configure);
- button = configure->display_freq = gtk_check_button_new_with_mnemonic (_("Show CPU frequency"));
+ button = configure->display_freq = gtk_check_button_new_with_mnemonic (_("Show CPU fre_quency"));
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), cpuFreq->options->show_label_freq);
g_signal_connect (G_OBJECT (button), "toggled", G_CALLBACK (check_button_changed), configure);
- button = configure->display_governor = gtk_check_button_new_with_mnemonic (_("Show CPU governor"));
+ button = configure->display_governor = gtk_check_button_new_with_mnemonic (_("Show CPU _governor"));
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), cpuFreq->options->show_label_governor);
g_signal_connect (G_OBJECT (button), "toggled", G_CALLBACK (check_button_changed), configure);
More information about the Xfce4-commits
mailing list