diff options
author | Aylur <[email protected]> | 2024-10-14 16:45:03 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-14 16:45:03 +0000 |
commit | 9fab13452a26ed55c01047d4225f699f43bba20d (patch) | |
tree | 8dc3097994e8664572c3a94a62257604bdaa1f8d /lib/astal/gtk3/src/widget/label.vala | |
parent | 6a8c41cd1d5e218d0dacffb836fdd7d4ec6333dd (diff) |
feat: Astal3
Diffstat (limited to 'lib/astal/gtk3/src/widget/label.vala')
-rw-r--r-- | lib/astal/gtk3/src/widget/label.vala | 18 |
1 files changed, 18 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..4063b6f --- /dev/null +++ b/lib/astal/gtk3/src/widget/label.vala @@ -0,0 +1,18 @@ +using Pango; + +public class Astal.Label : Gtk.Label { + public bool truncate { + set { ellipsize = value ? EllipsizeMode.END : EllipsizeMode.NONE; } + get { return ellipsize == EllipsizeMode.END; } + } + + 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")); + } +} |