Remvode unused config.ini

Made the create folder window have the text box selected so you can type right away.
Asking for more library stuff by index.

Small work on HTML widget
This commit is contained in:
Lars Brubaker 2015-07-22 18:30:22 -07:00
parent 3458d4ba68
commit 53f7ba8579
15 changed files with 81 additions and 151 deletions

View file

@ -109,11 +109,12 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
public abstract Task<PrintItemWrapper> GetPrintItemWrapperAsync(int itemIndex, ReportProgressRatio reportProgress = null);
public abstract LibraryProvider GetProviderForItem(PrintItemCollection collection);
// TODO: make this asnyc
public abstract LibraryProvider GetProviderForCollection(PrintItemCollection collection);
public abstract void RemoveCollection(PrintItemCollection collectionToRemove);
public abstract void RemoveCollection(int collectionIndexToRemove);
public abstract void RemoveItem(PrintItemWrapper printItemWrapper);
public abstract void RemoveItem(int itemIndexToRemove);
public abstract void SaveToLibrary(PrintItemWrapper printItemWrapper, List<MeshGroup> meshGroupsToSave, List<ProviderLocatorNode> providerSavePath = null);