1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using QuickRoute.BusinessEntities;
using System.Windows.Forms.Design;
using QuickRoute.Controls.Forms;
namespace QuickRoute.PropertyControls
{
public partial class GradientEditorControl : UserControl
{
private Padding gradientPadding = new Padding(6, 1, 6, 17);
private Size colorEntryMarkerSize = new Size(11, 16);
private Rectangle gradientRectangle;
private GradientColorEntry activeGradientColorEntry;
private bool draggingGradientColorEntryNow = false;
private Bitmap gradientPanelBackBuffer;
private Gradient gradient;
private IWindowsFormsEditorService editorService;
public Gradient Gradient
{
get { return gradient; }
set { gradient = value; }
}
public GradientEditorControl(Gradient gradient, IWindowsFormsEditorService editorService)
{
this.gradient = gradient;
this.editorService = editorService;
InitializeComponent();
}
#region Private methods
private void CreateGradientRectangle()
{
gradientRectangle = new Rectangle(gradientPadding.Left, gradientPadding.Top, gradientPanel.Width - gradientPadding.Horizontal, gradientPanel.Height - gradientPadding.Vertical);
}
private void CreateGradientBackBuffer()
{
gradientPanelBackBuffer = new Bitmap(gradientPanel.Width, gradientPanel.Height);
}
private void DrawGradient()
{
Graphics graphics = Graphics.FromImage(gradientPanelBackBuffer);
graphics.Clear(gradientPanel.BackColor);
if (gradient != null)
{
Gradient.FillCheckerboardRectangle(graphics, gradientRectangle, 8);
gradient.Draw(graphics, gradientRectangle, 0.0, 1.0, Gradient.Direction.Horizontal);
graphics.DrawRectangle(Pens.Black, new Rectangle(gradientRectangle.Left - 1, gradientRectangle.Top - 1, gradientRectangle.Width + 2, gradientRectangle.Height + 1));
DrawColorEntryMarkers();
}
graphics.Dispose();
}
private void DrawColorEntryMarkers()
{
Graphics graphics = Graphics.FromImage(gradientPanelBackBuffer);
Brush b = new SolidBrush(gradientPanel.BackColor);
graphics.FillRectangle(b, new Rectangle(0, gradientRectangle.Bottom + 1, gradientPanel.Width, gradientPanel.Height - gradientRectangle.Bottom));
b.Dispose();
int x;
foreach (GradientColorEntry colorEntry in gradient.ColorEntries)
{
if (!colorEntry.Equals(activeGradientColorEntry))
{
x = gradientRectangle.Left + (int)(colorEntry.Location * gradientRectangle.Width);
DrawColorEntryMarker(graphics, new Point(x, gradientRectangle.Bottom + 1), colorEntryMarkerSize, colorEntry.Color, Color.Black);
}
}
if (activeGradientColorEntry != null)
{
x = gradientRectangle.Left + (int)(activeGradientColorEntry.Location * gradientRectangle.Width);
DrawColorEntryMarker(graphics, new Point(x, gradientRectangle.Bottom + 1), colorEntryMarkerSize, activeGradientColorEntry.Color, Color.Blue);
}
graphics.Dispose();
}
private void CopyBackBufferToScreen()
{
// copy back buffer to screen
gradientPanel.CreateGraphics().DrawImageUnscaled(gradientPanelBackBuffer, 0, 0);
}
private void DrawColorEntryMarker(Graphics graphics, Point point, Size size, Color color, Color borderColor)
{
Point[] markerPoints = new Point[5];
markerPoints[0] = new Point(point.X, point.Y);
markerPoints[1] = new Point(point.X + size.Width / 2, point.Y + size.Width / 2);
markerPoints[2] = new Point(point.X + size.Width / 2, point.Y + size.Height - 1);
markerPoints[3] = new Point(point.X - size.Width / 2, point.Y + size.Height - 1);
markerPoints[4] = new Point(point.X - size.Width / 2, point.Y + size.Width / 2);
Brush b = new SolidBrush(borderColor);
graphics.FillPolygon(b, markerPoints);
b.Dispose();
Pen p = new Pen(borderColor);
graphics.DrawPolygon(p, markerPoints);
p.Dispose();
Rectangle rect = new Rectangle(point.X - size.Width / 2 + 1, point.Y + size.Width / 2 + 1, size.Width - 2, size.Height - size.Width / 2 - 2);
Gradient.FillCheckerboardRectangle(graphics, rect, rect.Width / 3);
b = new SolidBrush(color);
graphics.FillRectangle(b, rect);
b.Dispose();
}
private GradientColorEntry GetGradientColorEntryFromLocation(int x)
{
int tmpX;
foreach (GradientColorEntry colorEntry in gradient.ColorEntries)
{
tmpX = gradientRectangle.Left + (int)(colorEntry.Location * gradientRectangle.Width);
if (Math.Abs(x - tmpX) <= colorEntryMarkerSize.Width / 2)
{
return colorEntry;
}
}
return null;
}
private double GetColorEntryLocationFromX(int x)
{
return Math.Min(1, Math.Max(0, (double)(x - gradientRectangle.Left) / (gradientRectangle.Width)));
}
#endregion
#region Event handlers
private void gradientPanel_Resize(object sender, EventArgs e)
{
CreateGradientRectangle();
CreateGradientBackBuffer();
DrawGradient();
}
private void gradientPanel_Paint(object sender, PaintEventArgs e)
{
CopyBackBufferToScreen();
}
private void gradientPanel_MouseMove(object sender, MouseEventArgs e)
{
if (gradient == null) return;
if (draggingGradientColorEntryNow)
{
// drag gradient color entry
activeGradientColorEntry.Location = GetColorEntryLocationFromX(e.X);
DrawGradient();
CopyBackBufferToScreen();
}
else
{
// check if mouse pointer is over gradient entry marker
GradientColorEntry previousActiveGradientColorEntry = activeGradientColorEntry;
activeGradientColorEntry = GetGradientColorEntryFromLocation(e.X);
if ((previousActiveGradientColorEntry != null && !previousActiveGradientColorEntry.Equals(activeGradientColorEntry))
||
(activeGradientColorEntry != null && !activeGradientColorEntry.Equals(previousActiveGradientColorEntry)))
{
DrawColorEntryMarkers();
CopyBackBufferToScreen();
}
}
}
private void gradientPanel_MouseDown(object sender, MouseEventArgs e)
{
if (gradient == null) return;
activeGradientColorEntry = GetGradientColorEntryFromLocation(e.X);
if (activeGradientColorEntry != null)
{
if (e.Button == MouseButtons.Left)
{
// drag
draggingGradientColorEntryNow = true;
}
else if (e.Button == MouseButtons.Right)
{
// delete
gradient.ColorEntries.Remove(activeGradientColorEntry);
}
}
else
{
if (e.Button == MouseButtons.Left)
{
// add
double location = GetColorEntryLocationFromX(e.X);
Color color = gradient.GetColor(location);
gradient.ColorEntries.Add(new GradientColorEntry(color, location));
}
}
DrawGradient();
CopyBackBufferToScreen();
}
private void gradientPanel_MouseUp(object sender, MouseEventArgs e)
{
if (gradient == null) return;
draggingGradientColorEntryNow = false;
DrawGradient();
CopyBackBufferToScreen();
}
private void gradientPanel_MouseLeave(object sender, EventArgs e)
{
if (gradient == null) return;
activeGradientColorEntry = null;
DrawColorEntryMarkers();
}
private void gradientPanel_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (gradient == null) return;
activeGradientColorEntry = GetGradientColorEntryFromLocation(e.X);
if (activeGradientColorEntry != null)
{
GradientColorEntry colorEntry = activeGradientColorEntry;
using (var cc = new ColorChooser { Color = colorEntry.Color })
{
if (cc.ShowDialog() == DialogResult.OK)
{
colorEntry.Color = cc.Color;
DrawGradient();
CopyBackBufferToScreen();
}
}
}
}
private void gradientNameTextbox_TextChanged(object sender, EventArgs e)
{
gradient.Name = gradientNameTextbox.Text;
}
private void gradientNameTextbox_Enter(object sender, EventArgs e)
{
gradientNameTextbox.SelectAll();
}
#endregion
}
}
|