예제 #1
0
        private void GetArchiveMenus(TreeNode node, ArchiveFileInfo info)
        {
            STToolStipMenuItem menuItem = new STToolStipMenuItem("Archive");

            treeNodeContextMenu.Items.Add(menuItem);

            var items = info.FileWrapper.GetContextMenuItems();

            foreach (var item in items)
            {
                menuItem.DropDownItems.Add(item);
            }
        }
예제 #2
0
        private void treeViewCustom1_MouseClick(object sender, TreeNodeMouseClickEventArgs e)
        {
            if (e.Button == MouseButtons.Right)
            {
                treeNodeContextMenu.Items.Clear();

                List <ToolStripItem> archiveMenus = new List <ToolStripItem>();
                List <ToolStripItem> menuItems    = new List <ToolStripItem>();

                Console.WriteLine($"tag {e.Node.Tag }");
                if (e.Node.Tag != null && e.Node.Tag is ArchiveFileInfo)
                {
                    //The tag gets set when an archive is replaced by a treenode
                    //Todo store this in a better place as devs could possiblly replace this
                    //Create menus when an archive node is replaced
                    archiveMenus.AddRange(GetArchiveMenus(e.Node, (ArchiveFileInfo)e.Node.Tag));
                    Console.WriteLine($"archiveMenus {archiveMenus.Count}");
                }

                if (e.Node is IExportableModel)
                {
                    menuItems.Add(new ToolStripMenuItem("Export Model", null, ExportModelAction, Keys.Control | Keys.E));
                }

                bool IsRoot      = e.Node.Parent == null;
                bool HasChildren = e.Node.Nodes.Count > 0;

                IContextMenuNode node = null;
                if (e.Node is IContextMenuNode)
                {
                    node = (IContextMenuNode)e.Node;
                }
                else if (e.Node.Tag != null && e.Node.Tag is IContextMenuNode)
                {
                    node = (IContextMenuNode)e.Node.Tag;
                }

                if (node != null)
                {
                    if (IsRoot)
                    {
                        foreach (var item in node.GetContextMenuItems())
                        {
                            if (item.Text != "Delete" && item.Text != "Remove")
                            {
                                menuItems.Add(item);
                            }
                        }
                        menuItems.Add(new ToolStripMenuItem("Delete", null, DeleteAction, Keys.Control | Keys.Delete));
                    }
                    else
                    {
                        menuItems.AddRange(node.GetContextMenuItems());
                    }

                    bool HasCollpase = false;
                    bool HasExpand   = false;
                    foreach (var item in node.GetContextMenuItems())
                    {
                        if (item.Text == "Collapse All")
                        {
                            HasCollpase = true;
                        }
                        if (item.Text == "Expand All")
                        {
                            HasExpand = true;
                        }
                    }

                    if (!HasCollpase && HasChildren)
                    {
                        menuItems.Add(new ToolStripMenuItem("Collapse All", null, CollapseAllAction, Keys.Control | Keys.Q));
                    }

                    if (!HasExpand && HasChildren)
                    {
                        menuItems.Add(new ToolStripMenuItem("Expand All", null, ExpandAllAction, Keys.Control | Keys.P));
                    }
                }

                if (archiveMenus.Count > 0)
                {
                    if (menuItems.Count > 0)
                    {
                        STToolStipMenuItem archiveItem = new STToolStipMenuItem("Archive");
                        treeNodeContextMenu.Items.Add(archiveItem);

                        foreach (var item in archiveMenus)
                        {
                            archiveItem.DropDownItems.Add(item);
                        }
                    }
                    else
                    {
                        if (archiveMenus.Count > 0)
                        {
                            treeNodeContextMenu.Items.AddRange(archiveMenus.ToArray());
                        }
                    }
                }

                var fileFormat = TryGetActiveFile(e.Node);
                if (fileFormat != null)
                {
                    string path = fileFormat.FilePath;
                    if (File.Exists(path))
                    {
                        menuItems.Add(new ToolStripMenuItem("Open In Explorer", null, SelectFileInExplorer, Keys.Control | Keys.Q));
                    }
                }

                treeNodeContextMenu.Items.AddRange(menuItems.ToArray());

                //Select the node without the evemt
                //We don't want editors displaying on only right clicking
                SuppressAfterSelectEvent     = true;
                treeViewCustom1.SelectedNode = e.Node;
                SuppressAfterSelectEvent     = false;

                if (treeNodeContextMenu.Items.Count > 0)
                {
                    treeNodeContextMenu.Show(Cursor.Position);
                }
            }
            else
            {
                OnAnimationSelected(e.Node);
            }
        }
