Пример #1
0
        /// <summary> Add a new panel to this collection. </summary>
        /// <param name="Panel"> Template_Panel object for this new panel </param>
        /// <returns> The index for this new panel </returns>
        public int Add(Template_Panel Panel)
        {
            // Add the panel to the list and keep the index
            int returnVal = List.Add(Panel);

            // Return the index
            return(returnVal);
        }
Пример #2
0
        /// <summary> Remove an existing panel from this collection. </summary>
        /// <param name="Panel"> Panel to remove from this collection. </param>
        /// <exception cref="ApplicationException"> Throws a <see cref="ApplicationException"/> if the specified
        /// <see cref="Template_Panel"/> object to remove is not in this collection. </exception>
        public void Remove(Template_Panel Panel)
        {
            // Check to see if this panel exists in this collection
            if (!Contains(Panel))
            {
                throw new ApplicationException("The specified panel does not exist in this collection.");
            }

            // Remove the panel which does exist
            List.Remove(Panel);
        }
Пример #3
0
 /// <summary> Check to see if a panel currently exists in this collection.  </summary>
 /// <param name="Panel"> Panel to check for existence in this collection. </param>
 /// <returns>TRUE if the provided panel is already part of this Collection </returns>
 public bool Contains(Template_Panel Panel)
 {
     return(List.Contains(Panel));
 }
        private void process_inputs(XmlNodeReader nodeReader, Template thisTemplate)
        {
            // Keep track of the current pages and panels
            Template_Page  currentPage  = null;
            Template_Panel currentPanel = null;
            bool           inPanel      = false;

            // Read all the nodes
            while (nodeReader.Read())
            {
                // Get the node name, trimmed and to upper
                string nodeName = nodeReader.Name.Trim().ToUpper();

                // If this is the inputs or constant start tag, return
                if (((nodeReader.NodeType == XmlNodeType.EndElement) && (nodeName == "INPUTS")) ||
                    ((nodeReader.NodeType == XmlNodeType.Element) && (nodeReader.Name == "CONSTANTS")))
                {
                    return;
                }

                // If this is the beginning tag for an element, assign the next values accordingly
                if (nodeReader.NodeType == XmlNodeType.Element)
                {
                    // Does this start a new page?
                    if (nodeName == "PAGE")
                    {
                        // Set the inPanel flag to false
                        inPanel = false;

                        // Create the new page and add to this template
                        currentPage = new Template_Page();
                        thisTemplate.InputPages.Add(currentPage);
                    }

                    // Does this start a new panel?
                    if (nodeName == "PANEL")
                    {
                        // Set the inPanel flag to true
                        inPanel = true;

                        // Create the new panel and add to the current page
                        currentPanel = new Template_Panel();
                        if (currentPage != null)
                        {
                            currentPage.Panels.Add(currentPanel);
                        }
                    }

                    // Is this a name element?
                    if (nodeName == "NAME")
                    {
                        // Determine the language
                        Template_Language language;
                        if (nodeReader.HasAttributes)
                        {
                            nodeReader.MoveToFirstAttribute();
                            language = Template_Language_Convertor.ToEnum(nodeReader.Value);
                        }
                        else
                        {
                            language = DEFAULT_LANGUAGE;
                        }

                        // Get the text
                        string title = read_text_node(nodeReader);

                        // Set the name for either the page or panel
                        if (inPanel)
                        {
                            currentPanel.Set_Title(language, title);
                        }
                        else
                        {
                            if (currentPage != null)
                            {
                                currentPage.Set_Title(language, title);
                            }
                        }
                    }

                    // Is this a new element?
                    if ((nodeName == "ELEMENT") && (nodeReader.HasAttributes))
                    {
                        abstract_Element currentElement = process_element(nodeReader);
                        if ((currentElement != null) && (currentPanel != null))
                        {
                            currentPanel.Elements.Add(currentElement);
                        }
                    }
                }
            }
        }