mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-22 08:10:47 +01:00
adab54a9c5
- Add item "Remove From Pool" to the main Server menu; it should be enabled if the selected servers are removable and disabled at all other times. The item should be present in the server's right click menu only if it is enabled. - Replaced the above item in the Pool menu with the dropdown "Remove Server" where the user can select the server to remove from the list of removable servers. Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
207 lines
7.0 KiB
C#
207 lines
7.0 KiB
C#
/* Copyright (c) Citrix Systems, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms,
|
|
* with or without modification, are permitted provided
|
|
* that the following conditions are met:
|
|
*
|
|
* * Redistributions of source code must retain the above
|
|
* copyright notice, this list of conditions and the
|
|
* following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the
|
|
* following disclaimer in the documentation and/or other
|
|
* materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using XenAdmin.Core;
|
|
using XenAdmin.Plugins;
|
|
|
|
namespace XenAdmin.Commands
|
|
{
|
|
/// <summary>
|
|
/// A List for toolstrip menu items. It contains useful methods for adding Commands
|
|
/// and <see cref="CommandToolStripMenuItem"/>s.
|
|
/// </summary>
|
|
internal class ContextMenuItemCollection : List<ToolStripItem>
|
|
{
|
|
private readonly PluginManager _pluginManager;
|
|
private readonly IMainWindow _mainWindow;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ContextMenuItemCollection"/> class.
|
|
/// This constructor can not be used it this collection is required to contains plug-in menu items.
|
|
/// </summary>
|
|
public ContextMenuItemCollection()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ContextMenuItemCollection"/> class.
|
|
/// </summary>
|
|
/// <param name="mainWindow">The main window required for adding plugin-menu items.</param>
|
|
/// <param name="pluginManager">The plugin manager required for adding plugin-menu items.</param>
|
|
public ContextMenuItemCollection(IMainWindow mainWindow, PluginManager pluginManager)
|
|
{
|
|
Util.ThrowIfParameterNull(mainWindow, "mainWindow");
|
|
_mainWindow = mainWindow;
|
|
|
|
Util.ThrowIfParameterNull(mainWindow, "pluginManager");
|
|
_pluginManager = pluginManager;
|
|
}
|
|
|
|
public void RemoveInvalidSeparators()
|
|
{
|
|
// remove leading separators
|
|
while (Count > 0)
|
|
{
|
|
if (this[0] is ToolStripSeparator)
|
|
{
|
|
RemoveAt(0);
|
|
}
|
|
else
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
// remove trailing separators
|
|
for (int i = Count - 1; i >= 0; i--)
|
|
{
|
|
if (this[i] is ToolStripSeparator)
|
|
{
|
|
RemoveAt(i);
|
|
}
|
|
else
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
public void AddPluginItems(PluginContextMenu contextMenu, SelectedItemCollection selection)
|
|
{
|
|
if (_pluginManager == null)
|
|
{
|
|
throw new InvalidOperationException("No plugin manager was specified.");
|
|
}
|
|
|
|
bool addedSeparatorBefore = false;
|
|
|
|
foreach (PluginDescriptor plugin in _pluginManager.Plugins)
|
|
{
|
|
if (plugin.Enabled)
|
|
{
|
|
foreach (Feature feature in plugin.Features)
|
|
{
|
|
MenuItemFeature menuItemFeature = feature as MenuItemFeature;
|
|
|
|
if (menuItemFeature != null && menuItemFeature.ContextMenu == contextMenu)
|
|
{
|
|
if (!addedSeparatorBefore)
|
|
{
|
|
AddSeparator();
|
|
addedSeparatorBefore = true;
|
|
}
|
|
|
|
Add(menuItemFeature.GetCommand(_mainWindow, selection));
|
|
}
|
|
|
|
ParentMenuItemFeature parentMenuItemFeature = feature as ParentMenuItemFeature;
|
|
|
|
if (parentMenuItemFeature != null && parentMenuItemFeature.ContextMenu == contextMenu)
|
|
{
|
|
CommandToolStripMenuItem parentItem = new CommandToolStripMenuItem(parentMenuItemFeature.GetCommand(_mainWindow, selection));
|
|
|
|
foreach (MenuItemFeature f in parentMenuItemFeature.Features)
|
|
{
|
|
parentItem.DropDownItems.Add(new CommandToolStripMenuItem(f.GetCommand(_mainWindow, selection)));
|
|
}
|
|
|
|
if (!addedSeparatorBefore)
|
|
{
|
|
AddSeparator();
|
|
addedSeparatorBefore = true;
|
|
}
|
|
|
|
Add(parentItem);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (addedSeparatorBefore)
|
|
{
|
|
AddSeparator();
|
|
}
|
|
}
|
|
|
|
public void AddIf(Command command, Func<bool> condition)
|
|
{
|
|
if (condition())
|
|
{
|
|
AddIfEnabled(command);
|
|
}
|
|
}
|
|
|
|
public void AddIfEnabled(ToolStripMenuItem item)
|
|
{
|
|
if (item.Enabled)
|
|
{
|
|
Add(item);
|
|
}
|
|
else
|
|
{
|
|
item.Dispose();
|
|
}
|
|
}
|
|
|
|
public void AddIfEnabled(Command command, bool bold = false)
|
|
{
|
|
if (command.CanExecute())
|
|
{
|
|
Add(command, bold);
|
|
}
|
|
}
|
|
|
|
public void Add(Command command, bool bold = false)
|
|
{
|
|
CommandToolStripMenuItem item = new CommandToolStripMenuItem(command, true);
|
|
|
|
if (bold)
|
|
{
|
|
item.Font = Program.DefaultFontBold;
|
|
}
|
|
|
|
Add(item);
|
|
}
|
|
|
|
public void AddSeparator()
|
|
{
|
|
if (Count > 0 && !(this[Count - 1] is ToolStripSeparator))
|
|
{
|
|
Add(new ToolStripSeparator());
|
|
}
|
|
}
|
|
}
|
|
}
|