Extract embedded types to new files

This commit is contained in:
John Lewin 2017-09-28 11:30:20 -07:00
parent 7c56aeb483
commit 8e1e4af595
6 changed files with 116 additions and 48 deletions

View file

@ -31,7 +31,6 @@ using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using MatterHackers.Agg.Image;
using MatterHackers.Agg.UI;
namespace MatterHackers.MatterControl.Library
{
@ -68,4 +67,12 @@ namespace MatterHackers.MatterControl.Library
void SetThumbnail(ILibraryItem item, int width, int height, ImageBuffer imageBuffer);
bool AllowAction(ContainerActions containerActions);
}
public enum ContainerActions
{
AddItems,
AddContainers,
RenameItems,
RemoveItems
}
}