Skip to content
Snippets Groups Projects
Commit 51831e81 authored by Guido Gunther's avatar Guido Gunther :zzz:
Browse files

Move topleft label text out of ui file

so we can set it form settings later on
parent 88ac9510
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,8 @@
#define GNOME_DESKTOP_USE_UNSTABLE_API
#include <libgnome-desktop/gnome-wall-clock.h>
#define TOPLEFT_LABEL_TEXT "Librem5 dev board"
enum {
FAVORITE_LAUNCHED,
N_SIGNALS
......@@ -23,7 +25,7 @@ enum {
static guint signals[N_SIGNALS] = { 0 };
struct PhoshPanelPrivate {
GtkWidget *label_librem5;
GtkWidget *label_topleft;
GtkWidget *label_clock;
GtkWidget *btn_terminal;
......@@ -75,6 +77,7 @@ phosh_panel_constructed (GObject *object)
G_OBJECT_CLASS (phosh_panel_parent_class)->constructed (object);
gtk_label_set_text (GTK_LABEL (priv->label_topleft), TOPLEFT_LABEL_TEXT);
priv->wall_clock = g_object_new (GNOME_TYPE_WALL_CLOCK, NULL);
g_signal_connect (priv->wall_clock,
"notify::clock",
......@@ -128,7 +131,7 @@ phosh_panel_class_init (PhoshPanelClass *klass)
gtk_widget_class_set_template_from_resource (widget_class,
"/org/librem5/phosh/ui/top-panel.ui");
gtk_widget_class_bind_template_child_private (widget_class, PhoshPanel, label_librem5);
gtk_widget_class_bind_template_child_private (widget_class, PhoshPanel, label_topleft);
gtk_widget_class_bind_template_child_private (widget_class, PhoshPanel, label_clock);
gtk_widget_class_bind_template_child_private (widget_class, PhoshPanel, btn_terminal);
}
......
......@@ -10,10 +10,10 @@
<property name="can_focus">False</property>
<property name="homogeneous">True</property>
<child>
<object class="GtkLabel" id="label_librem5">
<object class="GtkLabel" id="label_topleft">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">Librem5</property>
<property name="label" translatable="yes"></property>
<property name="xalign">0.1</property>
</object>
<packing>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment