Ejemplo n.º 1
0
		public SchemeNode(XmlElement el, bool readChildren)
		{
			content = el.OuterXml;
			
			name = el.Attributes["name"].InnerText;
			
			if (el.Attributes["extensions"] != null) {
				extensions = el.Attributes["extensions"].InnerText.Split('|');
			}
			
			extends = el.GetAttribute("extends");
			
			UpdateNodeText();

			panel = new SchemeOptionPanel(this);

			if (!readChildren) return;
			
			envNode = new EnvironmentNode(el["Environment"]);
			digitsNode = new DigitsNode(el["Digits"]);
			propNode = new PropertiesNode(el["Properties"]);
			rulesetsNode = new RuleSetsNode(el);
			
			Nodes.Add(envNode);
			Nodes.Add(digitsNode);
			Nodes.Add(propNode);
			Nodes.Add(rulesetsNode);
		}
Ejemplo n.º 2
0
        public SchemeNode(XmlElement el, bool readChildren)
        {
            content = el.OuterXml;

            name = el.Attributes["name"].InnerText;

            if (el.Attributes["extensions"] != null)
            {
                extensions = el.Attributes["extensions"].InnerText.Split('|');
            }

            extends = el.GetAttribute("extends");

            UpdateNodeText();

            panel = new SchemeOptionPanel(this);

            if (!readChildren)
            {
                return;
            }

            envNode      = new EnvironmentNode(el["Environment"]);
            digitsNode   = new DigitsNode(el["Digits"]);
            propNode     = new PropertiesNode(el["Properties"]);
            rulesetsNode = new RuleSetsNode(el);

            Nodes.Add(envNode);
            Nodes.Add(digitsNode);
            Nodes.Add(propNode);
            Nodes.Add(rulesetsNode);
        }
Ejemplo n.º 3
0
        public override void LoadSettings()
        {
            DigitsNode node = (DigitsNode)parent;

            sampleLabel.Font = SharpDevelopTextEditorProperties.Instance.FontContainer.DefaultFont;
            color            = node.Color;
            PreviewUpdate(sampleLabel, color);
        }
Ejemplo n.º 4
0
        public DigitsOptionPanel(DigitsNode parent) : base(parent)
        {
            SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("Resources.Digits.xfrm"));

            button        = (Button)ControlDictionary["button"];
            button.Click += new EventHandler(EditButtonClicked);
            sampleLabel   = (Label)ControlDictionary["sampleLabel"];
        }
Ejemplo n.º 5
0
		public DigitsOptionPanel(DigitsNode parent) : base(parent)
		{
			SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("Resources.Digits.xfrm"));
			
			button = (Button)ControlDictionary["button"];
			button.Click += new EventHandler(EditButtonClicked);
			sampleLabel  = (Label)ControlDictionary["sampleLabel"];
		}
Ejemplo n.º 6
0
        public override void StoreSettings()
        {
            DigitsNode node = (DigitsNode)parent;

            node.Color = color;
        }