mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
21 lines
486 B
C#
21 lines
486 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace ProgressODoom {
|
|
/// <summary></summary>
|
|
public interface IProgressBorderPainter : IDisposable {
|
|
/// <summary></summary>
|
|
/// <param name="box"></param>
|
|
/// <param name="gr"></param>
|
|
void PaintBorder(Rectangle box, Graphics gr);
|
|
|
|
/// <summary></summary>
|
|
void Resize(Rectangle box);
|
|
|
|
/// <summary></summary>
|
|
int BorderWidth { get; }
|
|
|
|
/// <summary></summary>
|
|
event EventHandler PropertiesChanged;
|
|
}
|
|
} |