diff options
Diffstat (limited to 'lib/astal/gtk3/src/widget/label.vala')
-rw-r--r-- | lib/astal/gtk3/src/widget/label.vala | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/astal/gtk3/src/widget/label.vala b/lib/astal/gtk3/src/widget/label.vala new file mode 100644 index 0000000..899cba9 --- /dev/null +++ b/lib/astal/gtk3/src/widget/label.vala @@ -0,0 +1,24 @@ +using Pango; + +public class Astal.Label : Gtk.Label { + /** + * Shortcut for setting [[email protected]:ellipsize] to [[email protected]] + */ + public bool truncate { + set { ellipsize = value ? EllipsizeMode.END : EllipsizeMode.NONE; } + get { return ellipsize == EllipsizeMode.END; } + } + + /** + * Shortcut for setting [[email protected]:justify] to [[email protected]] + */ + public new bool justify_fill { + set { justify = value ? Gtk.Justification.FILL : Gtk.Justification.LEFT; } + get { return justify == Gtk.Justification.FILL; } + } + + construct { + notify["ellipsize"].connect(() => notify_property("truncate")); + notify["justify"].connect(() => notify_property("justify_fill")); + } +} |