aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/AppearanceManager.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-06 20:15:22 -0500
committerMichael <[email protected]>2017-02-06 20:15:22 -0500
commit82de84638ab857512181d5ed4ad0b5010bca1213 (patch)
treed8fa96a1e185200c15f136b3dbb903a85b89221f /ShiftOS_TheReturn/AppearanceManager.cs
parentaa9234c68130018f4ee3dbb40f54758536e9d101 (diff)
downloadshiftos_thereturn-82de84638ab857512181d5ed4ad0b5010bca1213.tar.gz
shiftos_thereturn-82de84638ab857512181d5ed4ad0b5010bca1213.tar.bz2
shiftos_thereturn-82de84638ab857512181d5ed4ad0b5010bca1213.zip
Icon backend :D
Diffstat (limited to 'ShiftOS_TheReturn/AppearanceManager.cs')
-rw-r--r--ShiftOS_TheReturn/AppearanceManager.cs7
1 files changed, 7 insertions, 0 deletions
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<Type> GetAllWindowTypes()
{
List<Type> types = new List<Type>();
@@ -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