~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/Misc/PackageManagement/Packages/AvalonEdit.Sample/Content/AvalonEdit.Sample/ColorizeAvalonEdit.cs.pp

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) 2009 Daniel Grunwald
 
2
// 
 
3
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
 
4
// software and associated documentation files (the "Software"), to deal in the Software
 
5
// without restriction, including without limitation the rights to use, copy, modify, merge,
 
6
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
 
7
// to whom the Software is furnished to do so, subject to the following conditions:
 
8
// 
 
9
// The above copyright notice and this permission notice shall be included in all copies or
 
10
// substantial portions of the Software.
 
11
// 
 
12
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 
13
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 
14
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
 
15
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 
16
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
17
// DEALINGS IN THE SOFTWARE.
 
18
 
 
19
using System;
 
20
using System.Windows;
 
21
using System.Windows.Media;
 
22
 
 
23
using ICSharpCode.AvalonEdit.Document;
 
24
using ICSharpCode.AvalonEdit.Rendering;
 
25
 
 
26
namespace $rootnamespace$.AvalonEdit.Sample
 
27
{
 
28
        /// <summary>
 
29
        /// Finds the word 'AvalonEdit' and makes it bold and italic.
 
30
        /// </summary>
 
31
        public class ColorizeAvalonEdit : DocumentColorizingTransformer
 
32
        {
 
33
                protected override void ColorizeLine(DocumentLine line)
 
34
                {
 
35
                        int lineStartOffset = line.Offset;
 
36
                        string text = CurrentContext.Document.GetText(line);
 
37
                        int start = 0;
 
38
                        int index;
 
39
                        while ((index = text.IndexOf("AvalonEdit", start)) >= 0) {
 
40
                                base.ChangeLinePart(
 
41
                                        lineStartOffset + index, // startOffset
 
42
                                        lineStartOffset + index + 10, // endOffset
 
43
                                        (VisualLineElement element) => {
 
44
                                                // This lambda gets called once for every VisualLineElement
 
45
                                                // between the specified offsets.
 
46
                                                Typeface tf = element.TextRunProperties.Typeface;
 
47
                                                // Replace the typeface with a modified version of
 
48
                                                // the same typeface
 
49
                                                element.TextRunProperties.SetTypeface(new Typeface(
 
50
                                                        tf.FontFamily,
 
51
                                                        FontStyles.Italic,
 
52
                                                        FontWeights.Bold,
 
53
                                                        tf.Stretch
 
54
                                                ));
 
55
                                        });
 
56
                                start = index + 1; // search for next occurrence
 
57
                        }
 
58
                }
 
59
        }
 
60
}