예제 #3
0
        private ToolStripItem[] GetMenuItems(TreeNode selectednode)
        {
            List <ToolStripItem> archiveMenus = new List <ToolStripItem>();
            List <ToolStripItem> menuItems    = new List <ToolStripItem>();

            Console.WriteLine($"tag {selectednode.Tag }");
            if (selectednode.Tag != null && selectednode.Tag is ArchiveFileInfo)
            {
                //The tag gets set when an archive is replaced by a treenode
                //Todo store this in a better place as devs could possiblly replace this
                //Create menus when an archive node is replaced
                archiveMenus.AddRange(GetArchiveMenus(selectednode, (ArchiveFileInfo)selectednode.Tag));
                Console.WriteLine($"archiveMenus {archiveMenus.Count}");
            }

            if (selectednode is IExportableModel)
            {
                menuItems.Add(new ToolStripMenuItem("Export Model", null, ExportModelAction, Keys.Control | Keys.E));
            }

            bool IsRoot      = selectednode.Parent == null;
            bool HasChildren = selectednode.Nodes.Count > 0;

            IContextMenuNode node = null;

            if (selectednode is IContextMenuNode)
            {
                node = (IContextMenuNode)selectednode;
            }
            else if (selectednode.Tag != null && selectednode.Tag is IContextMenuNode)
            {
                node = (IContextMenuNode)selectednode.Tag;
            }

            if (selectednode is IAnimationContainer)
            {
                var anim = ((IAnimationContainer)selectednode).AnimationController;
                if (anim is IContextMenuNode)
                {
                    node = (IContextMenuNode)anim;
                }
            }

            if (node != null)
            {
                if (IsRoot)
                {
                    foreach (var item in node.GetContextMenuItems())
                    {
                        if (item.Text != "Delete" && item.Text != "Remove")
                        {
                            menuItems.Add(item);
                        }
                    }
                    menuItems.Add(new ToolStripMenuItem("Delete", null, DeleteAction, Keys.Delete));
                }
                else
                {
                    menuItems.AddRange(node.GetContextMenuItems());
                }

                bool HasCollpase = false;
                bool HasExpand   = false;
                foreach (var item in node.GetContextMenuItems())
                {
                    if (item.Text == "Collapse All")
                    {
                        HasCollpase = true;
                    }
                    if (item.Text == "Expand All")
                    {
                        HasExpand = true;
                    }
                }

                if (!HasCollpase && HasChildren)
                {
                    menuItems.Add(new ToolStripMenuItem("Collapse All", null, CollapseAllAction, Keys.Control | Keys.Q));
                }

                if (!HasExpand && HasChildren)
                {
                    menuItems.Add(new ToolStripMenuItem("Expand All", null, ExpandAllAction, Keys.Control | Keys.P));
                }
            }

            if (archiveMenus.Count > 0)
            {
                if (menuItems.Count > 0)
                {
                    STToolStipMenuItem archiveItem = new STToolStipMenuItem("Archive");
                    treeNodeContextMenu.Items.Add(archiveItem);

                    foreach (var item in archiveMenus)
                    {
                        archiveItem.DropDownItems.Add(item);
                    }
                }
                else
                {
                    if (archiveMenus.Count > 0)
                    {
                        treeNodeContextMenu.Items.AddRange(archiveMenus.ToArray());
                    }
                }
            }

            var fileFormat = TryGetActiveFile(selectednode);

            if (fileFormat != null)
            {
                string path = fileFormat.FilePath;
                if (File.Exists(path))
                {
                    menuItems.Add(new ToolStripMenuItem("Open In Explorer", null, SelectFileInExplorer, Keys.Control | Keys.Q));
                }
            }

            Keys        currentKey = Keys.A;
            List <Keys> shortcuts  = new List <Keys>();

            foreach (ToolStripItem item in menuItems)
            {
                if (item is ToolStripMenuItem)
                {
                    var menu = item as ToolStripMenuItem;
                    CheckDuplicateShortcuts(menu, currentKey, shortcuts);
                }
            }

            return(menuItems.ToArray());
        }