コード例 #1
0
ファイル: AddMenu.cs プロジェクト: ibrahimahmed-aurea/IMI_WMS
        private void tsbtnAddChild_Click(object sender, EventArgs e)
        {
            if (CurrentMenuItem != null)
            {
                Cdc.MetaManager.DataAccess.Domain.MenuItem clearAction = null;

                // Check if an action is attached to the node. In that case ask user to remove it before continuing.
                if (CurrentMenuItem.Action != null)
                {
                    if (MessageBox.Show("A MenuItem with an attached Action cannot have childrens.\nThe Action on the selected MenuItem will be removed when you save the child.\n\nDo you want to continue?", "Question", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) == DialogResult.Yes)
                    {
                        clearAction = CurrentMenuItem;
                    }
                    else
                    {
                        return;
                    }
                }

                if (AddMenuItem(tvMenu.SelectedNode) && (clearAction != null))
                {
                    clearAction.Action = null;
                    menuService.SaveMenuItem(clearAction);
                }
            }
        }
コード例 #2
0
        private void AddMenuItem_Load(object sender, EventArgs e)
        {
            if (CurrentMenuItem == null)
            {
                DialogResult = DialogResult.Cancel;
            }

            if (IsRootMenuItem || CurrentMenuItem.Children.Count > 0)
            {
                btnBrowseAction.Enabled = false;
            }

            if (IsRootMenuItem)
            {
                tbName.Enabled            = false;
                tbAuthorizationId.Enabled = false;
            }

            if (CurrentMenuItem.Action != null)
            {
                // Read the menuitem with action
                CurrentMenuItem = menuService.GetMenuItemById(CurrentMenuItem.Id);
            }

            tbName.Text            = CurrentMenuItem.Name;
            tbCaption.Text         = CurrentMenuItem.Caption;
            tbAuthorizationId.Text = CurrentMenuItem.AuthorizationId;
            SetActionText();

            EnableDisableButtons();
        }
コード例 #3
0
ファイル: AddMenu.cs プロジェクト: ibrahimahmed-aurea/IMI_WMS
        private TreeNode CreateNewNode(TreeNode parentNode, Cdc.MetaManager.DataAccess.Domain.MenuItem currentItem)
        {
            TreeNode newNode = new TreeNode();

            newNode.Tag = currentItem;
            UpdateTreeNode(newNode);

            parentNode.Nodes.Add(newNode);
            UpdateTreeNode(parentNode);

            return(newNode);
        }
コード例 #4
0
ファイル: AddMenu.cs プロジェクト: ibrahimahmed-aurea/IMI_WMS
        private void PopulateTreeView()
        {
            // Check if the application has a topmenuitem
            Cdc.MetaManager.DataAccess.Domain.Menu menu = menuService.GetMenuByApplicationId(FrontendApplication.Id);

            // If a menu didn't exist then create it with one node.
            if (menu == null)
            {
                menu = new Cdc.MetaManager.DataAccess.Domain.Menu();

                menu.Application = FrontendApplication;

                Cdc.MetaManager.DataAccess.Domain.MenuItem topMenuItem = new Cdc.MetaManager.DataAccess.Domain.MenuItem();

                topMenuItem.Name    = string.Empty;
                topMenuItem.Caption = "Menu Caption (change me!)";
                topMenuItem.Menu    = null;
                topMenuItem.Parent  = null;

                topMenuItem = menuService.SaveMenuItem(topMenuItem);

                menu.TopMenuItem = topMenuItem;

                menuService.SaveMenu(menu);

                topMenuItem.Menu = menu;

                topMenuItem = menuService.SaveMenuItem(topMenuItem);
            }

            if (menu != null)
            {
                // Fetch the tree of menuitems
                Cdc.MetaManager.DataAccess.Domain.MenuItem topMenuItem = menuService.GetMenuItemById(menu.TopMenuItem.Id);

                // Check if we found any items
                if (topMenuItem != null)
                {
                    TreeNode dialogTreeNode = new TreeNode();

                    BuildViewTree(topMenuItem, dialogTreeNode);

                    tvMenu.Nodes.Add(dialogTreeNode);

                    // Expand the whole menu
                    tvMenu.ExpandAll();
                }
            }
        }
