From 9f249678db74fff7ebe77a207b9e6047cfa620c6 Mon Sep 17 00:00:00 2001 From: "yh106.jung" Date: Fri, 17 Feb 2017 13:12:56 +0900 Subject: [PATCH] Introduce Tizen.WebView This patch introduces Tizen.WebView project. Plus, Tizen.WebView.Test project is included in order to test basic functionality of Tizen.WebView. Change-Id: I79b01c2c18817f399f83a3e56cc5cd8ceae3322f Signed-off-by: yh106.jung --- .gitignore | 8 + LICENSE | 202 ++++++++++++ packaging/csapi-webview.manifest | 5 + packaging/csapi-webview.spec | 44 +++ .../Interop/Interop.ChromiumEwk.Context.cs | 41 +++ .../Interop/Interop.ChromiumEwk.CookieManager.cs | 46 +++ .../Interop/Interop.ChromiumEwk.Error.cs | 49 +++ .../Interop/Interop.ChromiumEwk.Settings.cs | 60 ++++ .../Interop/Interop.ChromiumEwk.View.cs | 127 ++++++++ src/Tizen.WebView/Interop/Interop.ChromiumEwk.cs | 29 ++ src/Tizen.WebView/Interop/Interop.Elementary.cs | 37 +++ src/Tizen.WebView/Interop/Interop.Evas.cs | 27 ++ src/Tizen.WebView/Interop/Interop.Libraries.cs | 24 ++ src/Tizen.WebView/Properties/AssemblyInfo.cs | 36 +++ src/Tizen.WebView/Tizen.WebView.csproj | 99 ++++++ src/Tizen.WebView/Tizen.WebView.nuspec | 19 ++ src/Tizen.WebView/Tizen.WebView.project.json | 9 + src/Tizen.WebView/Tizen.WebView.snk | Bin 0 -> 596 bytes src/Tizen.WebView/Tizen.WebView/Chromium.cs | 39 +++ src/Tizen.WebView/Tizen.WebView/Context.cs | 78 +++++ src/Tizen.WebView/Tizen.WebView/CookieManager.cs | 82 +++++ .../Tizen.WebView/JavaScriptMessage.cs | 104 +++++++ src/Tizen.WebView/Tizen.WebView/Settings.cs | 94 ++++++ .../Tizen.WebView/SmartCallbackArgs.cs | 93 ++++++ .../Tizen.WebView/SmartCallbackLoadErrorArgs.cs | 150 +++++++++ src/Tizen.WebView/Tizen.WebView/WebView.cs | 342 +++++++++++++++++++++ test/Tizen.WebView.Test/Properties/AssemblyInfo.cs | 36 +++ test/Tizen.WebView.Test/SimpleWebviewApp.cs | 278 +++++++++++++++++ test/Tizen.WebView.Test/Tizen.WebView.Test.csproj | 98 ++++++ .../Tizen.WebView.Test.project.json | 14 + .../shared/res/Tizen.WebView.Test.png | Bin 0 -> 57662 bytes test/Tizen.WebView.Test/tizen-manifest.xml | 19 ++ 32 files changed, 2289 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 packaging/csapi-webview.manifest create mode 100644 packaging/csapi-webview.spec create mode 100644 src/Tizen.WebView/Interop/Interop.ChromiumEwk.Context.cs create mode 100644 src/Tizen.WebView/Interop/Interop.ChromiumEwk.CookieManager.cs create mode 100644 src/Tizen.WebView/Interop/Interop.ChromiumEwk.Error.cs create mode 100644 src/Tizen.WebView/Interop/Interop.ChromiumEwk.Settings.cs create mode 100644 src/Tizen.WebView/Interop/Interop.ChromiumEwk.View.cs create mode 100644 src/Tizen.WebView/Interop/Interop.ChromiumEwk.cs create mode 100644 src/Tizen.WebView/Interop/Interop.Elementary.cs create mode 100644 src/Tizen.WebView/Interop/Interop.Evas.cs create mode 100644 src/Tizen.WebView/Interop/Interop.Libraries.cs create mode 100644 src/Tizen.WebView/Properties/AssemblyInfo.cs create mode 100755 src/Tizen.WebView/Tizen.WebView.csproj create mode 100644 src/Tizen.WebView/Tizen.WebView.nuspec create mode 100644 src/Tizen.WebView/Tizen.WebView.project.json create mode 100644 src/Tizen.WebView/Tizen.WebView.snk create mode 100644 src/Tizen.WebView/Tizen.WebView/Chromium.cs create mode 100644 src/Tizen.WebView/Tizen.WebView/Context.cs create mode 100644 src/Tizen.WebView/Tizen.WebView/CookieManager.cs create mode 100644 src/Tizen.WebView/Tizen.WebView/JavaScriptMessage.cs create mode 100644 src/Tizen.WebView/Tizen.WebView/Settings.cs create mode 100644 src/Tizen.WebView/Tizen.WebView/SmartCallbackArgs.cs create mode 100644 src/Tizen.WebView/Tizen.WebView/SmartCallbackLoadErrorArgs.cs create mode 100644 src/Tizen.WebView/Tizen.WebView/WebView.cs create mode 100644 test/Tizen.WebView.Test/Properties/AssemblyInfo.cs create mode 100644 test/Tizen.WebView.Test/SimpleWebviewApp.cs create mode 100755 test/Tizen.WebView.Test/Tizen.WebView.Test.csproj create mode 100644 test/Tizen.WebView.Test/Tizen.WebView.Test.project.json create mode 100644 test/Tizen.WebView.Test/shared/res/Tizen.WebView.Test.png create mode 100644 test/Tizen.WebView.Test/tizen-manifest.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f944396 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +bin/ +obj/ +*.exe +*.dll +*.csproj.user +*.lock.json +.vs/ +*sln diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/packaging/csapi-webview.manifest b/packaging/csapi-webview.manifest new file mode 100644 index 0000000..75b0fa5 --- /dev/null +++ b/packaging/csapi-webview.manifest @@ -0,0 +1,5 @@ + + + + + diff --git a/packaging/csapi-webview.spec b/packaging/csapi-webview.spec new file mode 100644 index 0000000..d655061 --- /dev/null +++ b/packaging/csapi-webview.spec @@ -0,0 +1,44 @@ +Name: csapi-webview +Summary: Tizen WebView API for C# +Version: 1.0.0 +Release: 1 +Group: Development/Libraries +License: Apache-2.0 +URL: https://www.tizen.org +Source0: %{name}-%{version}.tar.gz +Source1: %{name}.manifest + +AutoReqProv: no +ExcludeArch: aarch64 + +BuildRequires: dotnet-build-tools + +# C# API Requires +BuildRequires: elm-sharp-nuget + +%define Assemblies Tizen.WebView + +%description +%{summary} + +%dotnet_import_sub_packages + +%prep +%setup -q +cp %{SOURCE1} . + +%build +for ASM in %{Assemblies}; do +%dotnet_build $ASM +%dotnet_pack $ASM/$ASM.nuspec %{version} +done + +%install +for ASM in %{Assemblies}; do +%dotnet_install $ASM +done + +%files +%manifest %{name}.manifest +%license LICENSE +%attr(644,root,root) %{dotnet_assembly_files} diff --git a/src/Tizen.WebView/Interop/Interop.ChromiumEwk.Context.cs b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.Context.cs new file mode 100644 index 0000000..e073823 --- /dev/null +++ b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.Context.cs @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; + +internal static partial class Interop +{ + internal static partial class ChromiumEwk + { + public enum CacheModel + { + DocumentViewer, + DocumentBrowser, + PrimaryWebBrowser + } + + [DllImport(Libraries.ChromiumEwk)] + internal static extern IntPtr ewk_context_cookie_manager_get(IntPtr context); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_context_cache_model_set(IntPtr context, CacheModel model); + + [DllImport(Libraries.ChromiumEwk)] + internal static extern CacheModel ewk_context_cache_model_get(IntPtr context); + } +} diff --git a/src/Tizen.WebView/Interop/Interop.ChromiumEwk.CookieManager.cs b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.CookieManager.cs new file mode 100644 index 0000000..2c90553 --- /dev/null +++ b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.CookieManager.cs @@ -0,0 +1,46 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; + +internal static partial class Interop +{ + internal static partial class ChromiumEwk + { + public enum CookieAcceptPolicy + { + Always, + Never, + NoThirdParty + } + + public enum CookiePersistentStorage + { + Text, + SqlLite + } + + [DllImport(Libraries.ChromiumEwk)] + internal static extern void ewk_cookie_manager_accept_policy_set(IntPtr manager, CookieAcceptPolicy policy); + + [DllImport(Libraries.ChromiumEwk)] + internal static extern void ewk_cookie_manager_cookies_clear(IntPtr manager); + + [DllImport(Libraries.ChromiumEwk)] + internal static extern void ewk_cookie_manager_persistent_storage_set(IntPtr manager, string path, CookiePersistentStorage storage); + } +} diff --git a/src/Tizen.WebView/Interop/Interop.ChromiumEwk.Error.cs b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.Error.cs new file mode 100644 index 0000000..9234dc6 --- /dev/null +++ b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.Error.cs @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; + +internal static partial class Interop +{ + internal static partial class ChromiumEwk + { + [DllImport(Libraries.ChromiumEwk, EntryPoint = "ewk_error_url_get", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true, CharSet = CharSet.Ansi)] + internal static extern IntPtr _ewk_error_url_get(IntPtr error); + + internal static string ewk_error_url_get(IntPtr error) + { + IntPtr ptr = _ewk_error_url_get(error); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport(Libraries.ChromiumEwk)] + internal static extern int ewk_error_code_get(IntPtr error); + + [DllImport(Libraries.ChromiumEwk, EntryPoint = "ewk_error_description_get", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true, CharSet = CharSet.Ansi)] + internal static extern IntPtr _ewk_error_description_get(IntPtr error); + + internal static string ewk_error_description_get(IntPtr error) + { + IntPtr ptr = _ewk_error_description_get(error); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_error_cancellation_get(IntPtr error); + } +} diff --git a/src/Tizen.WebView/Interop/Interop.ChromiumEwk.Settings.cs b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.Settings.cs new file mode 100644 index 0000000..2acd268 --- /dev/null +++ b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.Settings.cs @@ -0,0 +1,60 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; + +internal static partial class Interop +{ + internal static partial class ChromiumEwk + { + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_settings_javascript_enabled_set(IntPtr settings, bool enable); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_settings_javascript_enabled_get(IntPtr settings); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_settings_loads_images_automatically_set(IntPtr settings, bool enable); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_settings_loads_images_automatically_get(IntPtr settings); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_settings_default_text_encoding_name_set(IntPtr settings, string encoding); + + [DllImport(Libraries.ChromiumEwk, EntryPoint = "ewk_settings_default_text_encoding_name_get", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true, CharSet = CharSet.Ansi)] + internal static extern IntPtr _ewk_settings_default_text_encoding_name_get(IntPtr settings); + + internal static string ewk_settings_default_text_encoding_name_get(IntPtr settings) + { + IntPtr ptr = _ewk_settings_default_text_encoding_name_get(settings); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_settings_default_font_size_set(IntPtr settings, int size); + + [DllImport(Libraries.ChromiumEwk)] + internal static extern int ewk_settings_default_font_size_get(IntPtr settings); + } +} diff --git a/src/Tizen.WebView/Interop/Interop.ChromiumEwk.View.cs b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.View.cs new file mode 100644 index 0000000..e507ca8 --- /dev/null +++ b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.View.cs @@ -0,0 +1,127 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; + +internal static partial class Interop +{ + internal static partial class ChromiumEwk + { + [DllImport(Libraries.ChromiumEwk)] + internal static extern IntPtr ewk_view_add(IntPtr evas); + + [DllImport(Libraries.ChromiumEwk)] + internal static extern IntPtr ewk_view_context_get(IntPtr obj); + + [DllImport(Libraries.ChromiumEwk)] + internal static extern IntPtr ewk_view_settings_get(IntPtr obj); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_url_set(IntPtr obj, string url); + + [DllImport(Libraries.ChromiumEwk, EntryPoint = "ewk_view_url_get", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true, CharSet = CharSet.Ansi)] + internal static extern IntPtr _ewk_view_url_get(IntPtr obj); + + internal static string ewk_view_url_get(IntPtr obj) + { + IntPtr ptr = _ewk_view_url_get(obj); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_html_string_load(IntPtr obj, string html, string baseUrl, string unreachableUrl); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_reload(IntPtr obj); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_stop(IntPtr obj); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_back(IntPtr obj); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_forward(IntPtr obj); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_back_possible(IntPtr obj); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_forward_possible(IntPtr obj); + + internal delegate void ScriptExcuteCallback(IntPtr obj, IntPtr resultValue, IntPtr userData); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_script_execute(IntPtr obj, string script, ScriptExcuteCallback callback, IntPtr userData); + + [DllImport(Libraries.ChromiumEwk, EntryPoint = "ewk_view_title_get", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true, CharSet = CharSet.Ansi)] + internal static extern IntPtr _ewk_view_title_get(IntPtr obj); + + internal static string ewk_view_title_get(IntPtr obj) + { + IntPtr ptr = _ewk_view_url_get(obj); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport(Libraries.ChromiumEwk, EntryPoint = "ewk_view_user_agent_get", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true, CharSet = CharSet.Ansi)] + internal static extern IntPtr _ewk_view_user_agent_get(IntPtr obj); + + internal static string ewk_view_user_agent_get(IntPtr obj) + { + IntPtr ptr = _ewk_view_user_agent_get(obj); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_user_agent_set(IntPtr obj, string userAgent); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_focus_set(IntPtr obj, bool focused); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_focus_get(IntPtr obj); + + [StructLayout(LayoutKind.Sequential, CharSet =CharSet.Ansi)] + internal struct ScriptMessage + { + public IntPtr name; + public IntPtr body; + } + + internal delegate void ScriptMessageCallback(IntPtr obj, ScriptMessage message); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_javascript_message_handler_add(IntPtr obj, ScriptMessageCallback callback, string name); + + [DllImport(Libraries.ChromiumEwk)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool ewk_view_evaluate_javascript(IntPtr obj, string name, string result); + } +} diff --git a/src/Tizen.WebView/Interop/Interop.ChromiumEwk.cs b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.cs new file mode 100644 index 0000000..47ca039 --- /dev/null +++ b/src/Tizen.WebView/Interop/Interop.ChromiumEwk.cs @@ -0,0 +1,29 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +using System; +using System.Runtime.InteropServices; + +internal static partial class Interop +{ + internal static partial class ChromiumEwk + { + [DllImport(Libraries.ChromiumEwk)] + internal static extern int ewk_init(); + + [DllImport(Libraries.ChromiumEwk)] + internal static extern int ewk_shutdown(); + } +} diff --git a/src/Tizen.WebView/Interop/Interop.Elementary.cs b/src/Tizen.WebView/Interop/Interop.Elementary.cs new file mode 100644 index 0000000..09b9bc4 --- /dev/null +++ b/src/Tizen.WebView/Interop/Interop.Elementary.cs @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; + +internal static partial class Interop +{ + internal static partial class Elementary + { + [DllImport(Libraries.Elementary)] + internal static extern IntPtr elm_layout_add(IntPtr obj); + + [DllImport(Libraries.Elementary)] + [return: MarshalAs(UnmanagedType.U1)] + internal static extern bool elm_layout_theme_set(IntPtr obj, string klass, string group, string style); + + [DllImport(Libraries.Elementary)] + internal static extern void elm_object_part_content_set(IntPtr obj, string part, IntPtr content); + + [DllImport(Libraries.Elementary)] + internal static extern void elm_object_focus_allow_set(IntPtr obj, bool enable); + } +} \ No newline at end of file diff --git a/src/Tizen.WebView/Interop/Interop.Evas.cs b/src/Tizen.WebView/Interop/Interop.Evas.cs new file mode 100644 index 0000000..a9e6d58 --- /dev/null +++ b/src/Tizen.WebView/Interop/Interop.Evas.cs @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; + +internal static partial class Interop +{ + internal static partial class Evas + { + [DllImport(Libraries.Evas)] + internal static extern IntPtr evas_object_evas_get(IntPtr obj); + } +} diff --git a/src/Tizen.WebView/Interop/Interop.Libraries.cs b/src/Tizen.WebView/Interop/Interop.Libraries.cs new file mode 100644 index 0000000..0d91a26 --- /dev/null +++ b/src/Tizen.WebView/Interop/Interop.Libraries.cs @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +internal static partial class Interop +{ + private static class Libraries + { + internal const string ChromiumEwk = "libchromium-ewk.so"; + internal const string Elementary = "libelementary.so.1"; + internal const string Evas = "libevas.so.1"; + } +} diff --git a/src/Tizen.WebView/Properties/AssemblyInfo.cs b/src/Tizen.WebView/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..75cc36c --- /dev/null +++ b/src/Tizen.WebView/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Tizen.WebView")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Samsung Electronics")] +[assembly: AssemblyProduct("Tizen.WebView")] +[assembly: AssemblyCopyright("Copyright © Samsung Electronics 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("8405e84f-b920-4aac-9ad5-001b9debc9ca")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/Tizen.WebView/Tizen.WebView.csproj b/src/Tizen.WebView/Tizen.WebView.csproj new file mode 100755 index 0000000..29df008 --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView.csproj @@ -0,0 +1,99 @@ + + + + 14.0 + Debug + AnyCPU + 8.0.30703 + 2.0 + {8405E84F-B920-4AAC-9AD5-001B9DEBC9CA} + Library + Properties + Tizen.WebView + Tizen.WebView + 512 + en-US + + + .NETStandard + v1.3 + .NETStandard,Version=v1.3 + false + true + $(NoWarn);1701 + false + + + true + full + true + bin\Debug\ + DEBUG;TRACE + prompt + 4 + ;1701;1702 + true + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + ;1701;1702 + true + true + + + true + + + Tizen.WebView.snk + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_TargetFrameworkDirectories>$(MSBuildThisFileDirectory) + <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory) + true + + diff --git a/src/Tizen.WebView/Tizen.WebView.nuspec b/src/Tizen.WebView/Tizen.WebView.nuspec new file mode 100644 index 0000000..a0bfe59 --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView.nuspec @@ -0,0 +1,19 @@ + + + + Tizen.WebView + $version$ + Samsung Electronics + https://www.apache.org/licenses/LICENSE-2.0 + https://developer.tizen.org/sites/default/files/images/tizen-pinwheel-on-light-rgb_64_64.png + false + Tizen WebView API for C# + © Samsung Electronics Co., Ltd All Rights Reserved + + + + + + + + diff --git a/src/Tizen.WebView/Tizen.WebView.project.json b/src/Tizen.WebView/Tizen.WebView.project.json new file mode 100644 index 0000000..389f3bf --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView.project.json @@ -0,0 +1,9 @@ +{ + "dependencies": { + "ElmSharp": "1.1.0-*", + "NETStandard.Library": "1.6.0" + }, + "frameworks": { + "netstandard1.3": {} + } +} diff --git a/src/Tizen.WebView/Tizen.WebView.snk b/src/Tizen.WebView/Tizen.WebView.snk new file mode 100644 index 0000000000000000000000000000000000000000..b54054389334025c812d74a36353a9a4ab63557d GIT binary patch literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50096kq}`5UmqF?Qoo@4HQd#I0T!(ToN3`jy zkyJR8uAZ!O>NsL8wf^WUZMhCJ$Vl`YN^<;6%FD`(yEkQjBGP=RWw)pq1^8 zFQBrSN8KBE(r@QuBgmBX=_CFy=+^3?T{Q;vF61qJ9J?q92x!Sc-99P={7OtabqC|>&lVxR)hhGI-hkQ&Bn_*EG z5Vm;A6f`MAl^P1x@SA~aX=C22)?;RjCcjvQSwS-OK%S@({VGFTJS9Ff@ zmD6pjdKt43B-ida6h#spk-R8|DE;B*>zfzEz;Dc(icY}AJZv!)XFhDd=iw?1m-p9< z7|O4KUo9m~D4Sj?YjdIuavQE52aH}37e-v=y^<^iSi3(5mR`u}32Gml{+H?0JJulx i-G@!~k)R8lnUw)C{#nuHN=5zKqJ*N^k-Ox63VJskAt8wX literal 0 HcmV?d00001 diff --git a/src/Tizen.WebView/Tizen.WebView/Chromium.cs b/src/Tizen.WebView/Tizen.WebView/Chromium.cs new file mode 100644 index 0000000..ab63379 --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView/Chromium.cs @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +namespace Tizen.WebView +{ + public static class Chromium + { + /// + /// Initializes Chromium's instance + /// + /// A reference count of Chromium's instance + public static int Initialize() + { + return Interop.ChromiumEwk.ewk_init(); + } + + /// + /// Decreases a reference count of WebKit's instance, possibly destroying it + /// + /// A reference count of Chromium's instance + public static int Shutdown() + { + return Interop.ChromiumEwk.ewk_shutdown(); + } + } +} diff --git a/src/Tizen.WebView/Tizen.WebView/Context.cs b/src/Tizen.WebView/Tizen.WebView/Context.cs new file mode 100644 index 0000000..0e1b5cc --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView/Context.cs @@ -0,0 +1,78 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; + +namespace Tizen.WebView +{ + /// + /// Enumeration that contains option for cache model. + /// + public enum CacheModel + { + DocumentViewer, /* Use the smallest cache capacity */ + DocumentBrowser, /* Use bigger cache capacity than DocumentBrowser */ + PrimaryWebBrowser /* Use the biggest cache capacity. */ + } + + public class Context + { + private IntPtr _handle; + private CookieManager _cookieManager; + + internal Context(IntPtr handle) + { + _handle = handle; + } + + /// + /// The cache model. + /// + /// + /// The default cache model is DocumentViewer. + /// + public CacheModel CacheModel + { + get + { + return (CacheModel)Interop.ChromiumEwk.ewk_context_cache_model_get(_handle); + } + + set + { + Interop.ChromiumEwk.ewk_context_cache_model_set(_handle, (Interop.ChromiumEwk.CacheModel)value); + } + } + + /// + /// Gets the CookieManager object for this context. + /// + /// The CookieManager object + public CookieManager GetCookieManager() + { + if (_cookieManager == null) + { + IntPtr cookieManagerHandle = Interop.ChromiumEwk.ewk_context_cookie_manager_get(_handle); + if (cookieManagerHandle == IntPtr.Zero) + { + return null; + } + _cookieManager = new CookieManager(cookieManagerHandle); + } + return _cookieManager; + } + } +} diff --git a/src/Tizen.WebView/Tizen.WebView/CookieManager.cs b/src/Tizen.WebView/Tizen.WebView/CookieManager.cs new file mode 100644 index 0000000..3728201 --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView/CookieManager.cs @@ -0,0 +1,82 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +using System; + +namespace Tizen.WebView +{ + /// + /// Enumeration that contains accept policies for the cookies. + /// + public enum CookieAcceptPolicy + { + Always, /* Accepts every cookie sent from any page */ + Never, /* Rejects all cookies */ + NoThirdParty /* Accepts only cookies set by the main document loaded */ + } + + /// + /// Enumeration that creates a type name for the storage of persistent cookies. + /// + public enum CookiePersistentStorage + { + Text, /* Cookies are stored in a text file in the Mozilla "cookies.txt" format */ + SqlLite /* Cookies are stored in a SQLite file in the current Mozilla format. */ + } + + public class CookieManager + { + private IntPtr _handle; + + internal CookieManager(IntPtr handle) + { + _handle = handle; + } + + /// + /// Sets the cookie acceptance policy. + /// + /// + /// By default, only cookies set by the main document loaded are accepted. + /// + /// The cookie acceptance policy + public void SetCookieAcceptPolicy(CookieAcceptPolicy policy) + { + Interop.ChromiumEwk.ewk_cookie_manager_accept_policy_set(_handle, (Interop.ChromiumEwk.CookieAcceptPolicy)policy); + } + + /// + /// Deletes all the cookies. + /// + public void ClearCookies() + { + Interop.ChromiumEwk.ewk_cookie_manager_cookies_clear(_handle); + } + + /// + /// Sets the storage where non-session cookies are stored persistently to read/write the cookies. + /// + /// + /// http://tizen.org/privilege/mediastorage + /// http://tizen.org/privilege/externalstorage + /// + /// The path where to read/write Cookies + /// The type of storage + public void SetPersistentStorage(string path, CookiePersistentStorage storage) + { + Interop.ChromiumEwk.ewk_cookie_manager_persistent_storage_set(_handle, path, (Interop.ChromiumEwk.CookiePersistentStorage)storage); + } + } +} diff --git a/src/Tizen.WebView/Tizen.WebView/JavaScriptMessage.cs b/src/Tizen.WebView/Tizen.WebView/JavaScriptMessage.cs new file mode 100644 index 0000000..3b9c555 --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView/JavaScriptMessage.cs @@ -0,0 +1,104 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; +using System.Text; + +namespace Tizen.WebView +{ + public delegate void JavaScriptMessageHandler(JavaScriptMessage message); + + /// + /// A Script message contains information that sent from JavaScript runtime. + /// + public class JavaScriptMessage + { + private string _name; + private IntPtr _body; + + internal JavaScriptMessage(Interop.ChromiumEwk.ScriptMessage message) + { + _name = Marshal.PtrToStringAnsi(message.name); + _body = message.body; + } + + /// + /// Obect name in JavaScript. + /// + public string Name + { + get + { + return _name; + } + } + + /// + /// Gets the value of body as integer type. + /// + /// The value of body as integer type + public int GetBodyAsInteger() + { + if (_body == IntPtr.Zero) + { + return 0; + } + return Marshal.ReadInt32(_body, 0); + } + + /// + /// Gets the value of body as double type. + /// + /// The value of body as double type + public double GetBodyAsDouble() + { + if (_body == IntPtr.Zero) + { + return 0d; + } + double[] ret = new double[1] ; + Marshal.Copy(_body, ret, 0, 1); + return ret[0]; + } + + /// + /// Gets the value of body as boolean type. + /// + /// The value of body as boolean type + public bool GetBodyAsBoolean() + { + if (_body == IntPtr.Zero) + { + return false; + } + return Marshal.ReadByte(_body) != (byte)0; + } + + /// + /// Gets the value of body as string type. + /// + /// The value of body as string type + public string GetBodyAsString() + { + if (_body == IntPtr.Zero) + { + return string.Empty; + } + return Marshal.PtrToStringAnsi(_body); + } + } +} diff --git a/src/Tizen.WebView/Tizen.WebView/Settings.cs b/src/Tizen.WebView/Tizen.WebView/Settings.cs new file mode 100644 index 0000000..083e773 --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView/Settings.cs @@ -0,0 +1,94 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; + +namespace Tizen.WebView +{ + public class Settings + { + private IntPtr _handle; + + internal Settings(IntPtr handle) + { + _handle = handle; + } + + /// + /// Whether JavaScript can be executable. + /// + public bool JavaScriptEnabled + { + get + { + return Interop.ChromiumEwk.ewk_settings_javascript_enabled_get(_handle); + } + + set + { + Interop.ChromiumEwk.ewk_settings_javascript_enabled_set(_handle, value); + } + } + + /// + /// Whether images can be loaded automatically. + /// + public bool LoadImageAutomatically + { + get + { + return Interop.ChromiumEwk.ewk_settings_loads_images_automatically_get(_handle); + } + + set + { + Interop.ChromiumEwk.ewk_settings_loads_images_automatically_set(_handle, value); + } + } + + /// + /// The default text encoding name. + /// + public string DefaultTextEncodingName + { + get + { + return Interop.ChromiumEwk.ewk_settings_default_text_encoding_name_get(_handle); + } + + set + { + Interop.ChromiumEwk.ewk_settings_default_text_encoding_name_set(_handle, value); + } + } + + /// + /// The default font size of a pixel. + /// + public int DefaultFontSize + { + get + { + return Interop.ChromiumEwk.ewk_settings_default_font_size_get(_handle); + } + + set + { + Interop.ChromiumEwk.ewk_settings_default_font_size_set(_handle, value); + } + } + } +} diff --git a/src/Tizen.WebView/Tizen.WebView/SmartCallbackArgs.cs b/src/Tizen.WebView/Tizen.WebView/SmartCallbackArgs.cs new file mode 100644 index 0000000..9da498f --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView/SmartCallbackArgs.cs @@ -0,0 +1,93 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; + +namespace Tizen.WebView +{ + /// + /// Argument from the SmartCallback. + /// + public class SmartCallbackArgs : EventArgs + { + private IntPtr _arg; + + internal SmartCallbackArgs(IntPtr arg) + { + _arg = arg; + } + + /// + /// Gets argument as integer type. + /// + /// Argument as integer type + public int GetAsInteger() + { + if (_arg == IntPtr.Zero) + { + return 0; + } + return Marshal.ReadInt32(_arg, 0); + } + + /// + /// Gets argument as double type. + /// + /// Argument as double type + public double GetAsDouble() + { + if (_arg == IntPtr.Zero) + { + return 0d; + } + double[] ret = new double[1]; + Marshal.Copy(_arg, ret, 0, 1); + return ret[0]; + } + + /// + /// Gets argument as boolean type. + /// + /// Argument as boolean type + public bool GetAsBoolean() + { + if (_arg == IntPtr.Zero) + { + return false; + } + return Marshal.ReadByte(_arg) != (byte)0; + } + + /// + /// Gets argument as string type. + /// + /// Argument as string type + public string GetAsString() + { + if (_arg == IntPtr.Zero) + { + return string.Empty; + } + return Marshal.PtrToStringAnsi(_arg); + } + + internal static SmartCallbackArgs CreateFromSmartEvent(IntPtr data, IntPtr obj, IntPtr info) + { + return new SmartCallbackArgs(info); + } + } +} diff --git a/src/Tizen.WebView/Tizen.WebView/SmartCallbackLoadErrorArgs.cs b/src/Tizen.WebView/Tizen.WebView/SmartCallbackLoadErrorArgs.cs new file mode 100644 index 0000000..8ade295 --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView/SmartCallbackLoadErrorArgs.cs @@ -0,0 +1,150 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Runtime.InteropServices; + +namespace Tizen.WebView +{ + /// + /// Enumeration that provides an option to error codes. + /// + public enum LoadErrorCode + { + /// + /// Unknown + /// + Unknown = 0, + /// + /// User canceled + /// + Canceled, + /// + /// Can't show page for this MIME Type + /// + CantSupportMimetype, + /// + /// File IO error + /// + FailedFileIo, + /// + /// Cannot connect to network + /// + CantConnect, + /// + /// Fail to look up host from DNS + /// + CantLookupHost, + /// + /// Fail to SSL/TLS handshake + /// + FailedTlsHandshake, + /// + /// Received certificate is invalid + /// + InvalidCertificate, + /// + /// Connection timeout + /// + RequestTimeout, + /// + /// Too many redirects + /// + TooManyRedirects, + /// + /// Too many requests during this load + /// + TooManyRequests, + /// + /// Malformed url + /// + BadUrl, + /// + /// Unsupported scheme + /// + UnsupportedScheme, + /// + /// User authentication failed on server + /// + Authentication, + /// + /// Web server has internal server error + /// + InternalServer, + } + + /// + /// Argument from the LoadError SmartCallback. + /// + public class SmartCallbackLoadErrorArgs : EventArgs + { + IntPtr _handle; + + internal SmartCallbackLoadErrorArgs(IntPtr handle) + { + _handle = handle; + } + + /// + /// Failing URL for the error. + /// + public string Url + { + get + { + return Interop.ChromiumEwk.ewk_error_url_get(_handle); + } + } + + /// + /// The error code. + /// + public LoadErrorCode Code + { + get + { + return (LoadErrorCode)Interop.ChromiumEwk.ewk_error_code_get(_handle); + } + } + + /// + /// The description for the error. + /// + public string Description + { + get + { + return Interop.ChromiumEwk.ewk_error_description_get(_handle); + } + } + + /// + /// Whether the error should be treated as a cancellation. + /// + public bool Cancellation + { + get + { + return Interop.ChromiumEwk.ewk_error_cancellation_get(_handle); + } + } + + internal static SmartCallbackLoadErrorArgs CreateFromSmartEvent(IntPtr data, IntPtr obj, IntPtr info) + { + return new SmartCallbackLoadErrorArgs(info); + } + } +} diff --git a/src/Tizen.WebView/Tizen.WebView/WebView.cs b/src/Tizen.WebView/Tizen.WebView/WebView.cs new file mode 100644 index 0000000..6b9e751 --- /dev/null +++ b/src/Tizen.WebView/Tizen.WebView/WebView.cs @@ -0,0 +1,342 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using ElmSharp; +using System; +using System.Collections.Generic; +using System.Runtime.InteropServices; + +namespace Tizen.WebView +{ + /// + /// A view used to render web contents. + /// + public class WebView: EvasObject + { + private static IDictionary _javaScriptMessageHandlerMap = new Dictionary(); + + private IntPtr _handle; + private IntPtr _realHandle; + private Context _context; + private Settings _settings; + + // focus dummy + private SmartEvent _focusIn; + private SmartEvent _focusOut; + + // Smart events + private SmartEvent _loadStarted; + private SmartEvent _loadFinished; + private SmartEvent _loadError; + private SmartEvent _titleChanged; + private SmartEvent _urlChanged; + + + + /// + /// Event that occurs when load started. + /// + public event EventHandler LoadStarted; + + /// + /// Event that occurs when load finished. + /// + public event EventHandler LoadFinished; + + /// + /// Event that occurs when load error. + /// + public event EventHandler LoadError; + + /// + /// Event that occurs when title of main frame was changed. + /// + public event EventHandler TitleChanged; + + /// + /// Event that occurs when URL of main frame was changed. + /// + public event EventHandler UrlChanged; + + /// + /// Current URL of the main frame. + /// + public string Url + { + get + { + return Interop.ChromiumEwk.ewk_view_url_get(_realHandle); + } + } + + /// + /// Current title of the main frame. + /// + public string Title + { + get + { + return Interop.ChromiumEwk.ewk_view_title_get(_realHandle); + } + } + + /// + /// Current user agent string of this view. + /// + public string UserAgent + { + get + { + return Interop.ChromiumEwk.ewk_view_user_agent_get(_realHandle); + } + + set + { + Interop.ChromiumEwk.ewk_view_user_agent_set(_realHandle, value); + } + } + + /// + /// Whether a view has the focus. + /// + public bool HasFocus + { + get + { + return Interop.ChromiumEwk.ewk_view_focus_get(_realHandle); + } + } + + /// + /// Create a WebView object. + /// + /// Parent object of WebView + public WebView(EvasObject parent) : base(parent) + { + InitializeSmartEvent(); + } + + /// + /// Gets the Context object of this view. + /// + /// The Context object of this view + public Context GetContext() + { + if (_context == null) + { + IntPtr contextHandle = Interop.ChromiumEwk.ewk_view_context_get(_realHandle); + if (contextHandle == IntPtr.Zero) + { + return null; + } + _context = new Context(contextHandle); + } + return _context; + } + + /// + /// Gets the Settings object of this view. + /// + /// The Settings object of this view + public Settings GetSettings() + { + if (_settings == null) + { + IntPtr settingsHandle = Interop.ChromiumEwk.ewk_view_settings_get(_realHandle); + if (settingsHandle == IntPtr.Zero) + { + return null; + } + _settings = new Settings(settingsHandle); + } + return _settings; + } + + /// + /// Asks the object to load the given URL. + /// + /// + /// You can only be sure that url changed after UrlChanged event. + /// + /// The uniform resource identifier to load + public void LoadUrl(string url) + { + Interop.ChromiumEwk.ewk_view_url_set(_realHandle, url); + } + + /// + /// Loads the specified html string as the content of the view. + /// + /// HTML data to load + /// Base URL used for relative paths to external objects + public void LoadHtml(string html, string baseUrl) + { + Interop.ChromiumEwk.ewk_view_html_string_load(_realHandle, html, baseUrl, null); + } + + /// + /// Asks the main frame to stop loading. + /// + public void StopLoading() + { + Interop.ChromiumEwk.ewk_view_stop(_realHandle); + } + + /// + /// Asks the main frame to reload the current document. + /// + public void Reload() + { + Interop.ChromiumEwk.ewk_view_reload(_realHandle); + } + + /// + /// Asks the main frame to navigate back in history. + /// + public void GoBack() + { + Interop.ChromiumEwk.ewk_view_back(_realHandle); + } + + /// + /// Asks the main frame to navigate forward in history. + /// + public void GoForward() + { + Interop.ChromiumEwk.ewk_view_forward(_realHandle); + } + + /// + /// Checks whether it is possible to navigate backwards one item in history. + /// + /// Whether it is possible to navigate backwards one item in history + public bool CanGoBack() + { + return Interop.ChromiumEwk.ewk_view_back_possible(_realHandle); + } + + /// + /// Checks whether it is possible to navigate forwards one item in history. + /// + /// Whether it is possible to navigate forwards one item in history + public bool CanGoForward() + { + return Interop.ChromiumEwk.ewk_view_forward_possible(_realHandle); + } + + /// + /// Injects the supplied javascript message handler into the view. + /// + /// The message callback + /// The name used to expose the object in JavaScript + /// 'true' on success, otherwise 'false' + public bool AddJavaScriptMessageHandler(string name, JavaScriptMessageHandler handler) + { + lock (_javaScriptMessageHandlerMap) + { + if (_javaScriptMessageHandlerMap.ContainsKey(name)) + { + return false; + } + _javaScriptMessageHandlerMap[name] = handler; + } + Interop.ChromiumEwk.ScriptMessageCallback callback = (handle, message) => + { + JavaScriptMessage convertedMessage = new JavaScriptMessage(message); + lock (_javaScriptMessageHandlerMap) + { + if (_javaScriptMessageHandlerMap.ContainsKey(convertedMessage.Name)) + { + _javaScriptMessageHandlerMap[convertedMessage.Name](convertedMessage); + } + } + }; + if (!Interop.ChromiumEwk.ewk_view_javascript_message_handler_add(_realHandle, callback, name)) + { + lock (_javaScriptMessageHandlerMap) + { + _javaScriptMessageHandlerMap.Remove(name); + return false; + } + } + return true; + } + + /// + /// Requests the execution of given name and result to the JavaScript runtime. + /// + /// The name used to expose the object in JavaScript + /// The result to the JavaScript runtime + public void EvalWithResult(string name, string result) + { + Interop.ChromiumEwk.ewk_view_evaluate_javascript(_realHandle, name, result); + } + + /// + /// Requests the execution of the given script. + /// + /// The JavaScript code string to execute + public void Eval(string script) + { + Interop.ChromiumEwk.ewk_view_script_execute(_realHandle, script, null, IntPtr.Zero); + } + + /// + /// Requests to set or unset a view as the currently focused one. + /// + /// 'true' to set the focus on the view, 'false' to remove the focus from the view + public void SetFocus(bool focused) + { + Interop.ChromiumEwk.ewk_view_focus_set(_realHandle, focused); + } + + protected override IntPtr CreateHandle(EvasObject parent) + { + // focus dummy + _handle = Interop.Elementary.elm_layout_add((IntPtr)parent); + Interop.Elementary.elm_layout_theme_set(_handle, "layout", "elm_widget", "default"); + Interop.Elementary.elm_object_focus_allow_set(_handle, true); + + IntPtr evas = Interop.Evas.evas_object_evas_get(parent); + _realHandle = Interop.ChromiumEwk.ewk_view_add(evas); + Interop.Elementary.elm_object_part_content_set(_handle, "elm.swallow.content", _realHandle); + + return _handle; + } + + private void InitializeSmartEvent() + { + // focus dummy + _focusIn = new SmartEvent(this, "focused"); + _focusOut = new SmartEvent(this, "unfocused"); + + _focusIn.On += (s, e) => { ((WebView)s).SetFocus(true); }; + _focusOut.On += (s, e) => { ((WebView)s).SetFocus(false); }; + + _loadStarted = new SmartEvent(this, _realHandle, "load,started"); + _loadFinished = new SmartEvent(this, _realHandle, "load,finished"); + _loadError = new SmartEvent(this, _realHandle, "load,error", SmartCallbackLoadErrorArgs.CreateFromSmartEvent); + _titleChanged = new SmartEvent(this, _realHandle, "title,changed", SmartCallbackArgs.CreateFromSmartEvent); + _urlChanged = new SmartEvent(this, _realHandle, "url,changed", SmartCallbackArgs.CreateFromSmartEvent); + + _loadStarted.On += (s, e) => { LoadStarted?.Invoke(this, EventArgs.Empty); }; + _loadFinished.On += (s, e) => { LoadFinished?.Invoke(this, EventArgs.Empty); }; + _loadError.On += (s, e) => { LoadError?.Invoke(this, e); }; + _titleChanged.On += (s, e) => { TitleChanged?.Invoke(this, e); }; + _urlChanged.On += (s, e) => { UrlChanged?.Invoke(this, e); }; + } + } +} diff --git a/test/Tizen.WebView.Test/Properties/AssemblyInfo.cs b/test/Tizen.WebView.Test/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..6200996 --- /dev/null +++ b/test/Tizen.WebView.Test/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Tizen.WebView.Test")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Samsung Electronics")] +[assembly: AssemblyProduct("Tizen.WebView.Test")] +[assembly: AssemblyCopyright("Copyright © Samsung Electronics 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("b57dafa3-b566-4ebf-a6f0-ecd2224a748d")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/test/Tizen.WebView.Test/SimpleWebviewApp.cs b/test/Tizen.WebView.Test/SimpleWebviewApp.cs new file mode 100644 index 0000000..ffa3eeb --- /dev/null +++ b/test/Tizen.WebView.Test/SimpleWebviewApp.cs @@ -0,0 +1,278 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using ElmSharp; +using Tizen.Applications; +using Tizen.WebView; + + +namespace Tizen.WebView.Test +{ + public class SimpleWebviewApp : CoreUIApplication + { + private const string LogTag = "WebViewApp"; + + private const string _windowName = "Simple WebView App"; + private const string _defaultUrl = "http://www.google.com"; + private WebView _webview; + private Entry _addressEntry; + private Button _reloadButton; + + public SimpleWebviewApp() + { + + } + + protected override void OnCreate() + { + base.OnCreate(); + Chromium.Initialize(); + // Create webview and toolbox + CreateUI(); + } + + protected override void OnTerminate() + { + Chromium.Shutdown(); + base.OnTerminate(); + } + + private void CreateUI() + { + // Create Window + Window window = new Window(_windowName); + window.Show(); + + // Create Box for main window + Box mainBox = CreateBaseUI(window); + + // Create top bar + Box topBar = CreateTopBar(window); + + // Create Webview + _webview = new WebView(window) + { + AlignmentX = -1, + AlignmentY = -1, + WeightX = 1, + WeightY = 1 + }; + _webview.Show(); + + // Create bottom bar + Box bottomBar = CreateBottomBar(window); + + mainBox.PackEnd(topBar); + mainBox.PackEnd(_webview); + mainBox.PackEnd(bottomBar); + + InitializeWebView(); + + // Load default URL + _webview.LoadUrl(_defaultUrl); + } + + private Box CreateBaseUI(Window window) + { + // Create Background + Background background = new Background(window) + { + AlignmentX = -1, + AlignmentY = -1, + WeightX = 1, + WeightY = 1, + Color = Color.White + }; + background.Show(); + window.AddResizeObject(background); + + // Create Conformant + Conformant conformant = new Conformant(window); + conformant.Show(); + + // Create Box for all contents + Box box = new Box(window) + { + AlignmentX = -1, + AlignmentY = -1, + WeightX = 1, + WeightY = 1 + }; + box.Show(); + conformant.SetContent(box); + + return box; + } + + private Box CreateTopBar(Window window) + { + // Create Box for address bar + Box topBar = new Box(window) + { + AlignmentX = -1, + AlignmentY = 0, + WeightX = 1, + WeightY = 0, + IsHorizontal = true + }; + topBar.Show(); + + // Create address entry + _addressEntry = new Entry(window) + { + AlignmentX = -1, + AlignmentY = -1, + WeightX = 1, + WeightY = 1, + IsSingleLine = true, + Scrollable = true, + Text = _defaultUrl + }; + _addressEntry.SetInputPanelLayout(InputPanelLayout.Url); + _addressEntry.Activated += (s, e) => + { + _webview.LoadUrl(((Entry)s).Text); + }; + _addressEntry.Show(); + + // Create reload button + _reloadButton = new Button(window) + { + AlignmentX = -1, + AlignmentY = -1, + WeightX = 0.3, + WeightY = 1, + Text = "Reload" + }; + _reloadButton.Clicked += (s, e) => + { + if (_reloadButton.Text.Equals("Reload")) + { + _webview.Reload(); + } + else if (_reloadButton.Text.Equals("Stop")) + { + _webview.StopLoading(); + } + }; + _reloadButton.Show(); + + topBar.PackEnd(_addressEntry); + topBar.PackEnd(_reloadButton); + + return topBar; + } + + private Box CreateBottomBar(Window window) + { + // Create Box for bottom bar + Box bottomBar = new Box(window) + { + AlignmentX = -1, + AlignmentY = 1, + WeightX = 1, + WeightY = 0, + IsHorizontal = true + }; + bottomBar.Show(); + + // Create back/forward buttons + Button backButton = new Button(window) + { + AlignmentX = -1, + AlignmentY = 0.5, + WeightX = 1, + WeightY = 1, + Text = "Back" + + }; + backButton.Clicked += (s, e) => + { + if (_webview.CanGoBack()) + _webview.GoBack(); + }; + backButton.Show(); + + Button forwardButton = new Button(window) + { + AlignmentX = -1, + AlignmentY = 0.5, + WeightX = 1, + WeightY = 1, + Text = "Forward" + + }; + forwardButton.Clicked += (s, e) => + { + if (_webview.CanGoForward()) + _webview.GoForward(); + }; + forwardButton.Show(); + + bottomBar.PackEnd(backButton); + bottomBar.PackEnd(forwardButton); + + return bottomBar; + } + + private void InitializeWebView() + { + _webview.LoadStarted += (s, e) => + { + Log.Info(LogTag, "Load started"); + _reloadButton.Text = "Stop"; + }; + + _webview.LoadFinished += (s, e) => + { + Log.Info(LogTag, "Load finished"); + _reloadButton.Text = "Reload"; + }; + + _webview.LoadError += (s, e) => + { + Log.Info(LogTag, "Load error(" + e.Code + "): " + e.Description); + }; + + _webview.UrlChanged += (s, e) => + { + Log.Info(LogTag, "Url changed: " + e.GetAsString()); + _addressEntry.Text = e.GetAsString(); + }; + + CookieManager cookieManager = _webview.GetContext().GetCookieManager(); + if (cookieManager != null) + { + cookieManager.SetCookieAcceptPolicy(CookieAcceptPolicy.Always); + cookieManager.SetPersistentStorage(DirectoryInfo.Data, CookiePersistentStorage.SqlLite); + } + } + + static void Main(string[] args) + { + Elementary.Initialize(); + Elementary.ThemeOverlay(); + + SimpleWebviewApp app = new Test.SimpleWebviewApp(); + app.Run(args); + } + } +} diff --git a/test/Tizen.WebView.Test/Tizen.WebView.Test.csproj b/test/Tizen.WebView.Test/Tizen.WebView.Test.csproj new file mode 100755 index 0000000..9a6ebb1 --- /dev/null +++ b/test/Tizen.WebView.Test/Tizen.WebView.Test.csproj @@ -0,0 +1,98 @@ + + + + 14.0 + Debug + AnyCPU + 8.0.30703 + 2.0 + {2F98DAC9-6F16-457B-AED7-D43CAC379341};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {B57DAFA3-B566-4EBF-A6F0-ECD2224A748D} + Exe + Properties + Tizen.WebView.Test + Tizen.WebView.Test + 512 + en-US + + + DNXCore + v5.0 + false + .NETCoreApp,Version=v1.0 + true + $(NoWarn);1701 + false + + + true + full + true + bin\Debug\ + DEBUG;TRACE + prompt + 4 + ;1701;1702 + true + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + true + ;1701;1702 + true + + + + + + + + + + + + + + + + + {8405e84f-b920-4aac-9ad5-001b9debc9ca} + Tizen.WebView + + + + + + + + <_TargetFrameworkDirectories>$(MSBuildThisFileDirectory) + <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory) + true + + + + + + + + + + + + diff --git a/test/Tizen.WebView.Test/Tizen.WebView.Test.project.json b/test/Tizen.WebView.Test/Tizen.WebView.Test.project.json new file mode 100644 index 0000000..8de2d93 --- /dev/null +++ b/test/Tizen.WebView.Test/Tizen.WebView.Test.project.json @@ -0,0 +1,14 @@ +{ + "dependencies": { + "ElmSharp": "1.1.0-*", + "Microsoft.NETCore.App": "1.0.0", + "Tizen": "1.0.2", + "Tizen.Applications": "1.2.0" + }, + "frameworks": { + "netcoreapp1.0": {} + }, + "runtimes": { + "win": {} + } +} diff --git a/test/Tizen.WebView.Test/shared/res/Tizen.WebView.Test.png b/test/Tizen.WebView.Test/shared/res/Tizen.WebView.Test.png new file mode 100644 index 0000000000000000000000000000000000000000..9765b1bda7e5bddf0925555ab204b887a873bf24 GIT binary patch literal 57662 zcmdU&2Y{Bv)wXAQhoyJerGpfaq9DE5J1S~atXN|Avn3kQ*!`l$D2ie%v3Ct9iU9$! zARxVWkS4wCvh_dLJny{>uV6_upZ~zTGjrz5nKS2}_RLfEz7vl>A}6zMrgJXms3ZHI zY~lal(^KvD>g2b^T99$|k!M`zTvj!Ff*bL4ZRavixU^rt6HmP4s_U=1?vksn&O54K zzr3rjz3Spie}9p4H!U1_%FscltgqRlVCl}j$J~4S-;TNJ8N(x+7h3`nl`#k2P&{pByWKUm|WHre-Q&QDvN|NLL>eBs{vzbanwhZioN zJGS84sb!<)^<4YLj*;(APaB_}{rHg`PwISo_N#pxR#|@M=aVL{SlzDou*{}cyWI5m zFU-HLv`K<1ysdlpgBp)d`cVb&Nq{W}Uo#k#HS@`5165LsT%de5} z>?1C(+C}&Fcb6RQ-k5&c{R7 zy7#VDF8L2`$QMnT+~ofJq^mw~`{~`c9rRZ2+SX>NC*SKnrfJs!!_G=?drjKur?+d^ za@tX~4yxYeyu|ZH^lmrd<|peMGOSbO`OD}^=eFH2 zF15Vz`RA`HTQmLjt9v`Q;`-ZWl(lL9e%;#-Prdz$vgey^PQK)vtY`nH;DL+ZtK55( zdv^W8(|25rZ3aB|@R$V))~sGV|L945&pPj`({C*sI^o>$rQvN1Z=raO>);PO5s%U;2-D zaK|ApHomX#Ut4|FY-ag|E0?t?PU^X=vwP>Vo(X?=r0pwbUy!u>m=?K%uOGj%z`5-o zU-jwimgz~iUvlS)={J^d=~a5fv(4P?7a#T4Yn(f$f75n@zIwmc=jqP%e|A{wcly-Z z`DyJo<5TN@nzH!Qtdb#J{@l0eqzQd<`(|Evd;M#Nw0h%?zAf*b`c8w^L)y>o-JsL> zlP9wA`t1$o5 zBa^E>&@}JMd#j(+_?SmJAKBsL`v>KndSrv`J+4jcde83$e)P!UU${f=D7ky=5gqMx?DE{&Z(hHo^1_FD_WS(c z@#|`*b)5A3gWFA>*!SJT+GIR>!IXC!zmfg=7-QI$QDYM*~dhkFJe z*`~?dst;9bpZkY<`%OBuY1RAs9nxaV!-+?|`;S30tIixa^U9N(tZ(z`Q=N{i+vL$N z7hZVzdud(&)+Xtyw@>iD~U1v@1noes{ zFM8sTKBvAg;^ZZ-JU6IH=ZDVh`{r|_Pk#HPdtRy5>3>FaoqA`@qmFs;&F3GRRriuw zmlRz3_PXmosH)iMDUE|Kr?;YB*&QrD1Y7eb*W9_$} zIQFGFvmU7P`JjUj?XdBQwNF-l@~Tq@w;tX4k2N0oD)X_UA8Y(m{mP8syjtLL0@>std)?Rd(nS2Jcm{`#q}jXZJVDfLbn`s(4Y-1FMdSFRe=>mRqB zQF>qM85574ctXE_ob>Fw=dKz%IWOyiI`7}qCjauB*YEzHVVx&6e|PGFKi<&#<0ncR zeEdL<*Is?DYrl?1cRc<5lXv{>;$CU1p17v)>FbZrSljaD;X7`-e`)nCtyZ?G_fn^0 z$8@;pcbC8R`0&REzkcNFC%t~e#!tGuwdv)NFMTrL<1>nfRqFHk(Jg-0;)tOSO-mWM z_LK#uEO|Ne<(kL!=(g*vcCTIjV!h`+?tkOBD_`FH#54ao=k{lgz3SzqH-ECWsQ#_( zO9z!+QS|bzBeDmlzMtJRby4=T+TB0ve9cwe8?^s?(YBNNojtL4zZcJY?7ZPC{`|<8 z8Qou)Gw^>0R(|l($-i6Gbk!A;ubBKo^VH_~&5t>5!*QEOoP6Avms-7a__2o{`}x$b zr#?S*?vtIL>d|4|A#0yn`_#OrmVGef%$v?^Gy0X$A6|6Sd#lfU>5R>z$6k5YnO)C# zaqy{Up8fv7H%GqNZ0^Tze*AKkm&Y9c=<%;VGk563ceaiGa`dYo)Olyk{M1EnjlN>^ zt>+Crzt+$XK6`88=0`ty^wy7V{om3aX*u^SsPuY+GaKA?-9N9b-tDw*OGiw5dULN^ zKim2E`u0NyPtTn`zvHUW)uyzXbm_=bo|<*U&{{*sTzBV=dmp&(m^-Gl8{V_sQ}re< z`Qnq+M_<3|nzL8jGIQ6+r`~^R!lqXiy}h~1=1Vu_SwSx1u)atpr=e2)d)pJ$% zLzf=1^o(=AK6LyCUwkm-go#%@bM9Ts`u(X%`Gw`Tl+SQ4-`*@?XwrSd`V2cOvAFP- zKjx47ORsK=F53Oxf=zuMe0EHq8hswR*juwcHXz=JuvaM>=t+3bJyv2_xj7#_YST*qr>pdH_lkx@499Ei~2v_f9X?0JDkw< z?Y2jEZr$^>c9(Tuc<4u+KI%2O-Nk2oJ!kO9!AJf6nEGAYwSKG1mB0VjvXV_Z?pZl< zW!9=c)Ow=*7iV96^K;WC?7Zvcny3_{09TwNGyAS86`kY(vBH+}v7SBoA#^yw{s zFW*#kLe&+29sT0n$DH1_!QgK{dE>IK?{&ZC=0%ySYNQ-=_i3qbbpP=F(XFqTbHeMJ zP9Of(ZJ#v1<+#g-o%88ecYHc3;qr}Hr)I9X>(-5n=WROsgu(64ST^dsqPs`d>sjNz z``@a*sMhcrf12NN@l9*$-E-AfnL*e;B*F(|2*KGPcX=YMsT9Znn=Z%>?r@_n~gHC>E?m-)msPuWGf0d2ga%0<^E;*=WtUaHYRgBt*RPm4p!|WghmSpc+V8f1c>VVG7Okmv`iG~Fc)Q!VS8TX`L-(>r zXPxl*$4`Ge;;k{iyL`;%TRs`}hl>l=*L&vBX-jr~a`U#D<#Xpe)3wKvPj=jLRl#Qk zyOz~la@(~nN~cZvc)^V=HorOcgt6!D?7gYaf__WxnbYg6vc>baEdJAF<8OR+$Be~C z6r|pD=k&5ic0E+NU&=#IJ~ZX-oVzzZb6C%=U03$Hwsd{T%l)QbIKBBZwaT6^oAOqz zn(c2ZoU?J>v>8v#cy9Ri;g62H;*T$uZWzC@&fAM7Png{BUtiwTvBNn#Pb=Q^>5YqT zY_R2pWtC4@{l~mNwJg76&%3)$`R3)~N9#QLXnAtd6FW*S=-76V?Kkr-IP&D4Mz_yQf&Wh47dMTpt?0I)agY+wM0#Qez+jqzAB7t5&&n>(x6tB{`*gQc}_( ziHV8LQd3hiGcqzOS@QdeADY`(-57430* z_7u6o!a`S2P+;kz-Nv`bc&3$`b6HuL9-!U3cY8qg>;arT9xMaH;jz7d3;|9~ zPIh=YKw4T_h0n~)^c`UPjva3IuHBAs`}Xa{CTn(SNy)fv+qORc#TQ>Nl1t1p;{Q*l z>fbb|rktkMl&J`)CsmG_KrnRVAB{!jJ)v7K#JKK+>UAuNU{0=iXz~LB` zfXAqm3)93y2VY1F1KC8UvH*HKj+-p1rfOvaYdF*}F=WDk;^fRdY7CnlZOBTHMZ^JN>j74-RR8 z5`ro|(ZnNq7>b8!Su-mJBM!(pIXSL!<;pHMH`nyo<-Xgr$!*!P*|04dZyoHRi4!J_ zH+jY88NL6tsrferY6xcEe*Mn0Dey|$@U*K{tEOXA0^%k!+_r7oDhw+SFmk*TV1(o| zas|}>8g5{C5n&$u;1SA#DdZuK5nR1`br1BW&70l&^&6Zm0W%8=3jX@ZCu3i-BL6jT zL*0CX(D%RCseGNLgr?b)zWw?SPEAX_!PdxD_3G7iSvJjW*s#HEHbY@NbPJUhND4#U z#YY~Vv}kH9p~^}=BQu`v3HBqNP>$-9{2DcCcz~Inzg@eIX?p&iJ%#s;{rKZoOa$Qm zs?&0)oAmy#f@%t|;HC8H-Mg!e$_KKtvpY3xP~Wk8UAuOz2NRuhb>QUL}A zf*pW}<8hi&mFJ1}gW&}xG?iBks8y?$v!=S$tJk>o8#b)B9o4O4$A0|0@&2NtHr^)a@~eSrmHE-xq)C%X&0Dm1 zDl;?dr2PE61iRLAD_5@ch6_g+29cAopot#R5G}gO5W>USrfHKf_t+sWvuPW*@ui1d z*`~GrdenBo?cCDl7S<|A2v4T4ToK=jG?KLtHR_z6VrgX$xMXiZ}{}MuwM>fX6_}qm0TyXR2jgCJt|T z%R^nI8%DUq{5Gz{4tI-7t)Ai{FJH3*b>XE4Ax=6F;^61hNp(Zl`VLKWbu{u-R(V{O z*$8#mA-{2cquksoAKG$srHM~9-d`RAHO9B#Km0*K+XSWe?%n5awzD15v}u!sEp~ar zW(XJGa2l`r$sT8mOFVX{OF8Tqmt>~0gMF7`qckbWoUoC}Tr-`X7`Gv57pYvM~BAZ@~v>esKI)23~^S1VPnG_Y}Ao?EeEg+B$N2%yLi zq)|o+g@%v;#KR~F4Wu$`hB#p&O_|c#Os(T;28NU!Ae7sPGGMLS_n5Z%z7_Tk8+oiu^LqE`TYt{%S*IEA4&#k3nkDex z41W<&O`#;)5LId3qUGos)vI^5%N4hH@ghGJY822w8b>3E%Mr&g&~X?;Wk?f;CSyUv zDBMxOF@lOZ9_7l8xzvx&a+_+sDC`*YeLDg0MulHSrcOMvaneh=D1?p|KcN7mocM@K zSK{y}FO5Yugv9n&hc(F6P z8DC;&Q**5G547^%8Sj4t?0*ERDUj5xS+lAQ8|96uQKM!%c9nMDu>u$jL?hK80R)Xa z8Z90g99}|Te9|&9an?^9#w@Pi$}K(eI+tw+7)ds@h9fh?2O!WxP)W!4VrZIr$&)cC&y*`elplJ$Tik7k zOEtT*yNwM+2BtatF%?jwyo^!GShY@6V)~dI*5ds+>8(70DV<4&U=qix+>h~v?V()) zoAS$-FL!x)c~srblA~;CVZ?4XzF+~7W6Zedgolb z4nr{<3dc7X#nosUg9kj($cM)Ch$F2KV{*w-0r2rxxi31N8-Zzn`b!qVQoEe7uvj!( zTS-HQ=JAfnmOg}`mtKT&)Gt6)PI-jrOgqG6*jCX90h`Xsh^=I&UDc{q?cDmH zgWkZtR^Pvc&(AIttB6DS$8vKk_v6}Y*|KF`Pa3U}20=zpgUEx14;zmWLqm!m8M^gG ze9y@@xk)v;yQ~BoHP(p*pdHQFRXn4%%(2S_%!)8ZXS`CsyZ}_1kb0pLk|r*F6_OXm z(MxGU%HVP0rL8#faiLt*3oiqMJ&9fN^y}TH&*R3LVr70dMn7x%wF=NGxnIBjSJ~45 z=Wr(6CTH9-8!qE?&h6aqvpVh!XvV{Nke>(8Hxh_8KwE4T)RK}u<>zTOe=qq`&pox#H60RdiTi4%ovuRmzQ97A1Xi$d!Op3 z@i+lXTn&&RNsEts8VU`gvHlU(ZFi`9u}WX-PR1JpG*Ud8R<$u=e6W66H$s$miX}2V zbNLgyIZh_VmO}^9p)SfJBrnuGzHG=N0K@VJiqk$hfz0KO0h_RR$&z6`di0z&apHvW z#zTmJCN4UeV*r?cLBM zxNkaNVDqp&R+3ugifn`$wg%l^#{}iK6wyHS8ziIn{{(EHY)1C_pp)v{E8&M@@T(na z7h&j>Ry)ExXaY~2L43%?QC_wo&BFpVaMG77UHWw6#*I5!K0D&Qy%44YxSs^738V!n z&6+oV%5I%C;xWqb)>f3gx95|_qqvkO#5mAVp0o^wZjvE>MihK4I(2j7wwanKHqxw9 z+gP&s&k7JXpoCp=%*GrtMANX<51;WE$#KO@{oxvBqzWfvLy!&?nHEu-pdm*9s14Ge z{7{zC)Qep4iAS>FLl$&+ctVng-)h#V*~kixusb_v7`@13(CQy_H2bHxq&|K7o|BVP z>BK5_Zn<$I570$UKq*8ayc&R#`}6R_BM*=CB~*HAO?xS`pv2B`t+CK;SIY*e*gCD> zAX&ULw$o*EWV39v>-F*2VSX$woe8CrXy}8-`0QwPP{H*wUTL1v;Ov;R07Zt{p*SN` zqZ51JNULqCpAZ+ORTewvn$mpJgxkB(GRDADHks>w;och;+0 zCxIPWIPD^u#;E~eRZpy)KGLEqR9=`St~6zk ziA_{Ld9o2Sbiq!cEm`IoG-!~pd*`lU7QSWmY_)PfI1T?Gs3rj0q%_LQd$eY)nzi&m zn3N)0U`ctU389Hjqi~d^TqJt0aiZMl7eL|5$f<1Lm{IM2q8Zz7h)iQz#58PMLd!E1 z{jN7E3j`iW1Df|OBIp4%mLKR8ubcFWr$;3tUCC4DAjAt8_>jTKW;EkMS&GwXv>J(vKXc%}H(e>&#aNA4m;C{D(oXQ$$9tdLWIloUJm> zXGiOq^rLR-#CRAPAL`?aSsUUV?NT0b%7o>R4-neu3E;3^$)rQ5yz*rS)dMd#02(!F zWH~l*=JuEdGEGa0%PF;K{cUhpOT)D{y^P2brM&vUR_aC3ZRf0MkZ+# z1vGf1pg>e!sIY_rB91bW*{or0w=>6p*|f(c7THC;X~eo}OQ`jXXtb7FJ;heWH1Xw= zEYI(DEuTpWR&sWiC%arL8yegfupjhR2c&*E(nr&i|?A$#qyRsQO z)0Jdbv-)g$-?7#0+Op9V?u^cvEJZUPGQIro&N~#g$Nm=61aVQ=->ca5IXjn7X zmDR{}Im_&Nb$0}6GzUi|Y@9?>u?LnBV{%z84NTtwVzN2yEi+J&iF_Qo$YX4b&Zr`e zBThS^bIOCOTsha5shv^c(lc`0)E&9*>+%L}?5<3=-Q<;}*}Y%uoQ*QeU7L+lotycI z+q!tRZ!2|k#lVAabRgP|eCV=)Yyu4jT{LWB4~x63?5xA=H1G6J$B%!}SoVAEx?fOD z7?w`4(Q{Mv>ecLtxYb@bMj(qyiOUgJuU1H&=xPK&OG%ZD54lf@{Hj%|xbl=NcX;z^ zuEV_DZo-;ES1r{>r4=Z3cHC$PmKsndkonv;P!nq9q#&Q(X5=^WC9s zTDp39OXce{t?rn<4)D@AqXSWjZ6 zNyMCqZi#ikCE16&w0_-P=Z-U7+QgS!!HW4_4v*b%sY0iT%)GaQQ@`vZT|)b?w%TZA zI=f2T3U)d(_1~mJ^!z7-G!qHT(Nbq zjG9(khTS4eNp_{?%V@hjN0V&RL<-Ztb*M?X2fN%;4t5=A#?Z?t|7R1+4B(v*}dc|nOM;N)Zg(y)bIG!)v5SiO3~( z>(;Hez1Px)Ib01DD1-olCoZ}`QW{0Yhgk6=4<16rm8Y_VfLf(Wt}84xgJx#Cdrxj= z#@JmHYEPX;F0+L%;iexIGk=-@7!fi&U6`d>}BU%1JraZ161?T2#o->mU|#0Kt0Cb>;X>3KCoGP3Xi|q6&`n` z9eYOCxGZtlnq9JH2#rkiL=O!DLf!@hAH&H$_hlQ5IJXbM8j@(Q;MYt}N$yi(2GUeO zna~haNJXM6uIWm2LMap)6N8CIa-qdu&G*-2j1s1%RGZ?g?beB$8-8AUH*U^Gw{Gn= zSF27XS7fURl9+ZAjVaL;xn>LBa;?hOyDU4-_1~ zU$e*$64p!Fjm^+iI--trmumJJhqLco^tR{2YR;WImo+k)pDhw0BTlnj&04iCvzL5Q z=sEivRiZH}soX1XA#w5u$rGPw3ROnsM3)NCc{Y~DF$E$k+14~%)tof<=GC2D$<_i_ zu)WYF+qA`qO)1>tDs5ZtI)3q>Ym@k$FU#?o0F`Vy9mc^cP8i0OPZ>JgMI)xUZ`T#L zI`wQVH{I9_mHIW*OlR1XgO<_hT!0mgOp6=A$32(=H_A75pO;jpkxRd3xJ&JQYK0E0 zv)Y_WZ^95@(yXmEqovfSS@SYW?t^1R!U~~Ra#CXAi5L=tsKE%KfuUE=0VJG2L=1d{ zc;&;RIHC9zl8+;gZ9CI%xUNLG&UJ5D!`*UfGq-ug77u2!=~-{n7p~{(H(g6Rte|cV z!qr(+Cv*X}KM+G2N2~BZ_Tggp^1oKP+D)tZvt|xD%9(OKsMbzPmw}x9-wR?4z&bovvG&UPOBybGt_g!b** zH&04RZn4{X3x(tq$3PMGk@2Yz8eTjqLkJyX32104BRLAWE~F7mxjZ+_D}lNbLOD73 z|9n~-H*WSuH*4xL*EV~qYmrspa_xYC>uKtf!w~2tK&6Z7Bn;zGIWEJ}+~;%GyDMIp z<0{z*O|;9EBBoith8kKnI?JuBzr}|P`^S{4sWuv|q|FAFzc)`b=&?NV&8Kzj6dy{9v&K0S{j|ej6A=k z>ss=v2NXWL-?-20B15QN((3gZm86NwlTNjB#+`P=chhs@Y`bcY(d4Asp#~$8O%dxU zQ?N#9)HVRB7^yxU0p%}mJa`d^6>F}67>!neYvoNyN~J2U&gJ*Gs>hsDp;M@L7)Mv0 zfzGX5DIqf}>l`yrg<->yYW7aH&)V!IVNg86WE_mksDg$g1Q3k^z+l>>9AyYmAar3` z@(BT)sh4+6xU>j$p*-cv?4Y5zxX`s|RKpD!GQ>Ui+;d(BMm2TEJIWvzU5FFn4iuIe zPWRq>udBOqnQNBS!R>O<5ur6CHaZC-a2c&8$OGitYH>y#WPrx+LpOrxCN7HmFh;jb zz^#4CP`7#1^M0nnuAvLVp{;hz+t16_6k}a#>s5i z!Bs!<43}K9eg&vh$Rf{rz_yz>yp)$iN%-U$!8`WEB(?xf6~* z&b4aU(w`M;=PaJE9^$kM8S>B+55rL(e&klITH{|B?v^muHD39e-&HfSX$`HojPW2E zIMzHr3M~Y*eMe*rJOS-_qG>;xt|LIBj$j>c!)mwn&EfuIA)2k!DY3siwxO-enr5rE z_Q*@FnZ;_^dySK5>)25_m2#5x78#ioqVXY^&=J(?hDZHlm{m`?-0fOA$L*T^h1)fK zqAOgz7#2S|kfo>UxrhfSWZ@KIPyhi?p73Xb#Me*4Q7WJa;oqCKFIC@svpe(5Gd*Zb zN0h|~ICwR!tE|tk9~p(TbYaK;!V51{?4H?$w@xc|IrB!iMNLn1>(g7o9f2F$^?CqV zQ$4`3(2xb(c-r0#(!RjEb<14Q+|S+a#WP%z#kqk{Xfr1IOE-nI4LXiEOQ78(NVa3u zqihL!-pHkzYpwo-p7wb-x4meaFQ6X@lOT-4)VOW-6lY7cf21VIuD7xqv~(Fqp6iO% zEO&+TzH)^#Cc2_!v;AHh1G4r~7I`|s(MZ(vZFlzl)Tv1O})LZ4%LCGVIBQD;1?zzXe4H-BNEm+^1)~V*Iu6oza-MYxlJLpt!rC@AS zS{NIl-vbh0_sIiH|1e(xYEoiSaz}0D#jGBWAPfTt2*i*(CXI4Q%?|OS)juj?orh;*f=0>f%h3(QrORAC!)30T?NXObca@8GdLXMbZs2udx!`sh`k^QFX&^~o z(rPm_Iq8PJ#I3DOEzi1=t*J&#Xn*j*O|5VSJvH7*Acb*+_+&eeEnGCiB{b_01JW)J z3{Xa`)e!+~VEZThpjD~s%DSB3$~vFm%C~KFiA$!rw3+{MDJ$ogylDMC%&rNu?PHR1 zD69I_Xwmi;UVr`d?y}1+^ZGHu7zvbrvu2*L6&Wy<4tjy6IMozm0+ zADx9WWoCh@1?yeI*>Ah5*>)+l#n#{1<6ON7e|HU+PI7rE#jZikYTjlH7RoRxnckU6 z@W@oCHYm-k2~D21h)3~|m$nxb6;HJX)4pN)1+mu2w%FRD;@d+*C;*tm5k?$gqy>EO z%t@~N*vtG$vIoxd9$=*U={Xw7jA%{Od$MY{g!X;imragv&wX&MTe|97*Ry9&$2v(5 zSEJM*=@X`*;h^>C(ZemUk7kS?Ki=z%@!6QMvyOKke)ypueHaiv^?dk{i46pT%F>~s zV*?u*&OZ3%Hroh(XVmMiR`sf`RQ$Q+ zS2;p^OvTD3&}*aTFHBIrJ=a?yM8XtOk>Uywlv-@3NvjsR(t6GO)a!x57_n)%V(K-U zn_e*>8M%093Z1KxQRHUS?c-|9ALHiCnd3JthaY~pJLHfg`aoU{Mz0GmywJ^< zF~i@^f}a_NkrFx%{6F~M1HUN?4^se)k%c^5SRcFcu3fu&-=|NXip|*e4d1#ZxoK|L zW6${STxfSsd2A>?2*MSoX1e0M_8z2Y>WzUG12Lijs7;5l&6Ee#@|lh`H3M*AZY`Jg z$us`e8`p^6e*3MPJbAKv@4fe&eFo02L!35YG#V=dD2z0Uewl8^jvec-IpOCpd)b}0Vv(U8yo~Pof{{l$%u^c()i#C7ql}#LNRyv#=K$80t+rl2$Mll|STuSHi{L%X1Mqf7|Zs7 z~>zPG#0BHaG9(YOR~&HzgQ_HH~@zgiR0+HACaNl2OLm zi{YC$Z|*w)`a)+UGFoH^?mt530$-g3K-F%(BWQQ2DyDmF3PU?c7IlOUo6rI6sLspR zwJmkwB!jxbj&UG)DnrMhOlWg2(0)`_p`T$4N2&u<7_xP(6iZk1UeXA~hf@=ZQlYPO z#&}m;tGUIa>2$xqDvw^ZPkb-HiT0Sv)>>`d9t-)X6>A;9pc@SY1nT9;5hHSG!L-Ws z4A20ZmzU?JO`GOY^3!PfYF`N*riLCik&g?@iJCeUh()mY=fTY)TvV^_wmOc z`|{{4JE<&n;*g;@JUG<q?l#FfE$OQ$KYXlmF}gT7^p-5l9mv~NlPGM z;=IXjPrr-(+u9|XPHi*-F6$=k(8x4WG*t&9*_82*qa>MP3HD^*wpuM+)%ElI8pr-8)*fnX-cZA#9r>qKC$8%H_?rL|cS+Rc}+#aC*CT zyVNU3BbY+T7r@+Qfi69{AlEKb`?q53bM>naq`MA-Di7?8Cz=|eeq?M0Rp_hNR z+HL7@oZD$ryX_Gx)=fWZ%|5&+Ox*ta2d@D$iAOyRNbh5553GFxAbrDJms}8mL~o}K zdMCY~=@(;R5Yf@eo`iJ$`t|c8mFXFN>8UmlQU*F}E@>`Xn8I<;Lyy7Y)1oQ#1?@+& z*_17}vtr2?sNzE&&f5)xm{T1-5lc(YkfyTKjhBNLv)i|n@AV_q8ee3iEd!b94({hbRI(G>f1&UHqN<_Jl$5CJg93kXtT;sF^t9f3_2?c|H$6AQ- zC*Z<3d2+}FD0E~NvBUL>vdB_7Lb*_;Xp|REd>kINA(Thwu!qA7tql)G8>NKAokq-t zSx!PpV;JSB5n;Y)8TRr>-ziVHH(FlgN(|UUdygb~*M-qZJO-*YI05hsOr~2O0=DJj z6KoW(v`+-*WY|M!yVrV_ z=?KgOY?xSE(T`arv>7@AylAp7bmHO66!M4ykWG&dkW&GqQk)um@epGX&o(uq*|kSE987e)s44iW80;Ino;uUJL<^2iii% zLB$CtoZ#Ml_gybnmmjo)wzIRw0We33fCN}?zx}owHoc+i&~&BiZF=@^TitbSUflqT z-Y?2ZXJ&}5Sy=+ufYDjdgE*mViC)x4h!dR1Q3QoNz3tk4^!XnZ^pUK+26Rs+8yPVl~;3{%5vOyyAs?s12M_|v}JCR zUHsdtVD)NeyDp9Dxo*v>xZbU++f(OzHxy+h_C$aQw(sFueNhdeK4D`O=LP^%D*6Kg zvkxOS+$2fYbIv)(KQGJ_iSgiPG|3k5(NQ_IV!fsAwYlwGc8w}-(&_>?asFa=_oyYV zeZxwwXUl5t*!HztzjpjZsa#i7xZ7pe?7}9FQLfIS8IUv{nF3IH5z-zU`S{Q&Egte> zc-f*Afok2wEr%F-F`@)?fgLXhKIOrO<2DzYkA(6fw{h&#u2ai4u4CIauGF5@Ey=8I zH0gX;FgKs7EU{L=2r>c=<6ZuQbO;?zq$gkd`5=Q4&fVT}lMrw0R;bc0`U z!W(bA(VchRd49U11F#m#@S$wt)L-7HgG)$HbG0+mT|%vF8`WiQ#->6y?Vros!(&#s zfi`llAK1VRI4Ik7Xk5#!S=+$h>*QKpQ?TR;%+RLFQz+Y#Mqkp>A3G>+WbCrc*vkA7 zlKolBde)ndR{ExTZTA4NzRxaLL2Qg*x!aKwm~Nnpp0`T1KdfLQ+P^t&uViH8*c4qY%cWD%c6tfkc-Emi@Yb;4|U^255q7I9@6#(9N&Z(X%DYW_n_L}jVZCu z%U-It%U}!}9vXtUfE0)dRfh8L&=VOw>@F+kWVyKu7Q5wZzq7|so!hw89_z4UiX?k1 z)in3Ys~*bZXb3L85uO#Hl3ni2C8e%+UWTiZR_4B* z_DzLe*h^0OE3LNv)U-MVwzjt4YG>Z-?Te}9<@Pk);*!#m0vaDyLYzt{sKQjHv_g1f zAo68Q;y4V(LtBj69lHzsMfvR6v;7ke-24W3Mgzt}htQz|@+3b@i^h`@T;t~D2>#pcg9zP+KnMrk9h#K0>xUt(WliPEX|%?FF8rMg1fSh?&B zSFNdi?$0K|(tV> z`Gox_Pi@4;<`$Xv^SO2?hH1$(6W9*rB@9j+4UVTl$0!&~`BIWJj!^mJAsa(+UzAZx zdd!$H{-U01MW#WfNG>68OoKQ9hz^QFN9KbMKInTZGXZ%x_{2*GQJc^Q9`Q*}(fGS; z7him_8$Nuv*PY86^rxO}b=tb3tmvktuOV`)>afEO^N00ZQ$iQel{vONs2j-CO-zP{of0*CG7MJwE1ET z=iUjqW$x1*iEc>$6WyFo-tl0?Mwg`dy68aYfSx#b(4G3_$b%NPi8`#T;kWNdE!(_l z(+BoNmJ$>owY}Q*Y(ixSUmGW36yH|ka@eoEW z2LL!Vma| zwc(7Ghs^{o`8W@Zg~Nso^I&U~`pj59apY4c9S4V6v;%!`((6FsJ$K#Zet+eao{w)1 zCuUai@8GL_e129fB~-KZwKaQ*)#t;{h-GKIDJ##%(T#Ogve1Wip|5E0NLTVjCoTs+ z1IaqwEPIM@i_yJGnttIcwH@%d%%qGCtV5wd3JV12q;aYUg+jo{g9lz26&em&$O|8G z*l_|VhvE1yzx>iqgFK$e2C8x6CieZJs{Tcz`)njJnpsEVN9DhaT#9KZnDNEseX|hpt#o;1-y4VA3&5TAZXO1#yk+QX8#BnU!57TT)76 zyL8!+`eiTVNe}EoTzRrLG&yD<+t`h_bj2vy2UP3z&)aKpe4EFf3*NgqB90)0$|F?9 zpi(IaT~7H*6RNxvi!aB92@tiBV$`l!zRVrb{V>;~O*8km4<`C!H?Bw3SjmmAhcxxz zciE0MHN}j_*V1CN9||dZ?X}ms$usA<`SztW|K^%aG#)q)8itL~gNE~AkO%0>D@e1? z*cySUTr-Adz<97^6Z9jG(8~|(Pg(41e-)#A=gwWvTmF7QEuTMc-a>mCZh@^)EfFl? z3gbb74oyn=nu8xdLTq}#g*@?!k}t)HGgGi;ax0AE#sv!(xtTL(xrb^ua*J#V+t}#> zn@epY5xZyWKViqIlz+rG}V zKBS8qYtM7ptAh4NVysg`kAbC87y%dMS(P!TksSeBU?$Jl^_`sw7x+B@)9-Q`>sC!<}n%Cp_FlZW{!+?1=Z zo^QGRL>7qY9upQbO9gL&P2Z{O*Vt)$bdQ&{5Jy`DB5g(|<&h5!Cp(ibXEjUA*{-C~LDqh1His=@g)Qn`G;)oOVzGSXu_kBk zSnEn{wqVmo{j`lR)J672pyHv;iQ_3#Y@emGPXCy(R!qH=+Xqx*wlA_JY_N^Wcr(ZV z3di>%3W-J>9vsHPQCWPxKq6l~PyF#T%6o;)xEL7zlBS(pV(&BkO?LPr9t#DmZGZre zO;Gf)ji_Vs5lFtffU5{&dU|5)M_|%<_?v6oisKp>hYq*~Z{6Mt%)^4jE zR0S<&h%8|`M3E>oHfEKYc2!np5540glep}G9c2^I6p}}qLr2;$9dG(>Kunmo52&$> z65CBZWTSNeT2YaJix&((`BH{-$U`|s9Lf=AgopVm7f#P=2&XRaCZ?vl;&bou7NcF> zQ%|fe)6PDWGqb>CG;7bD6~e?8PN%5b4J)EwIbXfyFK?JmBcEtfv~8lyr&?Wm>5AJEhIToVFmKX6oj=khvSk>@ zR-q>^w3*W2V+Z)-EWOVtCI5RP)r@JjNGP_E@@QgG(v$YAi|?sw9EEVCF^u8@&=X?$ ziW5rFkQN_@hY^ZgI!D4`$Jv)CI{InXV`l{-Y#4X+|0qo!0P-a=WJF&ki$cGq+P%h9 zzRPM(qk+-MG{}3Z8ll`|;4M22Lo`K(?V=M@n)s3{Yu3q?)ylJu=S4=-t{}PCQpb(Bz7KH72ahm_+5S-@u{OlCfFpAI8>!@!+Dp4H6z$o=b0JJf;(P2=U~{)51LEV`$bjWS7;>cS)ySk9c3d2he^1uwtaf(&Uj5eTfV( zZG%S|fH|kLQB*lCYO3nsT9~zS=FFM?wjIE73B{cxc%&b?$TLNAB$@K}oA?`;u@P!v zI6{eAy^P$7QCqm(KC#2MEuw=2wO6*0{Rr{YCmV-0r=yW)ooj*J-Fm@Vz0U>-GvM|M zstE>tJL508M{5!5o<^HODWOpGut)h?><1n-LbNa>pDB-!hGbp-a5NGD&KTL~AeXoW zQCw*WGK2E%T@R=km8rMLu3xil{%cf)NvXuIot#E-50(eHM~@!uM<$m|j9Ti)`MQuF z=K;2gO{d8(-{E)09=zmes%58~VsRf@+)v8}aMGL!el0~7P94T4Vn5U?51--+VUsS_ z>1>n1Sw>9Rm<$E`1vQpgYQ6Z?l9J-D!%G+`rV2u^C6rM401c1Ip@;HBgP&;^M}u?D z`GZT$@$b(XFS2}A4A2;`MuJSru=5E&Au~FS;DNP*yY`g12368rp8b`IBKw;$Tz_)8 z!U$!DtBsHVML!vxc)Ujw%2ZxsBX8EH(J1vJ)2=VAUS7fUe;6SaXSBN66Dd~V;yX8; zSWfoAZa9V5inxu|FKo~As%7mh~Ld~Z!vmI*hz__g&019hwk^tGS>6;L@ODWP(N zAy~wfR!F0CuM~c!733l-?ckm+z1wmAc_1t5K})cc9J7%J*W>49Ml`fauy=2umviES zZZVJSQu`8Uqk8tYZIX-Kf+gSDBQ=Zs8p?fKZXmD$!iNt1)HdRwgO0w0g)iLUD&@C! z2~}!ED}2Q|N@s{ll@-}d|M^o~5|6!@EZQg+pN5W&LXhE+4XtdEbtu-P1CCN;{Ln}x zpPlgJJw-)tQW5jHCt5{R22FJG!i}+Ck-F@tZ&52>`q9v%O3D`01`lY zFoD+M&?-W>AP|t}<3s>AMxd}gQgTSWG`DNxN;hrBEH`D!6#pFw9ya5&iYZ@4Q>dAR zH1TjY5)b;48omN-H8tT{6Xieo)b?F9ZC{r@f9gyV(vhoRW3e83@*gk;o z3GLg{JlEcz9|YAZqgxekSik=FCXkEViV9RwsDNlPgz~}$scJPu>nQ0u*VsC0?FiRT zK%!}k#Yi4HM0(hTlJAv19TV)QU?Tu*L9sn~P%YcFOW)`|`{HYVo;B zr*@F1HZU^rO4BBEubya!B>x;yv5qqRde8c5@siKp^VjF_Q(mEDk!E>Qs5(`j^6WjC zwe}9~4VM3dqm=SL2r3L_>@r(#Hd`6Sda;uuwY zHBY_VrRN_M1JKIHWO(3Wz%uYi`#hg7a0wxp$5}|as4&$HsA)Uat&811?CuWhCP#Ga za2XZxo}#ozBS!Hs4NY`r9e_>za+E7yHq(z(ZIT$ZNqg*-%LP*r>&y5^>__b;#3?N> zL%L;`+v(At>{4sH)%}B`6j?tCDoo}|Z43Rpf$$CqRV*M0L!|&R-V0FmJPdLN`9_Gq^y7Fhrp9j%ExMena@Rd&nH&Dee_ge1-P((d^rO?RFK9nM2~?P^5)S*f+In=M#osqW_y>nj z2BRFv(EtpJ3wcqR#X$in&Lq?r=oI>L0g)VYo92)7ctkTLO9s#Sm4|-lD<0CJgO9wB zpL{^U(|Hp}0_9#H6X1f!Rm-haa0R>e=6cBQL5C=m5r z5q>PRN*R_Z_RYYjY}0YJjDQ@xlqJMNLvh~N=BYq7Dk=6^*~M$t+Fxa==IUK_mmL;l z`Fo+fdCsTqz^KGdf{6322v0XT#r9cJfaE>bVzU@w(7ROuGl%9ED{mkNer6`a%Y*DV=UF)xKw&j(%#q6ebKSBhII2XoQTwI;%%N zHIh_b@?v!n>|+elG#t4R2}`umSIJ(X z_{fy$Oc`Xw%Oj1lfJ*Phljb@Rh4S+9_L=ga$%lFfX!4LL9y$cm9+wuJ3=xti7q5@# zKNS8@`LKRuOTI$n#?zIjk*T&w2k4^N#%Rjw)vE^DF8wE6zJ$6;-oG_cD+(thB-v40 zReKnFtc}=q&{0s05FeqG7L9b+7&VxDKu6h7VWp9+xMYQ)@EoIP%3$s0NDpLu6t^bsE(n5a2yf`FMJKTJ;Dd z(yB{&Y9DmP4==aP%^}$Q2B%*2&Bam)&c!MP5_}dWkY$&lO6&Ry7yP2&&gegBgi2S{t2E&+0;(5ez}gy{W8l7K$_@w{K|T$VF+)X&hiQ0m zG+J~TuQ+*OoHP#E(8F@#BUIfHcl3)+;wO{~`NbnZkOQyyp{pLzkRyK4lva6o$g@q+ z$98OanysNbEd8?pMTY7oF87Opia@Kt{*Z4cW6%zuM9F0}O zp@quI5SpS@=7&O+C!~Dn!g}KMA{~~cTsU=ya)?V7q3RKhe90G0`dFIl(C6%~%jI?n z^rO36WbMyM*D&uF1r@1|@bOT=FfL=M0O?Sc=#<$X zUHJ;(k$lDXSC%}1p|WA9x)dreJ`Ek3IBF8VC((5ItTEMwxg+k|%noWK3p7S<*64C@;Rufzm3YeCmvM@BpYl zjqh0ES3YUU32D$NtM*&oO1sg0p^eZ_EsHlIe(*Y!@;~HMXUOxbfJy~c8J0@27o95G zCC^hfb)IOA^Yzi_P?-b8WqcWww0Ma_S6YoyI^98#-M+l(g*@40a+YsG0bLNa^jr<=? zx5y2h+OQ7|<$i5v75h)FT5s3%*4E!ev`3XLRvC?=&9O5ZR~{Dc@Xo)ab&y4LC9i7xGCmoe0{MD!5urgm^q=g69ZU~%imq0h0 zFZ2!4Ot9BIRaYKmR{oN3@*X{2^C5O$DP8HE&8W8hI-bfv}r zLm?dqClFOubrXh8^{FoLS^1eJ>rn&qMdJs|Uwo2!1ic#Vf?b-djrddQ~P z@y7aJ0~5V)`)m9EIjE6pUO5nCT29W(%d2Uh+WEa1@I+I(nS~L$K_g`J5D3ZoPeU1s z5cx_Y*XlJ=`63J7wzuLQTfTfbkIwQS&96GmQuqE`sGIVCGoVT#LQ@oQnVOTEHf`F% zHdQ=f(Z}d*jOItM8iUb8Z}}A?4*G$d%7-CwdC7^%U_{O~AjjFw?|;~{!}Bd4Aemyn zzb!scrN07Q`iG)_lb}jLQd`!VcPK4UMIq`6?FY>(F@k_}g5RW$5yke+hYkW}9Kd?XEQzUukRQ0^7NMWv|@x zwG+T&6#DSD0;1`&kBdyQ56LC)MX~>1olS!p$pSkJiQ^PTspwbpG9e!D!m!-zBA%$k kZ}gYfNaCF}xV$|1>H6z0+kD + + + + Tizen.WebView.Test.png + + + + http://tizen.org/privilege/mediastorage + http://tizen.org/privilege/externalstorage + http://tizen.org/privilege/network.get + http://tizen.org/privilege/internet + + -- 2.7.4