Ejemplo n.º 1
0
 public override void GetCharacters(GlyphProvider glyphProvider, TextModifierScope textModifierScope, IList <IGlyph> buffer)
 {
 }
Ejemplo n.º 2
0
        public virtual void GetRubyCharacters(GlyphProvider glyphProvider, TextModifierScope textModifierScope, IList <IGlyph> buffer)
        {
            var rubyTextModifierScope = textModifierScope as IRubyTextModifierScope;

            glyphProvider.GetGlyphsFromString((rubyTextModifierScope != null) ? rubyTextModifierScope.RubyScope : textModifierScope, this.RawRubyCharacters, buffer);
        }
Ejemplo n.º 3
0
 public override void GetCharacters(GlyphProvider glyphProvider, TextModifierScope textModifierScope, IList <IGlyph> buffer)
 {
     glyphProvider.GetGlyphsFromString(textModifierScope, this.RawCharacters, buffer);
 }
Ejemplo n.º 4
0
 protected virtual void Initialize()
 {
     this.LineBreakRule = new LineBreakRule();
     this.GlyphProvider = this.CreateGlyphProvider();
 }
Ejemplo n.º 5
0
 public abstract void GetCharacters(GlyphProvider glyphProvider, TextModifierScope textModifierScope, IList <IGlyph> buffer);