//
//
//
//
// $Revision: 1965 $
//
using System;
using System.Collections;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace ICSharpCode.TextEditor
{
///
/// Contains brushes/pens for the text editor to speed up drawing. Re-Creation of brushes and pens
/// seems too costly.
///
public class BrushRegistry
{
static Hashtable brushes = new Hashtable();
static Hashtable pens = new Hashtable();
static Hashtable dotPens = new Hashtable();
public static Brush GetBrush(Color color)
{
if (!brushes.Contains(color)) {
Brush newBrush = new SolidBrush(color);
brushes.Add(color, newBrush);
return newBrush;
}
return brushes[color] as Brush;
}
public static Pen GetPen(Color color)
{
if (!pens.Contains(color)) {
Pen newPen = new Pen(color);
pens.Add(color, newPen);
return newPen;
}
return pens[color] as Pen;
}
public static Pen GetDotPen(Color bgColor, Color fgColor)
{
bool containsBgColor = dotPens.Contains(bgColor);
if (!containsBgColor || !((Hashtable)dotPens[bgColor]).Contains(fgColor)) {
if (!containsBgColor) {
dotPens[bgColor] = new Hashtable();
}
HatchBrush hb = new HatchBrush(HatchStyle.Percent50, bgColor, fgColor);
Pen newPen = new Pen(hb);
((Hashtable)dotPens[bgColor])[fgColor] = newPen;
return newPen;
}
return ((Hashtable)dotPens[bgColor])[fgColor] as Pen;
}
}
}