mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
This proposes a *new method* on IObservatoryCore: `SetGridItems(worker, items)` which does 2 things: * Clears the grid * Adds the given items. Effectively replaces the entire content of the grid -- which is something a handful of plugins now do. Why add this when you could just call Core's Clear + AddGridItems methods?? So it can all be done within the same rendering suppression "scope" to reduce flickering and increase rendering speed. Speaking of rendering suppression, I have implemented such rendering suppression "scope" which uses Listview's built-in Begin/EndUpdate() in combination with temporary removal of the sort comparer (as is done for read-alls). This was also applied to the existing AddGridItems(worker, items) method as well, addressing a TODO.
130 lines
4.1 KiB
C#
130 lines
4.1 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security.Permissions;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Observatory.UI
|
|
{
|
|
internal class PluginListView : ListView
|
|
{
|
|
public PluginListView()
|
|
{
|
|
OwnerDraw = true;
|
|
GridLines = false;
|
|
DrawItem += PluginListView_DrawItem;
|
|
DrawSubItem += PluginListView_DrawSubItem;
|
|
DrawColumnHeader += PluginListView_DrawColumnHeader;
|
|
|
|
|
|
DoubleBuffered = true;
|
|
base.GridLines = false;//We should prevent the default drawing of gridlines.
|
|
}
|
|
|
|
// Stash for performance when doing large UI updates.
|
|
private IComparer? comparer = null;
|
|
|
|
public void SuspendDrawing()
|
|
{
|
|
BeginUpdate();
|
|
comparer = ListViewItemSorter;
|
|
}
|
|
|
|
public void ResumeDrawing()
|
|
{
|
|
if (comparer != null)
|
|
{
|
|
ListViewItemSorter = comparer;
|
|
comparer = null;
|
|
}
|
|
EndUpdate();
|
|
}
|
|
|
|
private static void DrawBorder(Graphics graphics, Pen pen, Rectangle bounds, bool header = false)
|
|
{
|
|
|
|
Point topRight = new(bounds.Right, bounds.Top);
|
|
Point bottomRight = new(bounds.Right, bounds.Bottom);
|
|
|
|
graphics.DrawLine(pen, topRight, bottomRight);
|
|
|
|
if (header)
|
|
{
|
|
Point bottomLeft = new(bounds.Left, bounds.Bottom);
|
|
// Point topLeft = new(bounds.Left, bounds.Top);
|
|
// graphics.DrawLine(pen, topLeft, topRight);
|
|
// graphics.DrawLine(pen, topLeft, bottomLeft);
|
|
graphics.DrawLine(pen, bottomLeft, bottomRight);
|
|
}
|
|
}
|
|
|
|
private void PluginListView_DrawColumnHeader(object? sender, DrawListViewColumnHeaderEventArgs e)
|
|
{
|
|
using (var g = e.Graphics)
|
|
if (g != null)
|
|
{
|
|
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
|
|
Pen pen = new(new SolidBrush(Color.LightGray));
|
|
DrawBorder(g, pen, e.Bounds);
|
|
using (var font = new Font(this.Font, FontStyle.Bold))
|
|
{
|
|
Brush textBrush = new SolidBrush(ForeColor);
|
|
g.DrawString(e.Header?.Text, font, textBrush, e.Bounds);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void PluginListView_DrawSubItem(object? sender, DrawListViewSubItemEventArgs e)
|
|
{
|
|
using (var g = e.Graphics)
|
|
if (g != null)
|
|
{
|
|
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
|
|
Pen pen = new(new SolidBrush(Color.LightGray));
|
|
DrawBorder(g, pen, e.Bounds, false);
|
|
|
|
e.DrawText();
|
|
}
|
|
}
|
|
|
|
private void PluginListView_DrawItem(object? sender, DrawListViewItemEventArgs e)
|
|
{
|
|
var offsetColor = (int value) =>
|
|
{
|
|
if (value > 127)
|
|
{
|
|
return value - 20;
|
|
}
|
|
else
|
|
{
|
|
return value + 20;
|
|
}
|
|
};
|
|
|
|
using (var g = e.Graphics)
|
|
{
|
|
if (e.ItemIndex % 2 == 0)
|
|
{
|
|
e.Item.BackColor = BackColor;
|
|
}
|
|
else
|
|
{
|
|
e.Item.BackColor = Color.FromArgb(offsetColor(BackColor.R), offsetColor(BackColor.G), offsetColor(BackColor.B));
|
|
}
|
|
|
|
if (g != null)
|
|
{
|
|
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
|
|
Pen pen = new(new SolidBrush(Color.LightGray));
|
|
e.DrawBackground();
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|