mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
95 lines
2.7 KiB
C#
95 lines
2.7 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ProgressODoom {
|
|
/// <summary></summary>
|
|
[ToolboxBitmapAttribute(typeof(ProgressODoom.PlainBackgroundPainter), "Icons.PlainBackgroundPainter.ico")]
|
|
public class PlainBackgroundPainter : Component, IProgressBackgroundPainter, IDisposable {
|
|
private Color color;
|
|
private Brush brush;
|
|
private IGlossPainter gloss;
|
|
|
|
private EventHandler onPropertiesChanged;
|
|
/// <summary></summary>
|
|
public event EventHandler PropertiesChanged {
|
|
add {
|
|
if (onPropertiesChanged != null) {
|
|
foreach (Delegate d in onPropertiesChanged.GetInvocationList()) {
|
|
if (object.ReferenceEquals(d, value)) { return; }
|
|
}
|
|
}
|
|
onPropertiesChanged = (EventHandler)Delegate.Combine(onPropertiesChanged, value);
|
|
}
|
|
remove { onPropertiesChanged = (EventHandler)Delegate.Remove(onPropertiesChanged, value); }
|
|
}
|
|
|
|
private void FireChange() {
|
|
if (onPropertiesChanged != null) { onPropertiesChanged(this, EventArgs.Empty); }
|
|
}
|
|
|
|
/// <summary></summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected virtual void component_PropertiesChanged(object sender, EventArgs e) {
|
|
FireChange();
|
|
}
|
|
|
|
/// <summary></summary>
|
|
public PlainBackgroundPainter() {
|
|
this.Color = Color.FromArgb(240, 240, 240);
|
|
}
|
|
|
|
/// <summary></summary>
|
|
/// <param name="color"></param>
|
|
public PlainBackgroundPainter(Color color) {
|
|
this.Color = color;
|
|
}
|
|
|
|
/// <summary></summary>
|
|
/// <summary></summary>
|
|
[Category("Painters"), Description("Gets or sets the chain of gloss painters"), Browsable(true)]
|
|
public IGlossPainter GlossPainter {
|
|
get { return this.gloss; }
|
|
set {
|
|
this.gloss = value;
|
|
if (this.gloss != null) { this.gloss.PropertiesChanged += new EventHandler(component_PropertiesChanged); }
|
|
FireChange();
|
|
}
|
|
}
|
|
|
|
/// <summary></summary>
|
|
[Category("Appearance"), Description("Gets or sets the background color"), Browsable(true)]
|
|
public Color Color {
|
|
get { return color; }
|
|
set {
|
|
color = value;
|
|
brush = new SolidBrush(color);
|
|
FireChange();
|
|
}
|
|
}
|
|
|
|
/// <summary></summary>
|
|
/// <param name="box"></param>
|
|
/// <param name="g"></param>
|
|
public void PaintBackground(Rectangle box, Graphics g) {
|
|
g.FillRectangle(brush, box);
|
|
|
|
if (gloss != null) {
|
|
gloss.PaintGloss(box, g);
|
|
}
|
|
}
|
|
|
|
/// <summary></summary>
|
|
public void Resize(Rectangle box) {
|
|
}
|
|
|
|
/// <summary></summary>
|
|
protected override void Dispose(bool disposing) {
|
|
base.Dispose(disposing);
|
|
brush.Dispose();
|
|
}
|
|
}
|
|
} |