mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUERipper revamp
This commit is contained in:
21
ProgressODoom/IProgressBorderPainter.cs
Normal file
21
ProgressODoom/IProgressBorderPainter.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user