From 8e2d33d3a5d17531a36e629bcf4c0bc36cbf1cfe Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sun, 2 Nov 2014 20:40:40 +0100 Subject: Imported Upstream version 14.04.10 --- src/fading-label.vala | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 src/fading-label.vala (limited to 'src/fading-label.vala') diff --git a/src/fading-label.vala b/src/fading-label.vala new file mode 100644 index 0000000..80977e6 --- /dev/null +++ b/src/fading-label.vala @@ -0,0 +1,85 @@ +/* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*- + * + * Copyright (C) 2012 Canonical Ltd + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * Authors: Michael Terry + */ + +public class FadingLabel : Gtk.Label +{ + private Cairo.Surface cached_surface; + + public FadingLabel (string text) + { + Object (label: text); + } + + public override void get_preferred_width (out int minimum, out int natural) + { + base.get_preferred_width (out minimum, out natural); + minimum = 0; + } + + public override void get_preferred_width_for_height (int height, out int minimum, out int natural) + { + base.get_preferred_width_for_height (height, out minimum, out natural); + minimum = 0; + } + + public override void size_allocate (Gtk.Allocation allocation) + { + base.size_allocate (allocation); + cached_surface = null; + } + + private Cairo.Surface make_surface (Cairo.Context orig_c) + { + int w, h; + get_layout ().get_pixel_size (out w, out h); + + var bw = get_allocated_width (); + var bh = get_allocated_height (); + + var surface = new Cairo.Surface.similar (orig_c.get_target (), Cairo.Content.COLOR_ALPHA, bw, bh); + var c = new Cairo.Context (surface); + + if (w > bw) + { + c.push_group (); + base.draw (c); + c.pop_group_to_source (); + + var mask = new Cairo.Pattern.linear (0, 0, bw, 0); + mask.add_color_stop_rgba (1.0 - 27.0 / bw, 1.0, 1.0, 1.0, 1.0); + mask.add_color_stop_rgba (1.0 - 21.6 / bw, 1.0, 1.0, 1.0, 0.5); + mask.add_color_stop_rgba (1.0, 1.0, 1.0, 1.0, 0.0); + + c.mask (mask); + } + else + base.draw (c); + + return surface; + } + + public override bool draw (Cairo.Context c) + { + if (cached_surface == null) + cached_surface = make_surface (c); + c.set_source_surface (cached_surface, 0, 0); + c.paint (); + return false; + } +} -- cgit v1.2.3