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:
24
ProgressODoom/IProgressPainter.cs
Normal file
24
ProgressODoom/IProgressPainter.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
namespace ProgressODoom {
|
||||
/// <summary></summary>
|
||||
public interface IProgressPainter : IDisposable {
|
||||
/// <summary></summary>
|
||||
IGlossPainter GlossPainter { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
IProgressBorderPainter ProgressBorderPainter { get; set; }
|
||||
|
||||
/// <summary></summary>
|
||||
/// <param name="box"></param>
|
||||
/// <param name="gr"></param>
|
||||
void PaintProgress(Rectangle box, Graphics gr);
|
||||
|
||||
/// <summary></summary>
|
||||
void Resize(Rectangle box);
|
||||
|
||||
/// <summary></summary>
|
||||
event EventHandler PropertiesChanged;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user