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

« back to all changes in this revision

Viewing changes to external/xwt/Xwt.WPF/Xwt.WPFBackend/TextLayoutBackendHandler.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
// TextLayoutBackendHandler.cs
 
3
//
 
4
// Author:
 
5
//       Eric Maupin <ermau@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
 
 
28
using System;
 
29
using System.Drawing;
 
30
using Xwt.Backends;
 
31
using Xwt.Drawing;
 
32
using Xwt.Engine;
 
33
using Font = Xwt.Drawing.Font;
 
34
 
 
35
namespace Xwt.WPFBackend
 
36
{
 
37
        public class TextLayoutBackendHandler
 
38
                : ITextLayoutBackendHandler
 
39
        {
 
40
                public object Create (Context context)
 
41
                {
 
42
                        var drawingContext = (DrawingContext)WidgetRegistry.GetBackend (context);
 
43
                        return new TextLayoutContext (drawingContext);
 
44
                }
 
45
 
 
46
                public object Create (ICanvasBackend canvas)
 
47
                {
 
48
                        var drawingContext = new DrawingContext (Graphics.FromImage (new Bitmap (1, 1)));
 
49
                        return new TextLayoutContext (drawingContext);
 
50
                }
 
51
 
 
52
                public void SetWidth (object backend, double value)
 
53
                {
 
54
                        ((TextLayoutContext) backend).Width = value;
 
55
                }
 
56
                
 
57
                public void SetHeight (object backend, double value)
 
58
                {
 
59
                        ((TextLayoutContext) backend).Height = value;
 
60
                }
 
61
                
 
62
                public void SetText (object backend, string text)
 
63
                {
 
64
                        ((TextLayoutContext) backend).Text = text;
 
65
                }
 
66
 
 
67
                public void SetFont (object backend, Font font)
 
68
                {
 
69
                        ((TextLayoutContext) backend).Font = font.ToDrawingFont();
 
70
                }
 
71
                
 
72
                public void SetTrimming (object backend, TextTrimming textTrimming)
 
73
                {
 
74
                        ((TextLayoutContext) backend).StringTrimming = textTrimming.ToDrawingStringTrimming();
 
75
                        
 
76
                }
 
77
                
 
78
                public Size GetSize (object backend)
 
79
                {
 
80
                        return ((TextLayoutContext) backend).GetSize ();
 
81
                }
 
82
        }
 
83
}