summaryrefslogtreecommitdiff
path: root/ElmSharp/Interop
diff options
context:
space:
mode:
authorchungryeol lim <cdark.lim@samsung.com>2016-12-16 14:54:29 +0900
committerchungryeol lim <cdark.lim@samsung.com>2016-12-26 21:44:51 +0900
commit25256d3af9366a33b82553a58dfb3b1da868d412 (patch)
tree2da10adfd853e3e2cc590db28ad1fc29d9f97593 /ElmSharp/Interop
parent61f9eb3847a0b33a00ef790745173d49d02bd389 (diff)
downloadelm-sharp-25256d3af9366a33b82553a58dfb3b1da868d412.tar.gz
elm-sharp-25256d3af9366a33b82553a58dfb3b1da868d412.tar.bz2
elm-sharp-25256d3af9366a33b82553a58dfb3b1da868d412.zip
Add NaviItem.TitleBarBackgroundColor property
Change-Id: Ic444c2b7fda2c03de81e341604cac9f3ff65ad21 Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
Diffstat (limited to 'ElmSharp/Interop')
-rwxr-xr-xElmSharp/Interop/Interop.Elementary.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/ElmSharp/Interop/Interop.Elementary.cs b/ElmSharp/Interop/Interop.Elementary.cs
index c96a471..4488d14 100755
--- a/ElmSharp/Interop/Interop.Elementary.cs
+++ b/ElmSharp/Interop/Interop.Elementary.cs
@@ -173,6 +173,15 @@ internal static partial class Interop
}
[DllImport(Libraries.Elementary)]
+ internal static extern void elm_object_item_color_class_color_set(IntPtr it, string part, int r, int g, int b, int a);
+
+ [DllImport(Libraries.Elementary)]
+ internal static extern void elm_object_item_color_class_color_get(IntPtr obj, string part, out int r, out int g, out int b, out int a);
+
+ [DllImport(Libraries.Elementary)]
+ internal static extern void elm_object_item_color_class_del(IntPtr obj, string part);
+
+ [DllImport(Libraries.Elementary)]
internal static extern void elm_object_item_part_text_set(IntPtr obj, string part, string label);
[DllImport(Libraries.Elementary)]