summaryrefslogtreecommitdiff
path: root/cpufreq
diff options
context:
space:
mode:
authorlukefromdc <[email protected]>2017-10-26 01:34:34 -0400
committerraveit65 <[email protected]>2017-11-09 10:08:15 +0100
commit99f9632cc6f08be9770e8f7dc3aae381ddc09e2d (patch)
tree6681b79dd79357ef9a362c14e98f05c56b08c423 /cpufreq
parent1c206f32b053158efcf57699087c3f1a95647613 (diff)
downloadmate-applets-99f9632cc6f08be9770e8f7dc3aae381ddc09e2d.tar.bz2
mate-applets-99f9632cc6f08be9770e8f7dc3aae381ddc09e2d.tar.xz
Cpufreq: stop jumping numbers moving units label
*Force the frequency label to hold the largest size it ever takes *Reset label size with any change of theme or font to avoid truncation *Clean up a nasty mix of spaced and tabs in cpufreq_applet_refresh
Diffstat (limited to 'cpufreq')
-rw-r--r--cpufreq/src/cpufreq-applet.c67
1 files changed, 38 insertions, 29 deletions
diff --git a/cpufreq/src/cpufreq-applet.c b/cpufreq/src/cpufreq-applet.c
index c50b6eb9..9ba363fa 100644
--- a/cpufreq/src/cpufreq-applet.c
+++ b/cpufreq/src/cpufreq-applet.c
@@ -782,6 +782,7 @@ cpufreq_applet_update (CPUFreqApplet *applet, CPUFreqMonitor *monitor)
gint freq;
gint perc;
guint cpu;
+ GtkRequisition req;
const gchar *governor;
cpu = cpufreq_monitor_get_cpu (monitor);
@@ -794,6 +795,9 @@ cpufreq_applet_update (CPUFreqApplet *applet, CPUFreqMonitor *monitor)
if (applet->show_freq) {
gtk_label_set_text (GTK_LABEL (applet->label), freq_label);
+ /*Hold the largest size set by any jumping text */
+ gtk_widget_get_preferred_size (GTK_WIDGET (applet->label),&req, NULL);
+ gtk_widget_set_size_request (GTK_WIDGET (applet->label),req.width, NULL);
}
if (applet->show_perc) {
@@ -876,29 +880,34 @@ cpufreq_applet_get_widget_size (CPUFreqApplet *applet,
static void
cpufreq_applet_refresh (CPUFreqApplet *applet)
{
- gint total_size = 0;
- gint panel_size, label_size;
- gint unit_label_size, pixmap_size;
- gint size_step = 12;
- gboolean horizontal;
- gboolean do_unref = FALSE;
-
- panel_size = applet->size - 1; /* 1 pixel margin */
-
- horizontal = (applet->orient == MATE_PANEL_APPLET_ORIENT_UP ||
- applet->orient == MATE_PANEL_APPLET_ORIENT_DOWN);
-
- /* We want a fixed label size, the biggest */
- if (horizontal)
- label_size = cpufreq_applet_get_widget_size (applet, applet->label);
- else
- label_size = cpufreq_applet_get_max_label_width (applet);
+ gint total_size = 0;
+ gint panel_size, label_size;
+ gint unit_label_size, pixmap_size;
+ gint size_step = 12;
+ gboolean horizontal;
+ gboolean do_unref = FALSE;
+ GtkRequisition req;
+
+ panel_size = applet->size - 1; /* 1 pixel margin */
+
+ horizontal = (applet->orient == MATE_PANEL_APPLET_ORIENT_UP ||
+ applet->orient == MATE_PANEL_APPLET_ORIENT_DOWN);
+
+ /* Zero out and reset the size of the label in case the theme is getting smaller */
+ gtk_widget_set_size_request (GTK_WIDGET (applet->label), 0, 0);
+ gtk_widget_get_preferred_size (GTK_WIDGET (applet->label),&req, NULL);
+ gtk_widget_set_size_request (GTK_WIDGET (applet->label),req.width, req.height);
+ /* We want a fixed label size, the biggest */
+ if (horizontal)
+ label_size = cpufreq_applet_get_widget_size (applet, applet->label);
+ else
+ label_size = cpufreq_applet_get_max_label_width (applet);
total_size += label_size;
- if (horizontal)
- unit_label_size = cpufreq_applet_get_widget_size (applet, applet->unit_label);
- else
- unit_label_size = cpufreq_applet_get_max_unit_width (applet);
+ if (horizontal)
+ unit_label_size = cpufreq_applet_get_widget_size (applet, applet->unit_label);
+ else
+ unit_label_size = cpufreq_applet_get_max_unit_width (applet);
total_size += unit_label_size;
pixmap_size = cpufreq_applet_get_widget_size (applet, applet->icon);
@@ -908,7 +917,7 @@ cpufreq_applet_refresh (CPUFreqApplet *applet)
do_unref = TRUE;
g_object_ref (applet->icon);
gtk_container_remove (GTK_CONTAINER (applet->box), applet->icon);
- if (applet->labels_box) {
+ if (applet->labels_box) {
g_object_ref (applet->label);
gtk_container_remove (GTK_CONTAINER (applet->labels_box), applet->label);
g_object_ref (applet->unit_label);
@@ -917,13 +926,13 @@ cpufreq_applet_refresh (CPUFreqApplet *applet)
gtk_widget_destroy (applet->box);
}
- if (horizontal) {
- applet->labels_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
- if ((label_size + pixmap_size) <= panel_size)
- applet->box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
- else
- applet->box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
- } else {
+ if (horizontal) {
+ applet->labels_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
+ if ((label_size + pixmap_size) <= panel_size)
+ applet->box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
+ else
+ applet->box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
+ } else {
if (total_size <= panel_size) {
applet->box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
applet->labels_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);