mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-03 16:41:04 +01:00
MainWindow code tidy: removed methods constructing ToolStripMenuItems as unecessary.
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
This commit is contained in:
parent
a516796006
commit
60bca4d1df
@ -74,8 +74,11 @@ namespace XenAdmin.Controls
|
||||
|
||||
private void AddMenuItem(string name, object tag, Image image, bool selected)
|
||||
{
|
||||
ToolStripMenuItem menuItem = MainWindow.NewToolStripMenuItem(name, image, null);
|
||||
menuItem.Tag = tag;
|
||||
var menuItem = new ToolStripMenuItem(name)
|
||||
{
|
||||
Image = image,
|
||||
Tag = tag
|
||||
};
|
||||
comboButtonViews.AddItem(menuItem);
|
||||
if (selected)
|
||||
comboButtonViews.SelectedItem = menuItem;
|
||||
|
@ -2366,7 +2366,7 @@ namespace XenAdmin
|
||||
|
||||
foreach (Form form in GetAuxWindows())
|
||||
{
|
||||
ToolStripMenuItem item = NewToolStripMenuItem(form.Text.EscapeAmpersands());
|
||||
ToolStripMenuItem item = new ToolStripMenuItem(form.Text.EscapeAmpersands());
|
||||
item.Tag = form;
|
||||
windowToolStripMenuItem.DropDown.Items.Add(item);
|
||||
}
|
||||
@ -3668,40 +3668,6 @@ namespace XenAdmin
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Create a new ToolStripMenuItem, setting the appropriate default font, and configuring it with the given text, icon, and click handler.
|
||||
/// </summary>
|
||||
/// <param name="text">The menu item text. Don't forget that this may need to have its ampersands escaped.</param>
|
||||
/// <param name="ico">May be null, in which case no icon is set.</param>
|
||||
/// <param name="clickHandler">May be null, in which case no click handler is set.</param>
|
||||
/// <returns>The new ToolStripMenuItem</returns>
|
||||
internal static ToolStripMenuItem NewToolStripMenuItem(string text, Image ico, EventHandler clickHandler)
|
||||
{
|
||||
ToolStripMenuItem m = new ToolStripMenuItem(text);
|
||||
m.Font = Program.DefaultFont;
|
||||
if (ico != null)
|
||||
m.Image = ico;
|
||||
if (clickHandler != null)
|
||||
m.Click += clickHandler;
|
||||
return m;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Equivalent to NewToolStripMenuItem(text, null, null).
|
||||
/// </summary>
|
||||
internal static ToolStripMenuItem NewToolStripMenuItem(string text)
|
||||
{
|
||||
return NewToolStripMenuItem(text, null, null);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Equivalent to NewToolStripMenuItem(text, null, clickHandler).
|
||||
/// </summary>
|
||||
internal static ToolStripMenuItem NewToolStripMenuItem(string text, EventHandler clickHandler)
|
||||
{
|
||||
return NewToolStripMenuItem(text, null, clickHandler);
|
||||
}
|
||||
|
||||
internal void FocusTreeView()
|
||||
{
|
||||
treeView.Focus();
|
||||
|
@ -499,11 +499,12 @@ namespace XenAdmin.TabPages
|
||||
{
|
||||
PDSection s = pdSectionManagementInterfaces;
|
||||
|
||||
ToolStripMenuItem editValue = MainWindow.NewToolStripMenuItem(Messages.EDIT, Properties.Resources.edit_16, delegate(object sender, EventArgs e)
|
||||
{
|
||||
NetworkingProperties p = new NetworkingProperties(Host, null);
|
||||
p.ShowDialog(Program.MainWindow);
|
||||
});
|
||||
ToolStripMenuItem editValue = new ToolStripMenuItem(Messages.EDIT) { Image = Properties.Resources.edit_16 };
|
||||
editValue.Click += delegate
|
||||
{
|
||||
NetworkingProperties p = new NetworkingProperties(Host, null);
|
||||
p.ShowDialog(Program.MainWindow);
|
||||
};
|
||||
List<ToolStripMenuItem> menuItems = new List<ToolStripMenuItem>();
|
||||
menuItems.Add(editValue);
|
||||
|
||||
@ -556,12 +557,13 @@ namespace XenAdmin.TabPages
|
||||
|
||||
foreach (CustomField customField in customFields)
|
||||
{
|
||||
ToolStripMenuItem editValue = MainWindow.NewToolStripMenuItem(Messages.EDIT, Properties.Resources.edit_16, delegate(object sender, EventArgs e)
|
||||
{
|
||||
PropertiesDialog dialog = new PropertiesDialog(xenObject);
|
||||
dialog.SelectPage(dialog.CustomFieldsEditPage);
|
||||
dialog.ShowDialog();
|
||||
});
|
||||
ToolStripMenuItem editValue = new ToolStripMenuItem(Messages.EDIT){Image= Properties.Resources.edit_16};
|
||||
editValue.Click += delegate
|
||||
{
|
||||
PropertiesDialog dialog = new PropertiesDialog(xenObject);
|
||||
dialog.SelectPage(dialog.CustomFieldsEditPage);
|
||||
dialog.ShowDialog();
|
||||
};
|
||||
List<ToolStripMenuItem> menuItems = new List<ToolStripMenuItem>();
|
||||
menuItems.Add(editValue);
|
||||
CustomFieldWrapper cfWrapper = new CustomFieldWrapper(xenObject, customField.Definition);
|
||||
@ -679,17 +681,18 @@ namespace XenAdmin.TabPages
|
||||
bool detached = !sr.HasPBDs;
|
||||
|
||||
List<ToolStripMenuItem> menuItems = new List<ToolStripMenuItem>();
|
||||
ToolStripMenuItem repair = MainWindow.NewToolStripMenuItem(sr.NeedsUpgrading ? Messages.UPGRADE_SR : Messages.GENERAL_SR_CONTEXT_REPAIR,
|
||||
Properties.Resources._000_StorageBroken_h32bit_16,
|
||||
delegate(object sender, EventArgs e)
|
||||
ToolStripMenuItem repair = new ToolStripMenuItem
|
||||
{
|
||||
Text = sr.NeedsUpgrading ? Messages.UPGRADE_SR : Messages.GENERAL_SR_CONTEXT_REPAIR,
|
||||
Image = Properties.Resources._000_StorageBroken_h32bit_16
|
||||
};
|
||||
repair.Click += delegate
|
||||
{
|
||||
if (sr.NeedsUpgrading)
|
||||
{
|
||||
new UpgradeSRCommand(Program.MainWindow.CommandInterface, sr).Execute();
|
||||
}
|
||||
else
|
||||
Program.MainWindow.ShowPerConnectionWizard(xenObject.Connection, new RepairSRDialog(sr));
|
||||
});
|
||||
};
|
||||
menuItems.Add(repair);
|
||||
|
||||
if (broken && !detached)
|
||||
@ -932,19 +935,19 @@ namespace XenAdmin.TabPages
|
||||
|
||||
if (info.ContainsKey("expiry"))
|
||||
{
|
||||
ToolStripMenuItem editItem = MainWindow.NewToolStripMenuItem(Messages.LAUNCH_LICENSE_MANAGER, delegate
|
||||
{
|
||||
if(LicenseLauncher != null)
|
||||
ToolStripMenuItem editItem = new ToolStripMenuItem(Messages.LAUNCH_LICENSE_MANAGER);
|
||||
editItem.Click += delegate
|
||||
{
|
||||
LicenseLauncher.Parent = Program.MainWindow;
|
||||
LicenseLauncher.LaunchIfRequired(false, ConnectionsManager.XenConnections);
|
||||
}
|
||||
|
||||
});
|
||||
if (LicenseLauncher != null)
|
||||
{
|
||||
LicenseLauncher.Parent = Program.MainWindow;
|
||||
LicenseLauncher.LaunchIfRequired(false, ConnectionsManager.XenConnections);
|
||||
}
|
||||
};
|
||||
|
||||
GeneralTabLicenseStatusStringifier ss = new GeneralTabLicenseStatusStringifier(licenseStatus);
|
||||
s.AddEntry(Messages.LICENSE_STATUS, ss.ExpiryStatus, new List<ToolStripMenuItem>(new [] { editItem }));
|
||||
s.AddEntry(FriendlyName("host.license_params-expiry"), ss.ExpiryDate, new List<ToolStripMenuItem>(new ToolStripMenuItem[] { editItem }));
|
||||
s.AddEntry(FriendlyName("host.license_params-expiry"), ss.ExpiryDate, new List<ToolStripMenuItem>(new [] { editItem }));
|
||||
info.Remove("expiry");
|
||||
}
|
||||
|
||||
@ -1094,31 +1097,33 @@ namespace XenAdmin.TabPages
|
||||
}
|
||||
else if (!host.enabled)
|
||||
{
|
||||
var item = new ToolStripMenuItem(Messages.EXIT_MAINTENANCE_MODE);
|
||||
item.Click += delegate
|
||||
{
|
||||
new HostMaintenanceModeCommand(Program.MainWindow.CommandInterface, host,
|
||||
HostMaintenanceModeCommandParameter.Exit).Execute();
|
||||
};
|
||||
s.AddEntry(FriendlyName("host.enabled"),
|
||||
host.MaintenanceMode ? Messages.HOST_IN_MAINTENANCE_MODE : Messages.DISABLED,
|
||||
new List<ToolStripMenuItem>(new ToolStripMenuItem[] {
|
||||
MainWindow.NewToolStripMenuItem(Messages.EXIT_MAINTENANCE_MODE, delegate(object sender, EventArgs e)
|
||||
{
|
||||
new HostMaintenanceModeCommand(Program.MainWindow.CommandInterface, host, HostMaintenanceModeCommandParameter.Exit).Execute();
|
||||
})
|
||||
}),
|
||||
new List<ToolStripMenuItem>(new[] { item }),
|
||||
Color.Red);
|
||||
}
|
||||
else
|
||||
{
|
||||
var item = new ToolStripMenuItem(Messages.ENTER_MAINTENANCE_MODE);
|
||||
item.Click += delegate
|
||||
{
|
||||
new HostMaintenanceModeCommand(Program.MainWindow.CommandInterface, host,
|
||||
HostMaintenanceModeCommandParameter.Enter).Execute();
|
||||
};
|
||||
s.AddEntry(FriendlyName("host.enabled"), Messages.YES,
|
||||
new List<ToolStripMenuItem>(new ToolStripMenuItem[] {
|
||||
MainWindow.NewToolStripMenuItem(Messages.ENTER_MAINTENANCE_MODE, delegate(object sender, EventArgs e)
|
||||
{
|
||||
new HostMaintenanceModeCommand(Program.MainWindow.CommandInterface, host, HostMaintenanceModeCommandParameter.Enter).Execute();
|
||||
})
|
||||
}));
|
||||
new List<ToolStripMenuItem>(new [] {item}));
|
||||
}
|
||||
|
||||
s.AddEntry(FriendlyName("host.iscsi_iqn"), host.iscsi_iqn,
|
||||
new List<ToolStripMenuItem>(new ToolStripMenuItem[] { EditMenuItem("GeneralEditPage", "txtIQN") }));
|
||||
new List<ToolStripMenuItem>(new [] { EditMenuItem("GeneralEditPage", "txtIQN") }));
|
||||
s.AddEntry(FriendlyName("host.log_destination"), host.SysLogDestination ?? Messages.HOST_LOG_DESTINATION_LOCAL,
|
||||
new List<ToolStripMenuItem>(new ToolStripMenuItem[] { EditMenuItem("LogDestinationEditPage", "localRadioButton") }));
|
||||
new List<ToolStripMenuItem>(new [] { EditMenuItem("LogDestinationEditPage", "localRadioButton") }));
|
||||
|
||||
PrettyTimeSpan uptime = host.Uptime;
|
||||
PrettyTimeSpan agentUptime = host.AgentUptime;
|
||||
@ -1144,12 +1149,13 @@ namespace XenAdmin.TabPages
|
||||
var appl = vm.Connection.Resolve(vm.appliance);
|
||||
if (appl != null)
|
||||
{
|
||||
ToolStripMenuItem applProperties = MainWindow.NewToolStripMenuItem(Messages.VM_APPLIANCE_PROPERTIES,
|
||||
(sender, e) =>
|
||||
{
|
||||
using (PropertiesDialog propertiesDialog = new PropertiesDialog(appl))
|
||||
propertiesDialog.ShowDialog(this);
|
||||
});
|
||||
var applProperties = new ToolStripMenuItem(Messages.VM_APPLIANCE_PROPERTIES);
|
||||
applProperties.Click +=
|
||||
(sender, e) =>
|
||||
{
|
||||
using (PropertiesDialog propertiesDialog = new PropertiesDialog(appl))
|
||||
propertiesDialog.ShowDialog(this);
|
||||
};
|
||||
|
||||
s.AddEntryLink(Messages.VM_APPLIANCE, appl.Name, new List<ToolStripMenuItem>(new[] { applProperties }),
|
||||
() =>
|
||||
@ -1177,13 +1183,14 @@ namespace XenAdmin.TabPages
|
||||
{
|
||||
if (InstallToolsCommand.CanExecute(vm))
|
||||
{
|
||||
ToolStripMenuItem installtools = MainWindow.NewToolStripMenuItem(
|
||||
Messages.INSTALL_XENSERVER_TOOLS_DOTS, delegate(object sender, EventArgs e)
|
||||
var installtools = new ToolStripMenuItem(Messages.INSTALL_XENSERVER_TOOLS_DOTS);
|
||||
installtools.Click += delegate
|
||||
{
|
||||
new InstallToolsCommand(Program.MainWindow.CommandInterface, vm).Execute();
|
||||
});
|
||||
};
|
||||
s.AddEntryLink(FriendlyName("VM.VirtualizationState"), vm.VirtualisationStatusString,
|
||||
new List<ToolStripMenuItem>(new ToolStripMenuItem[] { installtools }), new InstallToolsCommand(Program.MainWindow.CommandInterface, vm));
|
||||
new List<ToolStripMenuItem>(new [] { installtools }),
|
||||
new InstallToolsCommand(Program.MainWindow.CommandInterface, vm));
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1369,20 +1376,18 @@ namespace XenAdmin.TabPages
|
||||
|
||||
private void GenTagRow(PDSection s)
|
||||
{
|
||||
List<ToolStripMenuItem> toolStrip = new List<ToolStripMenuItem>(new ToolStripMenuItem[] { EditMenuItem("GeneralEditPage", "") });
|
||||
List<ToolStripMenuItem> toolStrip = new List<ToolStripMenuItem>(new [] { EditMenuItem("GeneralEditPage", "") });
|
||||
|
||||
string[] tags = Tags.GetTags(xenObject);
|
||||
if (tags != null && tags.Length > 0)
|
||||
{
|
||||
ToolStripMenuItem goToTag = MainWindow.NewToolStripMenuItem(Messages.VIEW_TAG_MENU_OPTION);
|
||||
ToolStripMenuItem goToTag = new ToolStripMenuItem(Messages.VIEW_TAG_MENU_OPTION);
|
||||
|
||||
foreach (string tag in tags)
|
||||
{
|
||||
goToTag.DropDownItems.Add(MainWindow.NewToolStripMenuItem(tag.Ellipsise(30),
|
||||
delegate(object sender, EventArgs e)
|
||||
{
|
||||
Program.MainWindow.SearchForTag(tag);
|
||||
}));
|
||||
var item = new ToolStripMenuItem(tag.Ellipsise(30));
|
||||
item.Click += delegate { Program.MainWindow.SearchForTag(tag); };
|
||||
goToTag.DropDownItems.Add(item);
|
||||
}
|
||||
toolStrip.Insert(0, goToTag);
|
||||
s.AddEntry(Messages.TAGS, TagsString(), toolStrip);
|
||||
@ -1407,13 +1412,9 @@ namespace XenAdmin.TabPages
|
||||
List<ToolStripMenuItem> menuItems = new List<ToolStripMenuItem>();
|
||||
if (xenObject.Path != "")
|
||||
{
|
||||
menuItems.Add(
|
||||
MainWindow.NewToolStripMenuItem(Messages.VIEW_FOLDER_MENU_OPTION,
|
||||
delegate(object sender, EventArgs e)
|
||||
{
|
||||
Program.MainWindow.SearchForFolder(xenObject.Path);
|
||||
})
|
||||
);
|
||||
var item = new ToolStripMenuItem(Messages.VIEW_FOLDER_MENU_OPTION);
|
||||
item.Click += delegate { Program.MainWindow.SearchForFolder(xenObject.Path); };
|
||||
menuItems.Add(item);
|
||||
}
|
||||
menuItems.Add(EditMenuItem("GeneralEditPage", ""));
|
||||
s.AddEntry(
|
||||
|
@ -329,10 +329,8 @@ namespace XenAdmin.TabPages
|
||||
if (redBold)
|
||||
{
|
||||
newChild.Items[1].ForeColor = Color.Red;
|
||||
ToolStripMenuItem editHa = MainWindow.NewToolStripMenuItem(Messages.CONFIGURE_HA_ELLIPSIS, delegate(object sender, EventArgs e)
|
||||
{
|
||||
EditHA(pool);
|
||||
});
|
||||
ToolStripMenuItem editHa = new ToolStripMenuItem(Messages.CONFIGURE_HA_ELLIPSIS);
|
||||
editHa.Click += delegate { EditHA(pool); };
|
||||
newChild.MenuItems.Add(editHa);
|
||||
newChild.DefaultMenuItem = editHa;
|
||||
}
|
||||
@ -351,10 +349,8 @@ namespace XenAdmin.TabPages
|
||||
if (redBold)
|
||||
{
|
||||
newChild.Items[1].ForeColor = Color.Red;
|
||||
ToolStripMenuItem editHa = MainWindow.NewToolStripMenuItem(Messages.CONFIGURE_HA_ELLIPSIS, delegate(object sender, EventArgs e)
|
||||
{
|
||||
EditHA(pool);
|
||||
});
|
||||
ToolStripMenuItem editHa = new ToolStripMenuItem(Messages.CONFIGURE_HA_ELLIPSIS);
|
||||
editHa.Click += delegate { EditHA(pool); };
|
||||
newChild.MenuItems.Add(editHa);
|
||||
newChild.DefaultMenuItem = editHa;
|
||||
}
|
||||
@ -575,19 +571,20 @@ namespace XenAdmin.TabPages
|
||||
{
|
||||
menu.Items.Add(item);
|
||||
}
|
||||
ToolStripMenuItem copyItem = MainWindow.NewToolStripMenuItem(Messages.COPY, Properties.Resources.copy_16, delegate(object sender2, EventArgs eve)
|
||||
{
|
||||
try
|
||||
ToolStripMenuItem copyItem = new ToolStripMenuItem(Messages.COPY) { Image = Properties.Resources.copy_16 };
|
||||
copyItem.Click += delegate
|
||||
{
|
||||
String text = Helpers.ToWindowsLineEndings(e.Item.Tag != null ? e.Item.Tag.ToString() : e.Item.Text);
|
||||
Clipboard.SetText(text);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
log.Error("Exception while trying to set clipboard text.", ex);
|
||||
log.Error(ex, ex);
|
||||
}
|
||||
});
|
||||
try
|
||||
{
|
||||
String text = Helpers.ToWindowsLineEndings(e.Item.Tag != null ? e.Item.Tag.ToString() : e.Item.Text);
|
||||
Clipboard.SetText(text);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
log.Error("Exception while trying to set clipboard text.", ex);
|
||||
log.Error(ex, ex);
|
||||
}
|
||||
};
|
||||
menu.Items.Add(copyItem);
|
||||
menu.Show(this, PointToClient(MousePosition));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user