Thumbnail management code cleanup
This commit is contained in:
21
Eve-O-Preview/Presentation/IThumbnailManager.cs
Normal file
21
Eve-O-Preview/Presentation/IThumbnailManager.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
|
||||
namespace EveOPreview.UI
|
||||
{
|
||||
public interface IThumbnailManager
|
||||
{
|
||||
void Activate();
|
||||
|
||||
void SetThumbnailState(IntPtr thumbnailId, bool hideAlways);
|
||||
void SetThumbnailsSize(Size size);
|
||||
void RefreshThumbnails();
|
||||
void SetupThumbnailFrames();
|
||||
|
||||
event Action<IList<IThumbnailView>> ThumbnailsAdded;
|
||||
event Action<IList<IThumbnailView>> ThumbnailsUpdated;
|
||||
event Action<IList<IThumbnailView>> ThumbnailsRemoved;
|
||||
event Action<Size> ThumbnailSizeChanged;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user