summaryrefslogtreecommitdiff
path: root/ElmSharp/Interop
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-01-18 13:57:40 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-01-18 13:57:40 +0900
commitd83c2f5c3037a5cf1319b81e96e53fe3822634fb (patch)
treeaba3a8857b463557e1de55bef446967f526805a3 /ElmSharp/Interop
parentdfabf1f8019a5fdbcf3c4d25eff194579f1507a6 (diff)
downloadelm-sharp-d83c2f5c3037a5cf1319b81e96e53fe3822634fb.tar.gz
elm-sharp-d83c2f5c3037a5cf1319b81e96e53fe3822634fb.tar.bz2
elm-sharp-d83c2f5c3037a5cf1319b81e96e53fe3822634fb.zip
Add Entry.SelectAll() and Entry.SelectNone()
Change-Id: I3cc2ec2e7ee3c5b19d0c4fa0ee3e058c82d4a9e5
Diffstat (limited to 'ElmSharp/Interop')
-rw-r--r--ElmSharp/Interop/Interop.Elementary.Entry.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/ElmSharp/Interop/Interop.Elementary.Entry.cs b/ElmSharp/Interop/Interop.Elementary.Entry.cs
index 7040df7..22108af 100644
--- a/ElmSharp/Interop/Interop.Elementary.Entry.cs
+++ b/ElmSharp/Interop/Interop.Elementary.Entry.cs
@@ -142,6 +142,11 @@ internal static partial class Interop
[DllImport(Libraries.Elementary)]
internal static extern InputPanelLayout elm_entry_input_panel_layout_get(IntPtr obj);
+ [DllImport(Libraries.Elementary)]
+ internal static extern void elm_entry_select_all(IntPtr obj);
+
+ [DllImport(Libraries.Elementary)]
+ internal static extern void elm_entry_select_none(IntPtr obj);
[DllImport(Libraries.Elementary)]
internal static extern void elm_entry_text_style_user_pop(IntPtr obj);