~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/xwt/Xwt.Gtk/Xwt.GtkBackend/ContextBackendHandler.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// 
 
2
// ContextBackendHandler.cs
 
3
//  
 
4
// Author:
 
5
//       Lluis Sanchez <lluis@xamarin.com>
 
6
//       Lytico (http://limada.sourceforge.net)
 
7
// 
 
8
// Copyright (c) 2012 Xamarin Inc
 
9
// 
 
10
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
11
// of this software and associated documentation files (the "Software"), to deal
 
12
// in the Software without restriction, including without limitation the rights
 
13
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
14
// copies of the Software, and to permit persons to whom the Software is
 
15
// furnished to do so, subject to the following conditions:
 
16
// 
 
17
// The above copyright notice and this permission notice shall be included in
 
18
// all copies or substantial portions of the Software.
 
19
// 
 
20
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
21
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
22
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
23
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
24
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
25
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
26
// THE SOFTWARE.
 
27
using System;
 
28
using Xwt.CairoBackend;
 
29
using Xwt.Drawing;
 
30
using Xwt.Engine;
 
31
using Xwt.Backends;
 
32
 
 
33
namespace Xwt.GtkBackend
 
34
{
 
35
        public class ContextBackendHandler: CairoContextBackendHandler
 
36
        {
 
37
                protected override void SetSourceImage (Cairo.Context ctx, object img, double x, double y)
 
38
                {
 
39
                        Gdk.Pixbuf pb = (Gdk.Pixbuf)img;
 
40
                        Gdk.CairoHelper.SetSourcePixbuf (ctx, pb, x, y);
 
41
                }
 
42
                
 
43
                protected override Size GetImageSize (object img)
 
44
                {
 
45
                        Gdk.Pixbuf pb = (Gdk.Pixbuf)img;
 
46
                        return new Size (pb.Width, pb.Height);
 
47
                }
 
48
        }
 
49
        
 
50
        public class ContextBackendHandlerWithPango: ContextBackendHandler
 
51
        {
 
52
                public override void DrawTextLayout (object backend, TextLayout layout, double x, double y)
 
53
                {
 
54
                        Pango.Layout pl = (Pango.Layout)WidgetRegistry.GetBackend (layout);
 
55
                        CairoContextBackend ctx = (CairoContextBackend)backend;
 
56
                        ctx.Context.MoveTo (x, y);
 
57
                        if (layout.Height <= 0) {
 
58
                                Pango.CairoHelper.ShowLayout (ctx.Context, pl);
 
59
                        } else {
 
60
                                var lc = pl.LineCount;
 
61
                                var scale = Pango.Scale.PangoScale;
 
62
                                double h = 0;
 
63
                                for (int i=0; i<lc; i++) {
 
64
                                        var line = pl.Lines [i];
 
65
                                        var ext = new Pango.Rectangle ();
 
66
                                        var extl = new Pango.Rectangle ();
 
67
                                        line.GetExtents (ref ext, ref extl);
 
68
                                        h += (extl.Height / scale);
 
69
                                        if (h > layout.Height)
 
70
                                                break;
 
71
                                        ctx.Context.MoveTo (x, y + h);
 
72
                                        Pango.CairoHelper.ShowLayoutLine (ctx.Context, line);
 
73
                                }
 
74
                        }
 
75
                }
 
76
        }
 
77
}
 
78