2017-03-01 20:52:15 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace Be.Windows.Forms
|
|
|
|
|
{
|
|
|
|
|
public interface IByteColorProvider
|
|
|
|
|
{
|
|
|
|
|
void Prepare(long firstByteIndex, long lastByteIndex);
|
2017-12-26 17:33:46 -05:00
|
|
|
|
Color GetByteColor(long firstByteIndex, long byteIndex, out Color bgColor);
|
2017-03-01 20:52:15 -05:00
|
|
|
|
}
|
|
|
|
|
}
|