From 82de84638ab857512181d5ed4ad0b5010bca1213 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 6 Feb 2017 20:15:22 -0500 Subject: Icon backend :D --- ShiftOS_TheReturn/AppearanceManager.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ShiftOS_TheReturn/AppearanceManager.cs') diff --git a/ShiftOS_TheReturn/AppearanceManager.cs b/ShiftOS_TheReturn/AppearanceManager.cs index 112bca5..dc88092 100644 --- a/ShiftOS_TheReturn/AppearanceManager.cs +++ b/ShiftOS_TheReturn/AppearanceManager.cs @@ -76,6 +76,11 @@ namespace ShiftOS.Engine } } + public static void SetWindowTitle(IShiftOSWindow window, string title) + { + winmgr.SetTitle(window, title); + } + public static IEnumerable GetAllWindowTypes() { List types = new List(); @@ -231,6 +236,8 @@ namespace ShiftOS.Engine public abstract void SetupDialog(IShiftOSWindow win); public abstract void InvokeAction(Action act); + + public abstract void SetTitle(IShiftOSWindow win, string title); } public interface IWindowBorder -- cgit v1.2.3