コード例 #5
0
ファイル: AddMenu.cs プロジェクト: ibrahimahmed-aurea/IMI_WMS
        private void Movem(TreeNode staticNode, TreeNode moveNode)
        {
            Cdc.MetaManager.DataAccess.Domain.MenuItem moverMenuItem  = moveNode.Tag as Cdc.MetaManager.DataAccess.Domain.MenuItem;
            Cdc.MetaManager.DataAccess.Domain.MenuItem staticMenuItem = staticNode.Tag as Cdc.MetaManager.DataAccess.Domain.MenuItem;

            menuService.MoveUp(moverMenuItem.Id, staticMenuItem.Id, out moverMenuItem, out staticMenuItem);

            //// Set the changed objects back as tags on the treenodes
            (moveNode.Tag as Cdc.MetaManager.DataAccess.Domain.MenuItem).Sequence   = moverMenuItem.Sequence;
            (staticNode.Tag as Cdc.MetaManager.DataAccess.Domain.MenuItem).Sequence = staticMenuItem.Sequence;

            TreeNode parentTreeNode = staticNode.Parent;

            try
            {
                parentTreeNode.TreeView.BeginUpdate();

                // Since moverViewNode has larger sequence it should be below ths staticViewNode
                // Fetch their current indexes to know where to insert them back.
                int lowestIndex = parentTreeNode.Nodes.IndexOf(moveNode);

                if (lowestIndex > parentTreeNode.Nodes.IndexOf(staticNode))
                {
                    lowestIndex = parentTreeNode.Nodes.IndexOf(staticNode);
                }

                // Remove the nodes
                parentTreeNode.Nodes.Remove(moveNode);
                parentTreeNode.Nodes.Remove(staticNode);

                // Insert them back
                if (moverMenuItem.Sequence > staticMenuItem.Sequence)
                {
                    parentTreeNode.Nodes.Insert(lowestIndex, moveNode);
                    parentTreeNode.Nodes.Insert(lowestIndex, staticNode);
                }
                else
                {
                    parentTreeNode.Nodes.Insert(lowestIndex, staticNode);
                    parentTreeNode.Nodes.Insert(lowestIndex, moveNode);
                }
            }
            finally
            {
                parentTreeNode.TreeView.EndUpdate();
            }
        }
コード例 #6
0
ファイル: AddMenu.cs プロジェクト: ibrahimahmed-aurea/IMI_WMS
        private static void BuildViewTree(Cdc.MetaManager.DataAccess.Domain.MenuItem menuItem, TreeNode parentTreeNode)
        {
            parentTreeNode.Tag = menuItem;
            UpdateTreeNode(parentTreeNode);

            if (menuItem.Children.Count > 0)
            {
                foreach (Cdc.MetaManager.DataAccess.Domain.MenuItem vChild in menuItem.Children.OrderBy(item => item.Sequence))
                {
                    TreeNode child = new TreeNode();

                    BuildViewTree(vChild, child);

                    parentTreeNode.Nodes.Add(child);
                }
            }
        }
コード例 #7
0
ファイル: AddMenu.cs プロジェクト: ibrahimahmed-aurea/IMI_WMS
        private bool AddMenuItem(TreeNode parentNode)
        {
            // Get parents MenuItem
            Cdc.MetaManager.DataAccess.Domain.MenuItem parentMenuItem = (Cdc.MetaManager.DataAccess.Domain.MenuItem)parentNode.Tag;

            // Create the new menuitem
            Cdc.MetaManager.DataAccess.Domain.MenuItem newItem = new Cdc.MetaManager.DataAccess.Domain.MenuItem();

            // Edit the MenuItem
            using (AddMenuItem editMenuItem = new AddMenuItem())
            {
                editMenuItem.FrontendApplication = FrontendApplication;
                editMenuItem.BackendApplication  = BackendApplication;
                editMenuItem.CurrentMenuItem     = newItem;

                if (editMenuItem.ShowDialog() == DialogResult.OK)
                {
                    // Add the item to the parentitem
                    newItem.Menu   = parentMenuItem.Menu;
                    newItem.Parent = parentMenuItem;

                    // Set sequence
                    newItem.Sequence = SetSequence(parentNode);

                    // Save the menuitem created
                    newItem = menuService.SaveMenuItem(newItem);

                    // Add the child to the parent menuitem
                    parentMenuItem.Children.Add(newItem);

                    // Add a node to the treeview
                    TreeNode createdNode = CreateNewNode(parentNode, newItem);

                    // Set the new node to be the selected one.
                    tvMenu.SelectedNode = createdNode;

                    return(true);
                }
            }

            return(false);
        }
