add Pilz.UI & Pilz.UI.Gtk

This commit is contained in:
2025-06-16 12:19:28 +02:00
parent 299867a910
commit 6f7bb5d92c
14 changed files with 175 additions and 32 deletions

View File

@@ -1,12 +1,10 @@
using System.Reflection;
using Pilz.UI.Symbols;
using System.Reflection;
namespace Pilz.UI.WinForms.Symbols;
public interface ISymbolFactory<TSymbols>
public interface ISymbolFactory<TSymbols> : IBaseSymbolFactory<TSymbols>
{
Image? GetImage(TSymbols svgImage, Size size);
Image? GetImage(TSymbols svgImage, SymbolSize size);
Assembly GetImageResourceAssembly();
string GetImageRessourcePath(TSymbols svgImage);
Stream? GetImageRessourceStream(TSymbols svgImage);
}