summaryrefslogtreecommitdiff
path: root/ElmSharp/ElmSharp/Window.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ElmSharp/ElmSharp/Window.cs')
-rw-r--r--ElmSharp/ElmSharp/Window.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/ElmSharp/ElmSharp/Window.cs b/ElmSharp/ElmSharp/Window.cs
index 3409b2d..be5a376 100644
--- a/ElmSharp/ElmSharp/Window.cs
+++ b/ElmSharp/ElmSharp/Window.cs
@@ -149,6 +149,30 @@ namespace ElmSharp
}
}
+ public bool Alpha
+ {
+ get
+ {
+ return Interop.Elementary.elm_win_alpha_get(Handle);
+ }
+ set
+ {
+ Interop.Elementary.elm_win_alpha_set(Handle, value);
+ }
+ }
+
+ public string Role
+ {
+ get
+ {
+ return Interop.Elementary.elm_win_role_get(Handle);
+ }
+ set
+ {
+ Interop.Elementary.elm_win_role_set(Handle, value);
+ }
+ }
+
public StatusBarMode StatusBarMode
{
get