mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
CP-6317: Importing from branch clearwater-ln.
# HG changeset patch # User Konstantina Chremmou <Konstantina.Chremmou@citrix.com> # Date 1378122578 -3600 # Node ID 28eb1719f7f648773bd707c3cb81bb537d8f78d8 # Parent 931d568b9b0f00809b9acbe31462423dfaf8a8d4 CA-113230: Improvements of previous fix. Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
This commit is contained in:
parent
548944486f
commit
706d158c42
@ -107,6 +107,8 @@ namespace XenAdmin.Dialogs
|
|||||||
item.Group = listView.Groups["listViewGroupAttachedDisks"];
|
item.Group = listView.Groups["listViewGroupAttachedDisks"];
|
||||||
item.Tag = vbd;
|
item.Tag = vbd;
|
||||||
item.Checked = vbd.IsOwner;
|
item.Checked = vbd.IsOwner;
|
||||||
|
foreach (ListViewItem.ListViewSubItem subitem in item.SubItems)
|
||||||
|
subitem.Tag = subitem.Text;
|
||||||
listView.Items.Add(item);
|
listView.Items.Add(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -120,6 +122,8 @@ namespace XenAdmin.Dialogs
|
|||||||
item.SubItems.Add(vm.Name);
|
item.SubItems.Add(vm.Name);
|
||||||
item.Tag = snapshot;
|
item.Tag = snapshot;
|
||||||
item.Group = listView.Groups["listViewGroupSnapshots"];
|
item.Group = listView.Groups["listViewGroupSnapshots"];
|
||||||
|
foreach (ListViewItem.ListViewSubItem subitem in item.SubItems)
|
||||||
|
subitem.Tag = subitem.Text;
|
||||||
listView.Items.Add(item);
|
listView.Items.Add(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -131,6 +135,8 @@ namespace XenAdmin.Dialogs
|
|||||||
item.Group = listView.Groups["listViewGroupAttachedDisks"];
|
item.Group = listView.Groups["listViewGroupAttachedDisks"];
|
||||||
item.Tag = vdi.Connection.ResolveAll(vdi.VBDs);
|
item.Tag = vdi.Connection.ResolveAll(vdi.VBDs);
|
||||||
item.Checked = false;
|
item.Checked = false;
|
||||||
|
foreach (ListViewItem.ListViewSubItem subitem in item.SubItems)
|
||||||
|
subitem.Tag = subitem.Text;
|
||||||
listView.Items.Add(item);
|
listView.Items.Add(item);
|
||||||
}
|
}
|
||||||
EnableSelectAllClear();
|
EnableSelectAllClear();
|
||||||
@ -183,16 +189,22 @@ namespace XenAdmin.Dialogs
|
|||||||
|
|
||||||
private void EllipsizeStrings(int columnIndex)
|
private void EllipsizeStrings(int columnIndex)
|
||||||
{
|
{
|
||||||
using (Graphics g = listView.CreateGraphics())
|
foreach (ListViewItem item in listView.Items)
|
||||||
{
|
{
|
||||||
foreach (ListViewItem item in listView.Items)
|
if (columnIndex < 0 || columnIndex >= item.SubItems.Count)
|
||||||
{
|
continue;
|
||||||
if (columnIndex < 0 || columnIndex >= item.SubItems.Count)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
var subItem = item.SubItems[columnIndex];
|
var subItem = item.SubItems[columnIndex];
|
||||||
subItem.Text.Ellipsise(subItem.Bounds, subItem.Font);
|
|
||||||
}
|
string wholeText = subItem.Tag as string;
|
||||||
|
if (wholeText == null)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
var rec = new Rectangle(subItem.Bounds.Left, subItem.Bounds.Top,
|
||||||
|
listView.Columns[columnIndex].Width, subItem.Bounds.Height);
|
||||||
|
|
||||||
|
subItem.Text = wholeText.Ellipsise(rec, subItem.Font);
|
||||||
|
listView.Invalidate(rec);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -260,26 +272,27 @@ namespace XenAdmin.Dialogs
|
|||||||
base.WndProc(ref m);
|
base.WndProc(ref m);
|
||||||
if (m.Msg == 20)
|
if (m.Msg == 20)
|
||||||
{
|
{
|
||||||
if (this.Items.Count == 0)
|
if (Items.Count == 0)
|
||||||
{
|
{
|
||||||
_b = true;
|
_b = true;
|
||||||
Graphics g = this.CreateGraphics();
|
using (Graphics g = CreateGraphics())
|
||||||
int w = (this.Width - g.MeasureString(_msg,
|
{
|
||||||
this.Font).ToSize().Width) / 2;
|
int w = (Width - g.MeasureString(_msg, Font).ToSize().Width) / 2;
|
||||||
g.DrawString(_msg, this.Font,
|
g.DrawString(_msg, Font, SystemBrushes.ControlText, w, 30);
|
||||||
SystemBrushes.ControlText, w, 30);
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (_b)
|
if (_b)
|
||||||
{
|
{
|
||||||
this.Invalidate();
|
Invalidate();
|
||||||
_b = false;
|
_b = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m.Msg == 4127) this.Invalidate();
|
if (m.Msg == 4127)
|
||||||
|
Invalidate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user