コード例 #8
0
ファイル: AddMenu.cs プロジェクト: ibrahimahmed-aurea/IMI_WMS
        private static void UpdateTreeNode(TreeNode updateNode)
        {
            if (updateNode != null)
            {
                Cdc.MetaManager.DataAccess.Domain.MenuItem currentItem = (Cdc.MetaManager.DataAccess.Domain.MenuItem)updateNode.Tag;

                if (currentItem != null)
                {
                    updateNode.Text = string.Format("{0}{1}"
                                                    , currentItem.Caption
                                                    , string.IsNullOrEmpty(currentItem.Name) ?
                                                    string.Empty :
                                                    string.Format(" [{0}]", currentItem.Name)
                                                    );

                    updateNode.ForeColor = currentItem.Action == null ?
                                           (currentItem.Children.Count > 0 ?
                                            Color.Green :
                                            Color.Black
                                           )
                                                : Color.Blue;
                }
            }
        }
コード例 #9
0
ファイル: AddMenu.cs プロジェクト: ibrahimahmed-aurea/IMI_WMS
        private void tvMenu_DragDrop(object sender, DragEventArgs e)
        {
            if (sender is TreeView)
            {
                // Get treenode where item was dropped
                TreeNode hittedItem = tvMenu.GetNodeAt((sender as TreeView).PointToClient(new Point(e.X, e.Y)));

                if (hittedItem != null)
                {
                    // Get the TreeNode that was sent.
                    if (e.Data.GetDataPresent(typeof(TreeNode)))
                    {
                        // Fetch the TreeNode from the sent data
                        TreeNode sentTreeNode = (TreeNode)e.Data.GetData(typeof(TreeNode));

                        // Check that the treenodes are different and that they don't have same parents
                        // and that the hitted treenode isn't the parent to the sent child.
                        if (sentTreeNode != hittedItem &&
                            hittedItem != sentTreeNode.Parent)
                        {
                            Cdc.MetaManager.DataAccess.Domain.MenuItem newParent = (Cdc.MetaManager.DataAccess.Domain.MenuItem)hittedItem.Tag;
                            Cdc.MetaManager.DataAccess.Domain.MenuItem child     = (Cdc.MetaManager.DataAccess.Domain.MenuItem)sentTreeNode.Tag;

                            if (newParent != null && child != null)
                            {
                                Cdc.MetaManager.DataAccess.Domain.MenuItem clearAction = null;

                                // Check if an action is attached to the new parent node. In that case ask user to remove it before continuing.
                                if (newParent.Action != null)
                                {
                                    if (MessageBox.Show("A MenuItem with an attached Action cannot have childrens.\nThe Action on the MenuItem where you released the mousebutton will be removed.\n\nDo you want to continue?", "Question", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) == DialogResult.Yes)
                                    {
                                        clearAction = newParent;
                                    }
                                    else
                                    {
                                        return;
                                    }
                                }

                                // Remove the child from it's parent
                                if (child.Parent != null)
                                {
                                    child.Parent.Children.Remove(child);
                                }

                                // Change parent on the child
                                child.Parent = newParent;

                                // Add the child to the parents children
                                child.Parent.Children.Add(child);

                                // Set the sequence
                                child.Sequence = 0;
                                child.Sequence = child.Parent.Children.Max(item => item.Sequence) + 1;

                                // Save the child
                                menuService.SaveMenuItem(child);

                                // If the action should be cleared on the parent then do it
                                if (clearAction != null)
                                {
                                    clearAction.Action = null;
                                    menuService.SaveMenuItem(clearAction);
                                }

                                // Update the hitteditem
                                UpdateTreeNode(hittedItem);

                                TreeNode sentTreeNodeParent = sentTreeNode.Parent;

                                // Move the treenode to the new parent node
                                sentTreeNode.Parent.Nodes.Remove(sentTreeNode);
                                hittedItem.Nodes.Add(sentTreeNode);

                                tvMenu.SelectedNode = sentTreeNode;

                                UpdateTreeNode(sentTreeNodeParent);
                                UpdateTreeNode(sentTreeNode);
                            }
                        }
                    }
                }
            }
        }