123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using CommonLang;
- using CommonLang.Log;
- using CommonUI.Display;
- using CommonUI.Display.Text;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Xml;
- namespace CommonUI
- {
- public abstract class UIFactory
- {
- static UIFactory()
- {
- new DefaultUIFactory();
- new TextDrawableFactory();
- }
- public static UIFactory Instance { get; private set; }
- protected AttributedStringDecoder mTextDecoder = new AttributedStringDecoder();
- public UIFactory()
- {
- Instance = this;
- }
- virtual public RichTextLayer CreateRichTextLayer(float width = 100, RichTextAlignment anchor = RichTextAlignment.taLEFT)
- {
- return new RichTextLayer(width, anchor);
- }
- virtual public AttributedString DecodeAttributedString(XmlDocument doc, TextAttribute defaultTA = null)
- {
- return mTextDecoder.CreateFromXML(doc, defaultTA);
- }
- private class DefaultUIFactory : UIFactory
- {
- }
- }
- }
|