From: Jihoon Kim Date: Thu, 6 May 2021 10:49:42 +0000 (+0900) Subject: Upload initial version X-Git-Tag: submit/tizen/20210803.074843~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F262128%2F1;p=platform%2Fcore%2Fuifw%2Fise-default-nui.git Upload initial version Change-Id: I34e3c30ba6b54c6118ebcec1ed257715f6d212b2 --- diff --git a/ISEDefaultNUI.sln b/ISEDefaultNUI.sln new file mode 100644 index 0000000..52c7533 --- /dev/null +++ b/ISEDefaultNUI.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31205.134 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ISEDefaultNUI", "ISEDefaultNUI\ISEDefaultNUI.csproj", "{FF0E7FCC-1853-4F74-B3BC-0EC1B5A569D7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FF0E7FCC-1853-4F74-B3BC-0EC1B5A569D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FF0E7FCC-1853-4F74-B3BC-0EC1B5A569D7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FF0E7FCC-1853-4F74-B3BC-0EC1B5A569D7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FF0E7FCC-1853-4F74-B3BC-0EC1B5A569D7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7B87EF59-CA55-4EFB-83AE-3585AFF33F9F} + EndGlobalSection +EndGlobal diff --git a/ISEDefaultNUI/ISEDefaultNUI.cs b/ISEDefaultNUI/ISEDefaultNUI.cs new file mode 100644 index 0000000..020fb56 --- /dev/null +++ b/ISEDefaultNUI/ISEDefaultNUI.cs @@ -0,0 +1,60 @@ +using System; +using System.Runtime.InteropServices; +using Tizen; +using Tizen.NUI; +using Tizen.NUI.BaseComponents; +using Tizen.NUI.Components; + +namespace ISEDefaultNUI +{ + class Program : NUIApplication + { + protected override void OnCreate() + { + base.OnCreate(); + Initialize(); + } + + protected override void OnTerminate() + { + base.OnTerminate(); + } + + private void ButtonClicked(object sender, Button.ClickEventArgs e) + { + Button btn = (Button)sender; + btn.PointSize = (btn.PointSize + 1) % 25; + btn.Text = "Pressed"; + } + void Initialize() + { + Window.Instance.KeyEvent += OnKeyEvent; + Window.BackgroundColor = Color.White; + + SCLNUI SclNui = new SCLNUI(DirectoryInfo.Resource + "main_entry.xml"); + + Log.Info("NUIIME", "KOREAN_QTY"); + + SclNui.SetInputMode("KOREAN_QTY"); + + SclNui.SetCurrentSublayout("DEFAULT"); + SclNui.SetStringSubstitution("_LANGUAGE_", "Korean"); + + SclNui.SetUpdatePending(false); + } + + public void OnKeyEvent(object sender, Window.KeyEventArgs e) + { + if (e.Key.State == Key.StateType.Down && (e.Key.KeyPressedName == "XF86Back" || e.Key.KeyPressedName == "Escape")) + { + Exit(); + } + } + + static void Main(string[] args) + { + var app = new Program(); + app.Run(args); + } + } +} diff --git a/ISEDefaultNUI/ISEDefaultNUI.csproj b/ISEDefaultNUI/ISEDefaultNUI.csproj new file mode 100644 index 0000000..35a91da --- /dev/null +++ b/ISEDefaultNUI/ISEDefaultNUI.csproj @@ -0,0 +1,22 @@ + + + + Exe + tizen80 + ISEDefaultNUI + + + + portable + + + None + + + + + + + + + diff --git a/ISEDefaultNUI/Interop/Interop.Libraries.cs b/ISEDefaultNUI/Interop/Interop.Libraries.cs new file mode 100644 index 0000000..c662fc5 --- /dev/null +++ b/ISEDefaultNUI/Interop/Interop.Libraries.cs @@ -0,0 +1,47 @@ +/* +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace NUITemplate1.Interop +{ + class Interop + { + } +} +*/ + +/* + * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved + * + * PROPRIETARY/CONFIDENTIAL + * + * This software is the confidential and proprietary information of + * Samsung Electronics Co., Ltd. ("Confidential Information"). + * You shall not disclose such Confidential Information and shall + * use it only in accordance with the terms of the license agreement + * you entered into with Samsung Electronics Co., Ltd. ("SAMSUNG"). + * + * SAMSUNG MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY + * OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT + * LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR + * A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SAMSUNG SHALL NOT BE + * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, + * MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + */ + +/// +/// The Partial Interop class. +/// +internal static partial class Interop +{ + /// + /// The Partial Libraries class. + /// + internal static partial class Libraries + { + public const string SclNui = "libscl-ui-nui-capi.so.0"; + } +} diff --git a/ISEDefaultNUI/Interop/Interop.SclNui.cs b/ISEDefaultNUI/Interop/Interop.SclNui.cs new file mode 100644 index 0000000..f10e9a7 --- /dev/null +++ b/ISEDefaultNUI/Interop/Interop.SclNui.cs @@ -0,0 +1,118 @@ +/* +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace NUITemplate1.Interop +{ + class Interop + { + } +} +*/ + +/* + * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved + * + * PROPRIETARY/CONFIDENTIAL + * + * This software is the confidential and proprietary information of + * Samsung Electronics Co., Ltd. ("Confidential Information"). + * You shall not disclose such Confidential Information and shall + * use it only in accordance with the terms of the license agreement + * you entered into with Samsung Electronics Co., Ltd. ("SAMSUNG"). + * + * SAMSUNG MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY + * OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT + * LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR + * A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SAMSUNG SHALL NOT BE + * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, + * MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + */ + +using System; +using System.Runtime.InteropServices; +//using Samsung.Tizen.AI.Nmt; +using Tizen; + +internal static partial class Interop +{ + internal static class SclNuiCSharp + { + /* + public class SclFontInfo + { + public char[] font_name; + public int font_size; + public bool is_italic; + public bool is_bolid; + } + + public class SclColor + { + public char r, g, b, a; + } + */ + + internal static string LogTag = "SclNuiCSharp"; + + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + //internal delegate void DrawTextCallback(IntPtr str, int x, int y, int w, int h, int fontsize, IntPtr userData); + //internal delegate void DrawTextCallback(SclFontInfo fontinfo, SclColor color, IntPtr str, int x, int y, int w, int h, int label_alignment, int padding_x, int padding_y, int inner_width, int inner_height, IntPtr userData); + internal delegate void DrawTextCallback(IntPtr font_name, short font_size, bool is_italic, bool is_bold, int r, int g, int b, int a, + IntPtr str, int pos_x, int pos_y, int w, int h, + int align, int padding_x, int padding_y, int inner_width, int inner_height, IntPtr user_data); + + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + internal delegate void DrawImageCallback(IntPtr image_path, int dest_x, int dest_y, int dest_weight, int dest_height, + int src_x, int src_y, int src_width, int src_height, IntPtr user_data); + + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + internal delegate void DrawRectangleCallback(int pos_x, int pos_y, int width, int height, + bool fill, int fill_color_r, int fill_color_g, int fill_color_b, int fill_color_a, IntPtr user_data); + + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + internal delegate void UpdateWindowCallback(int x, int y, int width, int height, IntPtr user_data); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_init")] + internal static extern int SclNuiInit(string entry_filepath); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_fini")] + internal static extern int SclNuiFini(); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_set_input_mode")] + internal static extern int SclNuiSetInputMode(string mode); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_set_update_pending")] + internal static extern int SclNuiSetUpdatePending(bool pend); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_set_cur_sublayout")] + internal static extern int SclNuiSetCurrentSublayout(string SublayoutName); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_set_string_substitution")] + internal static extern int SclNuiSetStringSubstitution(string original, string substitute); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_set_draw_text_cb")] + internal static extern int SclNuiSetDrawTextCb(DrawTextCallback callbackFunction, IntPtr userData); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_set_draw_image_cb")] + internal static extern int SclNuiSetDrawImageCb(DrawImageCallback callbackFunction, IntPtr userData); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_set_draw_rectangle_cb")] + internal static extern int SclNuiSetDrawRectangleCb(DrawRectangleCallback callbackFunction, IntPtr userData); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_controller_mouse_press")] + internal static extern int SclControllerMousePress(int x, int y); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_controller_mouse_release")] + internal static extern int SclControllerMouseRelease(int x, int y); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_controller_mouse_move")] + internal static extern int SclControllerMouseMove(int x, int y, int touch_id); + + [DllImport(Libraries.SclNui, EntryPoint = "scl_nui_set_update_window_cb")] + internal static extern int SclNuiUpdateWindowCb(UpdateWindowCallback callbackFunction, IntPtr userData); + } +} diff --git a/ISEDefaultNUI/SCLNUI.cs b/ISEDefaultNUI/SCLNUI.cs new file mode 100644 index 0000000..6a2f83e --- /dev/null +++ b/ISEDefaultNUI/SCLNUI.cs @@ -0,0 +1,349 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading.Tasks; +using Tizen; +using Tizen.NUI; +using Tizen.NUI.BaseComponents; +using static Interop.SclNuiCSharp; + +namespace ISEDefaultNUI +{ + class SCLNUI + { + enum LabelAlignment + { + LABEL_ALIGN_LEFT_TOP = 0, + LABEL_ALIGN_CENTER_TOP, + LABEL_ALIGN_RIGHT_TOP, + LABEL_ALIGN_LEFT_MIDDLE, + LABEL_ALIGN_CENTER_MIDDLE, + LABEL_ALIGN_RIGHT_MIDDLE, + LABEL_ALIGN_LEFT_BOTTOM, + LABEL_ALIGN_CENTER_BOTTOM, + LABEL_ALIGN_RIGHT_BOTTOM, + MAX_LABEL_ALIGNMENT + } + + struct SclPoint + { + public int x, y; + }; + + public SCLNUI(string path) + { + SclNuiInit(path); + + image_list = new List(); + label_list = new List(); + + /* Draw text callback */ + + //_draw_text_cb = (IntPtr str, int x, int y, int w, int h, int fontsize, IntPtr userData) => + + //_draw_text_cb = (SclFontInfo fontinfo, SclColor color, IntPtr str, int x, int y, int w, int h, int label_alignment, int padding_x, int padding_y, int inner_width, int inner_height, IntPtr userData) => + _draw_text_cb = (IntPtr font_name, short font_size, bool is_italic, bool is_bold, int r, int g, int b, int a, + IntPtr str, int pos_x, int pos_y, int width, int height, + int label_align, int padding_x, int padding_y, int inner_width, int inner_height, IntPtr user_data) => + { + Log.Info("NUIIME", "### start draw text"); + + string FontName = Marshal.PtrToStringAnsi(font_name); + LabelAlignment align = (LabelAlignment)label_align; + string keystr = Marshal.PtrToStringAnsi(str); + + TextLabel key_text = draw_text(FontName, font_size, is_italic, is_bold, r, g, b, a, + keystr, pos_x, pos_y, width, height, + align, padding_x, padding_y, inner_width, inner_height); + + Window.Instance.GetDefaultLayer().Add(key_text); + label_list.Add(key_text); + + }; + SclNuiSetDrawTextCb(_draw_text_cb, (IntPtr)null); + + /* Draw image */ + _draw_image_cb = (IntPtr image_path, int dest_x, int dest_y, int dest_weight, int dest_height, int src_x, int src_y, int src_width, int src_height, IntPtr user_data) => + { + string image_path_str = Marshal.PtrToStringAnsi(image_path); + Log.Info("NUIIME", "image: " + image_path_str + ", x: " + dest_x + ", y: " + dest_y); + if (image_path_str.EndsWith("/")) + return; + + ImageView imageView = draw_image(image_path_str, dest_x, dest_y, dest_weight, dest_height, src_x, src_y, src_width, src_height); + Window.Instance.GetDefaultLayer().Add(imageView); + image_list.Add(imageView); + }; + SclNuiSetDrawImageCb(_draw_image_cb, (IntPtr)null); + + /* Draw rectangle */ + _draw_rectangle_cb = (int pos_x, int pos_y, int width, int height, bool fill, int fill_color_r, int fill_color_g, int fill_color_b, int fill_color_a, IntPtr user_data) => + { + Log.Info("NUIIME", "rectangle: x=" + pos_x + ", y=" + pos_y + ", w=" + width + ", h=" + height); + Log.Info("NUIIME", "fill: " + fill + ", r=" + fill_color_r + ", g=" + fill_color_g + ", b=" + fill_color_b + ", a=" + fill_color_a); + + if (width == 720) { + View rectView = draw_rectangle(pos_x, pos_y, width, height, fill, fill_color_r, fill_color_g, fill_color_b, fill_color_a); + Window.Instance.GetDefaultLayer().Add(rectView); + } + }; + SclNuiSetDrawRectangleCb(_draw_rectangle_cb, (IntPtr)null); + + _update_window_cb = (int x, int y, int width, int height, IntPtr user_data) => + { + Log.Info("NUIIME", "update_window"); + + UpdateArea(x, y, width, height); + }; + SclNuiUpdateWindowCb(_update_window_cb, (IntPtr)null); + + Window.Instance.TouchEvent += OnWindowTouched; + } + + ~SCLNUI() + { + SclNuiFini(); + } + + void UpdateArea(int x, int y, int width, int height) + { + //return; + + if (x + y + width + height == 0) + { + dispose_all_objects(); + } + else + { + Rectangle updateArea = new Rectangle(x, y, width, height); + + int idx = 0; + ImageView image_elem; + TextLabel label_elem; + Rectangle obj_rect; + + while (idx < image_list.Count) + { + image_elem = image_list[idx]; + obj_rect = new Rectangle((int)image_elem.Position.X, (int)image_elem.Position.Y, (int)image_elem.Size.Width, (int)image_elem.Size.Height); + + if (obj_rect.Intersects(updateArea)) + { + Log.Info("NUIIME", "remove image idx:" + idx); + image_elem.Hide(); + image_elem.Dispose(); + image_elem = null; + image_list.RemoveAt(idx); + } + else + idx++; + } + + idx = 0; + while (idx < label_list.Count) + { + label_elem = label_list[idx]; + obj_rect = new Rectangle((int)label_elem.Position.X, (int)label_elem.Position.Y, (int)label_elem.Size.Width, (int)label_elem.Size.Height); + + if (obj_rect.Intersects(updateArea)) + { + Log.Info("NUIIME", "remove label idx(" + idx + "), label(" + label_elem.Text + ")"); + label_elem.Hide(); + label_elem.Dispose(); + label_elem = null; + label_list.RemoveAt(idx); + } + else + idx++; + } + } + } + + TextLabel draw_text(string FontName, short font_size, bool is_italic, bool is_bold, int r, int g, int b, int a, + string keystr, int pos_x, int pos_y, int width, int height, + LabelAlignment align, int padding_x, int padding_y, int inner_width, int inner_height) + { + Log.Info("NUIIME", "### start draw text"); + + Log.Info("NUIIME", "font name(" + FontName + "), italic(" + is_italic + "), bold(" + is_bold + ")"); + + Log.Info("NUIIME", "key string(" + keystr + "), x: " + pos_x + ", y: " + pos_y); + Log.Info("NUIIME", "padding_x:" + padding_x + ", padding_y: " + padding_y + ", inner_width: " + inner_width + ", inner_height: " + inner_height); + + if (keystr == null) + keystr = ""; + + TextLabel key_text = new TextLabel(keystr); + + switch (align) + { + case LabelAlignment.LABEL_ALIGN_LEFT_TOP: + key_text.HorizontalAlignment = HorizontalAlignment.Begin; + key_text.VerticalAlignment = VerticalAlignment.Top; + break; + case LabelAlignment.LABEL_ALIGN_CENTER_TOP: + key_text.HorizontalAlignment = HorizontalAlignment.Center; + key_text.VerticalAlignment = VerticalAlignment.Top; + break; + case LabelAlignment.LABEL_ALIGN_RIGHT_TOP: + key_text.HorizontalAlignment = HorizontalAlignment.End; + key_text.VerticalAlignment = VerticalAlignment.Top; + break; + case LabelAlignment.LABEL_ALIGN_LEFT_MIDDLE: + key_text.HorizontalAlignment = HorizontalAlignment.Begin; + key_text.VerticalAlignment = VerticalAlignment.Center; + break; + case LabelAlignment.LABEL_ALIGN_CENTER_MIDDLE: + key_text.HorizontalAlignment = HorizontalAlignment.Center; + key_text.VerticalAlignment = VerticalAlignment.Center; + break; + case LabelAlignment.LABEL_ALIGN_RIGHT_MIDDLE: + key_text.HorizontalAlignment = HorizontalAlignment.End; + key_text.VerticalAlignment = VerticalAlignment.Center; + break; + case LabelAlignment.LABEL_ALIGN_LEFT_BOTTOM: + key_text.HorizontalAlignment = HorizontalAlignment.Begin; + key_text.VerticalAlignment = VerticalAlignment.Bottom; + break; + case LabelAlignment.LABEL_ALIGN_CENTER_BOTTOM: + key_text.HorizontalAlignment = HorizontalAlignment.Center; + key_text.VerticalAlignment = VerticalAlignment.Bottom; + break; + case LabelAlignment.LABEL_ALIGN_RIGHT_BOTTOM: + key_text.HorizontalAlignment = HorizontalAlignment.End; + key_text.VerticalAlignment = VerticalAlignment.Bottom; + break; + } + + key_text.FontFamily = FontName; + key_text.Padding = new Extents((ushort)padding_x, (ushort)padding_x, 0, 0); + key_text.TextColor = new Color((float)(r / 255.0), (float)(g / 255.0), (float)(b / 255.0), (float)(a / 255.0)); + // FIXME + key_text.PointSize = (float)(font_size * 0.25); + + Log.Info("NUIIME", "x(" + pos_x + "), y(" + pos_y + ")"); + key_text.Position = new Position(pos_x, pos_y); + key_text.Size = new Size(width, height); + + Log.Info("NUIIME", "### end draw text"); + + return key_text; + } + + View draw_rectangle(int pos_x, int pos_y, int width, int height, bool fill, int fill_color_r, int fill_color_g, int fill_color_b, int fill_color_a) + { + View rectView = new View(); + rectView.BackgroundColor = new Color((float)(fill_color_r / 255.0), (float)(fill_color_g / 255.0), (float)(fill_color_b / 255.0), (float)(fill_color_a / 255.0)); + rectView.Position = new Position(pos_x, pos_y); + rectView.Size = new Size(width, height); + + return rectView; + } + + ImageView draw_image(string image_path_str, int dest_x, int dest_y, int dest_weight, int dest_height, int src_x, int src_y, int src_width, int src_height) + { + Log.Info("NUIIME", "### start draw image"); + + + ImageView imageView = new ImageView(image_path_str); + imageView.Position = new Position(dest_x, dest_y); + imageView.Size = new Size(dest_weight, dest_height); + + Log.Info("NUIIME", "### end draw image"); + + return imageView; + } + + void dispose_all_objects() + { + Log.Info("NUIIME", "Clear all objects"); + + int i = 0; + + foreach (ImageView image_element in image_list) + { + i++; + image_element.Dispose(); + } + + Log.Info("NUIIME", "Dispose images(" + i + ")"); + + image_list.Clear(); + + i = 0; + foreach (TextLabel label_element in label_list) + { + i++; + + label_element.Dispose(); + } + Log.Info("NUIIME", "Dispose labels (" + i + ")"); + label_list.Clear(); + } + + private void OnWindowTouched(object sender, Window.TouchEventArgs e) + { + if (e.Touch.GetPointCount() < 1) + { + return; + } + + switch (e.Touch.GetState(0)) + { + // If State is Down (Touched at the outside of Button) + // - Store touched position. + // - Set the mTouched to true + // - Set the mTouchedInButton to false + case PointStateType.Down: + { + Log.Info("NUIIME", "[MOUSE DOWN] x=" + e.Touch.GetScreenPosition(0).X + ", y=" + e.Touch.GetScreenPosition(0).Y); + + SclControllerMousePress((int)e.Touch.GetScreenPosition(0).X, (int)e.Touch.GetScreenPosition(0).Y); + break; + } + case PointStateType.Motion: + { + Log.Info("NUIIME", "[MOUSE MOVE] x=" + e.Touch.GetScreenPosition(0).X + ", y=" + e.Touch.GetScreenPosition(0).Y); + SclControllerMouseMove((int)e.Touch.GetScreenPosition(0).X, (int)e.Touch.GetScreenPosition(0).Y, 0); + break; + } + case PointStateType.Up: + { + Log.Info("NUIIME", "[MOUSE UP] x=" + e.Touch.GetScreenPosition(0).X + ", y=" + e.Touch.GetScreenPosition(0).Y); + SclControllerMouseRelease((int)e.Touch.GetScreenPosition(0).X, (int)e.Touch.GetScreenPosition(0).Y); + //mTouched = false; + break; + } + } + } + + public int SetInputMode(string mode) + { + return SclNuiSetInputMode(mode); + } + + public int SetUpdatePending(bool pend) + { + return SclNuiSetUpdatePending(pend); + } + + public int SetCurrentSublayout(string SublayoutName) + { + return SclNuiSetCurrentSublayout(SublayoutName); + } + public int SetStringSubstitution(string original, string substitute) + { + return SclNuiSetStringSubstitution(original, substitute); + } + + private DrawTextCallback _draw_text_cb = null; + private DrawImageCallback _draw_image_cb = null; + private DrawRectangleCallback _draw_rectangle_cb = null; + private UpdateWindowCallback _update_window_cb = null; + + private List image_list; + private List label_list; + } +} diff --git a/ISEDefaultNUI/obj/ISEDefaultNUI.csproj.nuget.dgspec.json b/ISEDefaultNUI/obj/ISEDefaultNUI.csproj.nuget.dgspec.json new file mode 100644 index 0000000..1f7d30a --- /dev/null +++ b/ISEDefaultNUI/obj/ISEDefaultNUI.csproj.nuget.dgspec.json @@ -0,0 +1,78 @@ +{ + "format": 1, + "restore": { + "Y:\\github\\ise-default-nui\\ISEDefaultNUI\\ISEDefaultNUI.csproj": {} + }, + "projects": { + "Y:\\github\\ise-default-nui\\ISEDefaultNUI\\ISEDefaultNUI.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Y:\\github\\ise-default-nui\\ISEDefaultNUI\\ISEDefaultNUI.csproj", + "projectName": "ISEDefaultNUI", + "projectPath": "Y:\\github\\ise-default-nui\\ISEDefaultNUI\\ISEDefaultNUI.csproj", + "packagesPath": "C:\\Users\\jihoon48.kim\\.nuget\\packages\\", + "outputPath": "Y:\\github\\ise-default-nui\\ISEDefaultNUI\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\jihoon48.kim\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "tizen80" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "Y:\\git\\ses\\SamsungAINmt\\artifacts\\Release": {}, + "Y:\\github\\TizenFX.2\\Artifacts": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://tizen.myget.org/F/dotnet/api/v3/index.json": {}, + "https://tizen.myget.org/F/ses-dev/api/v3/index.json": {}, + "https://tizen.myget.org/F/ses/api/v3/index.json": {} + }, + "frameworks": { + "tizen80": { + "targetAlias": "tizen80", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "tizen80": { + "targetAlias": "tizen80", + "dependencies": { + "Tizen.NET": { + "include": "Compile, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[8.0.0.15631, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ISEDefaultNUI/obj/ISEDefaultNUI.csproj.nuget.g.props b/ISEDefaultNUI/obj/ISEDefaultNUI.csproj.nuget.g.props new file mode 100644 index 0000000..0bb8a52 --- /dev/null +++ b/ISEDefaultNUI/obj/ISEDefaultNUI.csproj.nuget.g.props @@ -0,0 +1,25 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\jihoon48.kim\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.9.1 + + + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + \ No newline at end of file diff --git a/ISEDefaultNUI/obj/ISEDefaultNUI.csproj.nuget.g.targets b/ISEDefaultNUI/obj/ISEDefaultNUI.csproj.nuget.g.targets new file mode 100644 index 0000000..67bbc83 --- /dev/null +++ b/ISEDefaultNUI/obj/ISEDefaultNUI.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + \ No newline at end of file diff --git a/ISEDefaultNUI/obj/project.assets.json b/ISEDefaultNUI/obj/project.assets.json new file mode 100644 index 0000000..c47ca3a --- /dev/null +++ b/ISEDefaultNUI/obj/project.assets.json @@ -0,0 +1,716 @@ +{ + "version": 3, + "targets": { + "Tizen,Version=v8.0": { + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Tizen.NET/8.0.0.15631": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Tizen.NET.API8": "8.0.0.15631" + }, + "build": { + "build/tizen40/Tizen.NET.props": {}, + "build/tizen40/Tizen.NET.targets": {} + } + }, + "Tizen.NET.API8/8.0.0.15631": { + "type": "package", + "compile": { + "ref/netstandard2.0/ElmSharp.Wearable.dll": {}, + "ref/netstandard2.0/ElmSharp.dll": {}, + "ref/netstandard2.0/Tizen.Account.AccountManager.dll": {}, + "ref/netstandard2.0/Tizen.Account.FidoClient.dll": {}, + "ref/netstandard2.0/Tizen.Account.OAuth2.dll": {}, + "ref/netstandard2.0/Tizen.Account.SyncManager.dll": {}, + "ref/netstandard2.0/Tizen.Applications.Alarm.dll": {}, + "ref/netstandard2.0/Tizen.Applications.AttachPanel.dll": {}, + "ref/netstandard2.0/Tizen.Applications.Badge.dll": {}, + "ref/netstandard2.0/Tizen.Applications.Common.dll": {}, + "ref/netstandard2.0/Tizen.Applications.ComponentBased.ComponentManager.dll": {}, + "ref/netstandard2.0/Tizen.Applications.ComponentBased.Default.dll": {}, + "ref/netstandard2.0/Tizen.Applications.ComponentBased.dll": {}, + "ref/netstandard2.0/Tizen.Applications.DataControl.dll": {}, + "ref/netstandard2.0/Tizen.Applications.EventManager.dll": {}, + "ref/netstandard2.0/Tizen.Applications.MessagePort.dll": {}, + "ref/netstandard2.0/Tizen.Applications.Notification.dll": {}, + "ref/netstandard2.0/Tizen.Applications.NotificationEventListener.dll": {}, + "ref/netstandard2.0/Tizen.Applications.PackageManager.dll": {}, + "ref/netstandard2.0/Tizen.Applications.Preference.dll": {}, + "ref/netstandard2.0/Tizen.Applications.RemoteView.dll": {}, + "ref/netstandard2.0/Tizen.Applications.Service.dll": {}, + "ref/netstandard2.0/Tizen.Applications.Shortcut.dll": {}, + "ref/netstandard2.0/Tizen.Applications.ToastMessage.dll": {}, + "ref/netstandard2.0/Tizen.Applications.UI.dll": {}, + "ref/netstandard2.0/Tizen.Applications.WatchApplication.dll": {}, + "ref/netstandard2.0/Tizen.Applications.WatchfaceComplication.dll": {}, + "ref/netstandard2.0/Tizen.Applications.WidgetApplication.dll": {}, + "ref/netstandard2.0/Tizen.Applications.WidgetControl.dll": {}, + "ref/netstandard2.0/Tizen.Content.Download.dll": {}, + "ref/netstandard2.0/Tizen.Content.MediaContent.dll": {}, + "ref/netstandard2.0/Tizen.Content.MimeType.dll": {}, + "ref/netstandard2.0/Tizen.Context.dll": {}, + "ref/netstandard2.0/Tizen.Location.Geofence.dll": {}, + "ref/netstandard2.0/Tizen.Location.dll": {}, + "ref/netstandard2.0/Tizen.Log.dll": {}, + "ref/netstandard2.0/Tizen.MachineLearning.Inference.dll": {}, + "ref/netstandard2.0/Tizen.Maps.dll": {}, + "ref/netstandard2.0/Tizen.Messaging.Push.dll": {}, + "ref/netstandard2.0/Tizen.Messaging.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.AudioIO.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.Camera.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.MediaCodec.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.MediaPlayer.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.Metadata.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.Radio.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.Recorder.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.Remoting.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.StreamRecorder.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.Util.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.Vision.dll": {}, + "ref/netstandard2.0/Tizen.Multimedia.dll": {}, + "ref/netstandard2.0/Tizen.NUI.Components.dll": {}, + "ref/netstandard2.0/Tizen.NUI.Wearable.dll": {}, + "ref/netstandard2.0/Tizen.NUI.WindowSystem.dll": {}, + "ref/netstandard2.0/Tizen.NUI.dll": {}, + "ref/netstandard2.0/Tizen.Network.Bluetooth.dll": {}, + "ref/netstandard2.0/Tizen.Network.Connection.dll": {}, + "ref/netstandard2.0/Tizen.Network.IoTConnectivity.dll": {}, + "ref/netstandard2.0/Tizen.Network.Nfc.dll": {}, + "ref/netstandard2.0/Tizen.Network.Nsd.dll": {}, + "ref/netstandard2.0/Tizen.Network.Smartcard.dll": {}, + "ref/netstandard2.0/Tizen.Network.Stc.dll": {}, + "ref/netstandard2.0/Tizen.Network.WiFi.dll": {}, + "ref/netstandard2.0/Tizen.Network.WiFiDirect.dll": {}, + "ref/netstandard2.0/Tizen.Nlp.dll": {}, + "ref/netstandard2.0/Tizen.PhonenumberUtils.dll": {}, + "ref/netstandard2.0/Tizen.Pims.Calendar.dll": {}, + "ref/netstandard2.0/Tizen.Pims.Contacts.dll": {}, + "ref/netstandard2.0/Tizen.Security.DevicePolicyManager.dll": {}, + "ref/netstandard2.0/Tizen.Security.PrivacyPrivilegeManager.dll": {}, + "ref/netstandard2.0/Tizen.Security.SecureRepository.dll": {}, + "ref/netstandard2.0/Tizen.Security.TEEC.dll": {}, + "ref/netstandard2.0/Tizen.Security.dll": {}, + "ref/netstandard2.0/Tizen.Sensor.dll": {}, + "ref/netstandard2.0/Tizen.System.Feedback.dll": {}, + "ref/netstandard2.0/Tizen.System.Information.dll": {}, + "ref/netstandard2.0/Tizen.System.MediaKey.dll": {}, + "ref/netstandard2.0/Tizen.System.PlatformConfig.dll": {}, + "ref/netstandard2.0/Tizen.System.PowerUsage.dll": {}, + "ref/netstandard2.0/Tizen.System.Storage.dll": {}, + "ref/netstandard2.0/Tizen.System.SystemSettings.dll": {}, + "ref/netstandard2.0/Tizen.System.Usb.dll": {}, + "ref/netstandard2.0/Tizen.System.dll": {}, + "ref/netstandard2.0/Tizen.Telephony.dll": {}, + "ref/netstandard2.0/Tizen.Tracer.dll": {}, + "ref/netstandard2.0/Tizen.Uix.InputMethod.dll": {}, + "ref/netstandard2.0/Tizen.Uix.InputMethodManager.dll": {}, + "ref/netstandard2.0/Tizen.Uix.Stt.dll": {}, + "ref/netstandard2.0/Tizen.Uix.SttEngine.dll": {}, + "ref/netstandard2.0/Tizen.Uix.Tts.dll": {}, + "ref/netstandard2.0/Tizen.Uix.TtsEngine.dll": {}, + "ref/netstandard2.0/Tizen.Uix.VoiceControl.dll": {}, + "ref/netstandard2.0/Tizen.Uix.VoiceControlManager.dll": {}, + "ref/netstandard2.0/Tizen.WebView.dll": {}, + "ref/netstandard2.0/Tizen.dll": {} + }, + "build": { + "build/tizen80/Tizen.NET.API8.props": {}, + "build/tizen80/Tizen.NET.API8.targets": {} + } + } + } + }, + "libraries": { + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Tizen.NET/8.0.0.15631": { + "sha512": "yRQf1/8Io6ZdYUyzsa/JwAxtaRFd2E3BcPM11Wwo0DXGNwxibi7pAnDzwZHoF8Vepgh7ccwboxEZh0vxtC/Wbg==", + "type": "package", + "path": "tizen.net/8.0.0.15631", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/tizen40/Tizen.NET.props", + "build/tizen40/Tizen.NET.targets", + "runtime.json", + "tizen.net.8.0.0.15631.nupkg.sha512", + "tizen.net.nuspec" + ] + }, + "Tizen.NET.API8/8.0.0.15631": { + "sha512": "kFYlBLkUXEp6f+nU6BvLj0r/kmqIsb8nBErvEUCF63NZB3U9rkijrXbZXU8oCKEl5xJ5JZv3atigDEAZhnfZTQ==", + "type": "package", + "path": "tizen.net.api8/8.0.0.15631", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/tizen80/LICENSE.Microsoft.NETCore.App.Ref.txt", + "build/tizen80/PlatformManifest.txt", + "build/tizen80/Tizen.NET.API8.props", + "build/tizen80/Tizen.NET.API8.targets", + "build/tizen80/ref/Microsoft.CSharp.dll", + "build/tizen80/ref/Microsoft.CSharp.xml", + "build/tizen80/ref/Microsoft.VisualBasic.Core.dll", + "build/tizen80/ref/Microsoft.VisualBasic.Core.xml", + "build/tizen80/ref/Microsoft.VisualBasic.dll", + "build/tizen80/ref/Microsoft.Win32.Primitives.dll", + "build/tizen80/ref/Microsoft.Win32.Primitives.xml", + "build/tizen80/ref/System.AppContext.dll", + "build/tizen80/ref/System.Buffers.dll", + "build/tizen80/ref/System.Buffers.xml", + "build/tizen80/ref/System.Collections.Concurrent.dll", + "build/tizen80/ref/System.Collections.Concurrent.xml", + "build/tizen80/ref/System.Collections.Immutable.dll", + "build/tizen80/ref/System.Collections.Immutable.xml", + "build/tizen80/ref/System.Collections.NonGeneric.dll", + "build/tizen80/ref/System.Collections.NonGeneric.xml", + "build/tizen80/ref/System.Collections.Specialized.dll", + "build/tizen80/ref/System.Collections.Specialized.xml", + "build/tizen80/ref/System.Collections.dll", + "build/tizen80/ref/System.Collections.xml", + "build/tizen80/ref/System.ComponentModel.Annotations.dll", + "build/tizen80/ref/System.ComponentModel.Annotations.xml", + "build/tizen80/ref/System.ComponentModel.DataAnnotations.dll", + "build/tizen80/ref/System.ComponentModel.EventBasedAsync.dll", + "build/tizen80/ref/System.ComponentModel.EventBasedAsync.xml", + "build/tizen80/ref/System.ComponentModel.Primitives.dll", + "build/tizen80/ref/System.ComponentModel.Primitives.xml", + "build/tizen80/ref/System.ComponentModel.TypeConverter.dll", + "build/tizen80/ref/System.ComponentModel.TypeConverter.xml", + "build/tizen80/ref/System.ComponentModel.dll", + "build/tizen80/ref/System.ComponentModel.xml", + "build/tizen80/ref/System.Configuration.dll", + "build/tizen80/ref/System.Console.dll", + "build/tizen80/ref/System.Console.xml", + "build/tizen80/ref/System.Core.dll", + "build/tizen80/ref/System.Data.Common.dll", + "build/tizen80/ref/System.Data.Common.xml", + "build/tizen80/ref/System.Data.DataSetExtensions.dll", + "build/tizen80/ref/System.Data.dll", + "build/tizen80/ref/System.Diagnostics.Contracts.dll", + "build/tizen80/ref/System.Diagnostics.Contracts.xml", + "build/tizen80/ref/System.Diagnostics.Debug.dll", + "build/tizen80/ref/System.Diagnostics.Debug.xml", + "build/tizen80/ref/System.Diagnostics.DiagnosticSource.dll", + "build/tizen80/ref/System.Diagnostics.DiagnosticSource.xml", + "build/tizen80/ref/System.Diagnostics.FileVersionInfo.dll", + "build/tizen80/ref/System.Diagnostics.FileVersionInfo.xml", + "build/tizen80/ref/System.Diagnostics.Process.dll", + "build/tizen80/ref/System.Diagnostics.Process.xml", + "build/tizen80/ref/System.Diagnostics.StackTrace.dll", + "build/tizen80/ref/System.Diagnostics.StackTrace.xml", + "build/tizen80/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/tizen80/ref/System.Diagnostics.TextWriterTraceListener.xml", + "build/tizen80/ref/System.Diagnostics.Tools.dll", + "build/tizen80/ref/System.Diagnostics.Tools.xml", + "build/tizen80/ref/System.Diagnostics.TraceSource.dll", + "build/tizen80/ref/System.Diagnostics.TraceSource.xml", + "build/tizen80/ref/System.Diagnostics.Tracing.dll", + "build/tizen80/ref/System.Diagnostics.Tracing.xml", + "build/tizen80/ref/System.Drawing.Primitives.dll", + "build/tizen80/ref/System.Drawing.Primitives.xml", + "build/tizen80/ref/System.Drawing.dll", + "build/tizen80/ref/System.Dynamic.Runtime.dll", + "build/tizen80/ref/System.Globalization.Calendars.dll", + "build/tizen80/ref/System.Globalization.Extensions.dll", + "build/tizen80/ref/System.Globalization.dll", + "build/tizen80/ref/System.IO.Compression.Brotli.dll", + "build/tizen80/ref/System.IO.Compression.Brotli.xml", + "build/tizen80/ref/System.IO.Compression.FileSystem.dll", + "build/tizen80/ref/System.IO.Compression.ZipFile.dll", + "build/tizen80/ref/System.IO.Compression.ZipFile.xml", + "build/tizen80/ref/System.IO.Compression.dll", + "build/tizen80/ref/System.IO.Compression.xml", + "build/tizen80/ref/System.IO.FileSystem.DriveInfo.dll", + "build/tizen80/ref/System.IO.FileSystem.DriveInfo.xml", + "build/tizen80/ref/System.IO.FileSystem.Primitives.dll", + "build/tizen80/ref/System.IO.FileSystem.Watcher.dll", + "build/tizen80/ref/System.IO.FileSystem.Watcher.xml", + "build/tizen80/ref/System.IO.FileSystem.dll", + "build/tizen80/ref/System.IO.FileSystem.xml", + "build/tizen80/ref/System.IO.IsolatedStorage.dll", + "build/tizen80/ref/System.IO.IsolatedStorage.xml", + "build/tizen80/ref/System.IO.MemoryMappedFiles.dll", + "build/tizen80/ref/System.IO.MemoryMappedFiles.xml", + "build/tizen80/ref/System.IO.Pipes.dll", + "build/tizen80/ref/System.IO.Pipes.xml", + "build/tizen80/ref/System.IO.UnmanagedMemoryStream.dll", + "build/tizen80/ref/System.IO.dll", + "build/tizen80/ref/System.Linq.Expressions.dll", + "build/tizen80/ref/System.Linq.Expressions.xml", + "build/tizen80/ref/System.Linq.Parallel.dll", + "build/tizen80/ref/System.Linq.Parallel.xml", + "build/tizen80/ref/System.Linq.Queryable.dll", + "build/tizen80/ref/System.Linq.Queryable.xml", + "build/tizen80/ref/System.Linq.dll", + "build/tizen80/ref/System.Linq.xml", + "build/tizen80/ref/System.Memory.dll", + "build/tizen80/ref/System.Memory.xml", + "build/tizen80/ref/System.Net.Http.dll", + "build/tizen80/ref/System.Net.Http.xml", + "build/tizen80/ref/System.Net.HttpListener.dll", + "build/tizen80/ref/System.Net.HttpListener.xml", + "build/tizen80/ref/System.Net.Mail.dll", + "build/tizen80/ref/System.Net.Mail.xml", + "build/tizen80/ref/System.Net.NameResolution.dll", + "build/tizen80/ref/System.Net.NameResolution.xml", + "build/tizen80/ref/System.Net.NetworkInformation.dll", + "build/tizen80/ref/System.Net.NetworkInformation.xml", + "build/tizen80/ref/System.Net.Ping.dll", + "build/tizen80/ref/System.Net.Ping.xml", + "build/tizen80/ref/System.Net.Primitives.dll", + "build/tizen80/ref/System.Net.Primitives.xml", + "build/tizen80/ref/System.Net.Requests.dll", + "build/tizen80/ref/System.Net.Requests.xml", + "build/tizen80/ref/System.Net.Security.dll", + "build/tizen80/ref/System.Net.Security.xml", + "build/tizen80/ref/System.Net.ServicePoint.dll", + "build/tizen80/ref/System.Net.ServicePoint.xml", + "build/tizen80/ref/System.Net.Sockets.dll", + "build/tizen80/ref/System.Net.Sockets.xml", + "build/tizen80/ref/System.Net.WebClient.dll", + "build/tizen80/ref/System.Net.WebClient.xml", + "build/tizen80/ref/System.Net.WebHeaderCollection.dll", + "build/tizen80/ref/System.Net.WebHeaderCollection.xml", + "build/tizen80/ref/System.Net.WebProxy.dll", + "build/tizen80/ref/System.Net.WebProxy.xml", + "build/tizen80/ref/System.Net.WebSockets.Client.dll", + "build/tizen80/ref/System.Net.WebSockets.Client.xml", + "build/tizen80/ref/System.Net.WebSockets.dll", + "build/tizen80/ref/System.Net.WebSockets.xml", + "build/tizen80/ref/System.Net.dll", + "build/tizen80/ref/System.Numerics.Vectors.dll", + "build/tizen80/ref/System.Numerics.Vectors.xml", + "build/tizen80/ref/System.Numerics.dll", + "build/tizen80/ref/System.ObjectModel.dll", + "build/tizen80/ref/System.ObjectModel.xml", + "build/tizen80/ref/System.Reflection.DispatchProxy.dll", + "build/tizen80/ref/System.Reflection.DispatchProxy.xml", + "build/tizen80/ref/System.Reflection.Emit.ILGeneration.dll", + "build/tizen80/ref/System.Reflection.Emit.ILGeneration.xml", + "build/tizen80/ref/System.Reflection.Emit.Lightweight.dll", + "build/tizen80/ref/System.Reflection.Emit.Lightweight.xml", + "build/tizen80/ref/System.Reflection.Emit.dll", + "build/tizen80/ref/System.Reflection.Emit.xml", + "build/tizen80/ref/System.Reflection.Extensions.dll", + "build/tizen80/ref/System.Reflection.Metadata.dll", + "build/tizen80/ref/System.Reflection.Metadata.xml", + "build/tizen80/ref/System.Reflection.Primitives.dll", + "build/tizen80/ref/System.Reflection.Primitives.xml", + "build/tizen80/ref/System.Reflection.TypeExtensions.dll", + "build/tizen80/ref/System.Reflection.TypeExtensions.xml", + "build/tizen80/ref/System.Reflection.dll", + "build/tizen80/ref/System.Resources.Reader.dll", + "build/tizen80/ref/System.Resources.ResourceManager.dll", + "build/tizen80/ref/System.Resources.ResourceManager.xml", + "build/tizen80/ref/System.Resources.Writer.dll", + "build/tizen80/ref/System.Resources.Writer.xml", + "build/tizen80/ref/System.Runtime.CompilerServices.Unsafe.dll", + "build/tizen80/ref/System.Runtime.CompilerServices.Unsafe.xml", + "build/tizen80/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/tizen80/ref/System.Runtime.CompilerServices.VisualC.xml", + "build/tizen80/ref/System.Runtime.Extensions.dll", + "build/tizen80/ref/System.Runtime.Extensions.xml", + "build/tizen80/ref/System.Runtime.Handles.dll", + "build/tizen80/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/tizen80/ref/System.Runtime.InteropServices.RuntimeInformation.xml", + "build/tizen80/ref/System.Runtime.InteropServices.WindowsRuntime.dll", + "build/tizen80/ref/System.Runtime.InteropServices.WindowsRuntime.xml", + "build/tizen80/ref/System.Runtime.InteropServices.dll", + "build/tizen80/ref/System.Runtime.InteropServices.xml", + "build/tizen80/ref/System.Runtime.Intrinsics.dll", + "build/tizen80/ref/System.Runtime.Intrinsics.xml", + "build/tizen80/ref/System.Runtime.Loader.dll", + "build/tizen80/ref/System.Runtime.Loader.xml", + "build/tizen80/ref/System.Runtime.Numerics.dll", + "build/tizen80/ref/System.Runtime.Numerics.xml", + "build/tizen80/ref/System.Runtime.Serialization.Formatters.dll", + "build/tizen80/ref/System.Runtime.Serialization.Formatters.xml", + "build/tizen80/ref/System.Runtime.Serialization.Json.dll", + "build/tizen80/ref/System.Runtime.Serialization.Json.xml", + "build/tizen80/ref/System.Runtime.Serialization.Primitives.dll", + "build/tizen80/ref/System.Runtime.Serialization.Primitives.xml", + "build/tizen80/ref/System.Runtime.Serialization.Xml.dll", + "build/tizen80/ref/System.Runtime.Serialization.Xml.xml", + "build/tizen80/ref/System.Runtime.Serialization.dll", + "build/tizen80/ref/System.Runtime.dll", + "build/tizen80/ref/System.Runtime.xml", + "build/tizen80/ref/System.Security.Claims.dll", + "build/tizen80/ref/System.Security.Claims.xml", + "build/tizen80/ref/System.Security.Cryptography.Algorithms.dll", + "build/tizen80/ref/System.Security.Cryptography.Algorithms.xml", + "build/tizen80/ref/System.Security.Cryptography.Csp.dll", + "build/tizen80/ref/System.Security.Cryptography.Csp.xml", + "build/tizen80/ref/System.Security.Cryptography.Encoding.dll", + "build/tizen80/ref/System.Security.Cryptography.Encoding.xml", + "build/tizen80/ref/System.Security.Cryptography.Primitives.dll", + "build/tizen80/ref/System.Security.Cryptography.Primitives.xml", + "build/tizen80/ref/System.Security.Cryptography.X509Certificates.dll", + "build/tizen80/ref/System.Security.Cryptography.X509Certificates.xml", + "build/tizen80/ref/System.Security.Principal.dll", + "build/tizen80/ref/System.Security.Principal.xml", + "build/tizen80/ref/System.Security.SecureString.dll", + "build/tizen80/ref/System.Security.dll", + "build/tizen80/ref/System.ServiceModel.Web.dll", + "build/tizen80/ref/System.ServiceProcess.dll", + "build/tizen80/ref/System.Text.Encoding.CodePages.dll", + "build/tizen80/ref/System.Text.Encoding.CodePages.xml", + "build/tizen80/ref/System.Text.Encoding.Extensions.dll", + "build/tizen80/ref/System.Text.Encoding.Extensions.xml", + "build/tizen80/ref/System.Text.Encoding.dll", + "build/tizen80/ref/System.Text.Encodings.Web.dll", + "build/tizen80/ref/System.Text.Encodings.Web.xml", + "build/tizen80/ref/System.Text.Json.dll", + "build/tizen80/ref/System.Text.Json.xml", + "build/tizen80/ref/System.Text.RegularExpressions.dll", + "build/tizen80/ref/System.Text.RegularExpressions.xml", + "build/tizen80/ref/System.Threading.Channels.dll", + "build/tizen80/ref/System.Threading.Channels.xml", + "build/tizen80/ref/System.Threading.Overlapped.dll", + "build/tizen80/ref/System.Threading.Overlapped.xml", + "build/tizen80/ref/System.Threading.Tasks.Dataflow.dll", + "build/tizen80/ref/System.Threading.Tasks.Dataflow.xml", + "build/tizen80/ref/System.Threading.Tasks.Extensions.dll", + "build/tizen80/ref/System.Threading.Tasks.Parallel.dll", + "build/tizen80/ref/System.Threading.Tasks.Parallel.xml", + "build/tizen80/ref/System.Threading.Tasks.dll", + "build/tizen80/ref/System.Threading.Tasks.xml", + "build/tizen80/ref/System.Threading.Thread.dll", + "build/tizen80/ref/System.Threading.Thread.xml", + "build/tizen80/ref/System.Threading.ThreadPool.dll", + "build/tizen80/ref/System.Threading.ThreadPool.xml", + "build/tizen80/ref/System.Threading.Timer.dll", + "build/tizen80/ref/System.Threading.Timer.xml", + "build/tizen80/ref/System.Threading.dll", + "build/tizen80/ref/System.Threading.xml", + "build/tizen80/ref/System.Transactions.Local.dll", + "build/tizen80/ref/System.Transactions.Local.xml", + "build/tizen80/ref/System.Transactions.dll", + "build/tizen80/ref/System.ValueTuple.dll", + "build/tizen80/ref/System.Web.HttpUtility.dll", + "build/tizen80/ref/System.Web.HttpUtility.xml", + "build/tizen80/ref/System.Web.dll", + "build/tizen80/ref/System.Windows.dll", + "build/tizen80/ref/System.Xml.Linq.dll", + "build/tizen80/ref/System.Xml.ReaderWriter.dll", + "build/tizen80/ref/System.Xml.ReaderWriter.xml", + "build/tizen80/ref/System.Xml.Serialization.dll", + "build/tizen80/ref/System.Xml.XDocument.dll", + "build/tizen80/ref/System.Xml.XDocument.xml", + "build/tizen80/ref/System.Xml.XPath.XDocument.dll", + "build/tizen80/ref/System.Xml.XPath.XDocument.xml", + "build/tizen80/ref/System.Xml.XPath.dll", + "build/tizen80/ref/System.Xml.XPath.xml", + "build/tizen80/ref/System.Xml.XmlDocument.dll", + "build/tizen80/ref/System.Xml.XmlSerializer.dll", + "build/tizen80/ref/System.Xml.XmlSerializer.xml", + "build/tizen80/ref/System.Xml.dll", + "build/tizen80/ref/System.dll", + "build/tizen80/ref/WindowsBase.dll", + "build/tizen80/ref/WindowsBase.xml", + "build/tizen80/ref/mscorlib.dll", + "build/tizen80/ref/netstandard.dll", + "ref/netstandard2.0/Design/Tizen.NUI.Design.dll", + "ref/netstandard2.0/ElmSharp.Wearable.dll", + "ref/netstandard2.0/ElmSharp.Wearable.xml", + "ref/netstandard2.0/ElmSharp.dll", + "ref/netstandard2.0/ElmSharp.xml", + "ref/netstandard2.0/Tizen.Account.AccountManager.dll", + "ref/netstandard2.0/Tizen.Account.AccountManager.xml", + "ref/netstandard2.0/Tizen.Account.FidoClient.dll", + "ref/netstandard2.0/Tizen.Account.FidoClient.xml", + "ref/netstandard2.0/Tizen.Account.OAuth2.dll", + "ref/netstandard2.0/Tizen.Account.OAuth2.xml", + "ref/netstandard2.0/Tizen.Account.SyncManager.dll", + "ref/netstandard2.0/Tizen.Account.SyncManager.xml", + "ref/netstandard2.0/Tizen.Applications.Alarm.dll", + "ref/netstandard2.0/Tizen.Applications.Alarm.xml", + "ref/netstandard2.0/Tizen.Applications.AttachPanel.dll", + "ref/netstandard2.0/Tizen.Applications.AttachPanel.xml", + "ref/netstandard2.0/Tizen.Applications.Badge.dll", + "ref/netstandard2.0/Tizen.Applications.Badge.xml", + "ref/netstandard2.0/Tizen.Applications.Common.dll", + "ref/netstandard2.0/Tizen.Applications.Common.xml", + "ref/netstandard2.0/Tizen.Applications.ComponentBased.ComponentManager.dll", + "ref/netstandard2.0/Tizen.Applications.ComponentBased.ComponentManager.xml", + "ref/netstandard2.0/Tizen.Applications.ComponentBased.Default.dll", + "ref/netstandard2.0/Tizen.Applications.ComponentBased.Default.xml", + "ref/netstandard2.0/Tizen.Applications.ComponentBased.dll", + "ref/netstandard2.0/Tizen.Applications.ComponentBased.xml", + "ref/netstandard2.0/Tizen.Applications.DataControl.dll", + "ref/netstandard2.0/Tizen.Applications.DataControl.xml", + "ref/netstandard2.0/Tizen.Applications.EventManager.dll", + "ref/netstandard2.0/Tizen.Applications.EventManager.xml", + "ref/netstandard2.0/Tizen.Applications.MessagePort.dll", + "ref/netstandard2.0/Tizen.Applications.MessagePort.xml", + "ref/netstandard2.0/Tizen.Applications.Notification.dll", + "ref/netstandard2.0/Tizen.Applications.Notification.xml", + "ref/netstandard2.0/Tizen.Applications.NotificationEventListener.dll", + "ref/netstandard2.0/Tizen.Applications.NotificationEventListener.xml", + "ref/netstandard2.0/Tizen.Applications.PackageManager.dll", + "ref/netstandard2.0/Tizen.Applications.PackageManager.xml", + "ref/netstandard2.0/Tizen.Applications.Preference.dll", + "ref/netstandard2.0/Tizen.Applications.Preference.xml", + "ref/netstandard2.0/Tizen.Applications.RemoteView.dll", + "ref/netstandard2.0/Tizen.Applications.RemoteView.xml", + "ref/netstandard2.0/Tizen.Applications.Service.dll", + "ref/netstandard2.0/Tizen.Applications.Service.xml", + "ref/netstandard2.0/Tizen.Applications.Shortcut.dll", + "ref/netstandard2.0/Tizen.Applications.Shortcut.xml", + "ref/netstandard2.0/Tizen.Applications.ToastMessage.dll", + "ref/netstandard2.0/Tizen.Applications.ToastMessage.xml", + "ref/netstandard2.0/Tizen.Applications.UI.dll", + "ref/netstandard2.0/Tizen.Applications.UI.xml", + "ref/netstandard2.0/Tizen.Applications.WatchApplication.dll", + "ref/netstandard2.0/Tizen.Applications.WatchApplication.xml", + "ref/netstandard2.0/Tizen.Applications.WatchfaceComplication.dll", + "ref/netstandard2.0/Tizen.Applications.WatchfaceComplication.xml", + "ref/netstandard2.0/Tizen.Applications.WidgetApplication.dll", + "ref/netstandard2.0/Tizen.Applications.WidgetApplication.xml", + "ref/netstandard2.0/Tizen.Applications.WidgetControl.dll", + "ref/netstandard2.0/Tizen.Applications.WidgetControl.xml", + "ref/netstandard2.0/Tizen.Content.Download.dll", + "ref/netstandard2.0/Tizen.Content.Download.xml", + "ref/netstandard2.0/Tizen.Content.MediaContent.dll", + "ref/netstandard2.0/Tizen.Content.MediaContent.xml", + "ref/netstandard2.0/Tizen.Content.MimeType.dll", + "ref/netstandard2.0/Tizen.Content.MimeType.xml", + "ref/netstandard2.0/Tizen.Context.dll", + "ref/netstandard2.0/Tizen.Context.xml", + "ref/netstandard2.0/Tizen.Location.Geofence.dll", + "ref/netstandard2.0/Tizen.Location.Geofence.xml", + "ref/netstandard2.0/Tizen.Location.dll", + "ref/netstandard2.0/Tizen.Location.xml", + "ref/netstandard2.0/Tizen.Log.dll", + "ref/netstandard2.0/Tizen.Log.xml", + "ref/netstandard2.0/Tizen.MachineLearning.Inference.dll", + "ref/netstandard2.0/Tizen.MachineLearning.Inference.xml", + "ref/netstandard2.0/Tizen.Maps.dll", + "ref/netstandard2.0/Tizen.Maps.xml", + "ref/netstandard2.0/Tizen.Messaging.Push.dll", + "ref/netstandard2.0/Tizen.Messaging.Push.xml", + "ref/netstandard2.0/Tizen.Messaging.dll", + "ref/netstandard2.0/Tizen.Messaging.xml", + "ref/netstandard2.0/Tizen.Multimedia.AudioIO.dll", + "ref/netstandard2.0/Tizen.Multimedia.AudioIO.xml", + "ref/netstandard2.0/Tizen.Multimedia.Camera.dll", + "ref/netstandard2.0/Tizen.Multimedia.Camera.xml", + "ref/netstandard2.0/Tizen.Multimedia.MediaCodec.dll", + "ref/netstandard2.0/Tizen.Multimedia.MediaCodec.xml", + "ref/netstandard2.0/Tizen.Multimedia.MediaPlayer.dll", + "ref/netstandard2.0/Tizen.Multimedia.MediaPlayer.xml", + "ref/netstandard2.0/Tizen.Multimedia.Metadata.dll", + "ref/netstandard2.0/Tizen.Multimedia.Metadata.xml", + "ref/netstandard2.0/Tizen.Multimedia.Radio.dll", + "ref/netstandard2.0/Tizen.Multimedia.Radio.xml", + "ref/netstandard2.0/Tizen.Multimedia.Recorder.dll", + "ref/netstandard2.0/Tizen.Multimedia.Recorder.xml", + "ref/netstandard2.0/Tizen.Multimedia.Remoting.dll", + "ref/netstandard2.0/Tizen.Multimedia.Remoting.xml", + "ref/netstandard2.0/Tizen.Multimedia.StreamRecorder.dll", + "ref/netstandard2.0/Tizen.Multimedia.StreamRecorder.xml", + "ref/netstandard2.0/Tizen.Multimedia.Util.dll", + "ref/netstandard2.0/Tizen.Multimedia.Util.xml", + "ref/netstandard2.0/Tizen.Multimedia.Vision.dll", + "ref/netstandard2.0/Tizen.Multimedia.Vision.xml", + "ref/netstandard2.0/Tizen.Multimedia.dll", + "ref/netstandard2.0/Tizen.Multimedia.xml", + "ref/netstandard2.0/Tizen.NUI.Components.dll", + "ref/netstandard2.0/Tizen.NUI.Components.xml", + "ref/netstandard2.0/Tizen.NUI.Wearable.dll", + "ref/netstandard2.0/Tizen.NUI.Wearable.xml", + "ref/netstandard2.0/Tizen.NUI.WindowSystem.dll", + "ref/netstandard2.0/Tizen.NUI.WindowSystem.xml", + "ref/netstandard2.0/Tizen.NUI.dll", + "ref/netstandard2.0/Tizen.NUI.xml", + "ref/netstandard2.0/Tizen.Network.Bluetooth.dll", + "ref/netstandard2.0/Tizen.Network.Bluetooth.xml", + "ref/netstandard2.0/Tizen.Network.Connection.dll", + "ref/netstandard2.0/Tizen.Network.Connection.xml", + "ref/netstandard2.0/Tizen.Network.IoTConnectivity.dll", + "ref/netstandard2.0/Tizen.Network.IoTConnectivity.xml", + "ref/netstandard2.0/Tizen.Network.Nfc.dll", + "ref/netstandard2.0/Tizen.Network.Nfc.xml", + "ref/netstandard2.0/Tizen.Network.Nsd.dll", + "ref/netstandard2.0/Tizen.Network.Nsd.xml", + "ref/netstandard2.0/Tizen.Network.Smartcard.dll", + "ref/netstandard2.0/Tizen.Network.Smartcard.xml", + "ref/netstandard2.0/Tizen.Network.Stc.dll", + "ref/netstandard2.0/Tizen.Network.Stc.xml", + "ref/netstandard2.0/Tizen.Network.WiFi.dll", + "ref/netstandard2.0/Tizen.Network.WiFi.xml", + "ref/netstandard2.0/Tizen.Network.WiFiDirect.dll", + "ref/netstandard2.0/Tizen.Network.WiFiDirect.xml", + "ref/netstandard2.0/Tizen.Nlp.dll", + "ref/netstandard2.0/Tizen.Nlp.xml", + "ref/netstandard2.0/Tizen.PhonenumberUtils.dll", + "ref/netstandard2.0/Tizen.PhonenumberUtils.xml", + "ref/netstandard2.0/Tizen.Pims.Calendar.dll", + "ref/netstandard2.0/Tizen.Pims.Calendar.xml", + "ref/netstandard2.0/Tizen.Pims.Contacts.dll", + "ref/netstandard2.0/Tizen.Pims.Contacts.xml", + "ref/netstandard2.0/Tizen.Security.DevicePolicyManager.dll", + "ref/netstandard2.0/Tizen.Security.DevicePolicyManager.xml", + "ref/netstandard2.0/Tizen.Security.PrivacyPrivilegeManager.dll", + "ref/netstandard2.0/Tizen.Security.PrivacyPrivilegeManager.xml", + "ref/netstandard2.0/Tizen.Security.SecureRepository.dll", + "ref/netstandard2.0/Tizen.Security.SecureRepository.xml", + "ref/netstandard2.0/Tizen.Security.TEEC.dll", + "ref/netstandard2.0/Tizen.Security.TEEC.xml", + "ref/netstandard2.0/Tizen.Security.dll", + "ref/netstandard2.0/Tizen.Security.xml", + "ref/netstandard2.0/Tizen.Sensor.dll", + "ref/netstandard2.0/Tizen.Sensor.xml", + "ref/netstandard2.0/Tizen.System.Feedback.dll", + "ref/netstandard2.0/Tizen.System.Feedback.xml", + "ref/netstandard2.0/Tizen.System.Information.dll", + "ref/netstandard2.0/Tizen.System.Information.xml", + "ref/netstandard2.0/Tizen.System.MediaKey.dll", + "ref/netstandard2.0/Tizen.System.MediaKey.xml", + "ref/netstandard2.0/Tizen.System.PlatformConfig.dll", + "ref/netstandard2.0/Tizen.System.PlatformConfig.xml", + "ref/netstandard2.0/Tizen.System.PowerUsage.dll", + "ref/netstandard2.0/Tizen.System.PowerUsage.xml", + "ref/netstandard2.0/Tizen.System.Storage.dll", + "ref/netstandard2.0/Tizen.System.Storage.xml", + "ref/netstandard2.0/Tizen.System.SystemSettings.dll", + "ref/netstandard2.0/Tizen.System.SystemSettings.xml", + "ref/netstandard2.0/Tizen.System.Usb.dll", + "ref/netstandard2.0/Tizen.System.Usb.xml", + "ref/netstandard2.0/Tizen.System.dll", + "ref/netstandard2.0/Tizen.System.xml", + "ref/netstandard2.0/Tizen.Telephony.dll", + "ref/netstandard2.0/Tizen.Telephony.xml", + "ref/netstandard2.0/Tizen.Tracer.dll", + "ref/netstandard2.0/Tizen.Tracer.xml", + "ref/netstandard2.0/Tizen.Uix.InputMethod.dll", + "ref/netstandard2.0/Tizen.Uix.InputMethod.xml", + "ref/netstandard2.0/Tizen.Uix.InputMethodManager.dll", + "ref/netstandard2.0/Tizen.Uix.InputMethodManager.xml", + "ref/netstandard2.0/Tizen.Uix.Stt.dll", + "ref/netstandard2.0/Tizen.Uix.Stt.xml", + "ref/netstandard2.0/Tizen.Uix.SttEngine.dll", + "ref/netstandard2.0/Tizen.Uix.SttEngine.xml", + "ref/netstandard2.0/Tizen.Uix.Tts.dll", + "ref/netstandard2.0/Tizen.Uix.Tts.xml", + "ref/netstandard2.0/Tizen.Uix.TtsEngine.dll", + "ref/netstandard2.0/Tizen.Uix.TtsEngine.xml", + "ref/netstandard2.0/Tizen.Uix.VoiceControl.dll", + "ref/netstandard2.0/Tizen.Uix.VoiceControl.xml", + "ref/netstandard2.0/Tizen.Uix.VoiceControlManager.dll", + "ref/netstandard2.0/Tizen.Uix.VoiceControlManager.xml", + "ref/netstandard2.0/Tizen.WebView.dll", + "ref/netstandard2.0/Tizen.WebView.xml", + "ref/netstandard2.0/Tizen.dll", + "ref/netstandard2.0/Tizen.xml", + "tizen.net.api8.8.0.0.15631.nupkg.sha512", + "tizen.net.api8.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "Tizen,Version=v8.0": [ + "Tizen.NET >= 8.0.0.15631" + ] + }, + "packageFolders": { + "C:\\Users\\jihoon48.kim\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Y:\\github\\ise-default-nui\\ISEDefaultNUI\\ISEDefaultNUI.csproj", + "projectName": "ISEDefaultNUI", + "projectPath": "Y:\\github\\ise-default-nui\\ISEDefaultNUI\\ISEDefaultNUI.csproj", + "packagesPath": "C:\\Users\\jihoon48.kim\\.nuget\\packages\\", + "outputPath": "Y:\\github\\ise-default-nui\\ISEDefaultNUI\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\jihoon48.kim\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "tizen80" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "Y:\\git\\ses\\SamsungAINmt\\artifacts\\Release": {}, + "Y:\\github\\TizenFX.2\\Artifacts": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://tizen.myget.org/F/dotnet/api/v3/index.json": {}, + "https://tizen.myget.org/F/ses-dev/api/v3/index.json": {}, + "https://tizen.myget.org/F/ses/api/v3/index.json": {} + }, + "frameworks": { + "tizen80": { + "targetAlias": "tizen80", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "tizen80": { + "targetAlias": "tizen80", + "dependencies": { + "Tizen.NET": { + "include": "Compile, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[8.0.0.15631, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/ISEDefaultNUI/obj/project.nuget.cache b/ISEDefaultNUI/obj/project.nuget.cache new file mode 100644 index 0000000..d51674c --- /dev/null +++ b/ISEDefaultNUI/obj/project.nuget.cache @@ -0,0 +1,12 @@ +{ + "version": 2, + "dgSpecHash": "qiLq0t4bu+Xrv+hyXfIDMFtuJHCFOkfaaAfU+lfqbqBmQy1O85nvsbIKhPJAw6ix3HPDygqNayr9hamRqMYq3g==", + "success": true, + "projectFilePath": "Y:\\github\\ise-default-nui\\ISEDefaultNUI\\ISEDefaultNUI.csproj", + "expectedPackageFiles": [ + "C:\\Users\\jihoon48.kim\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\jihoon48.kim\\.nuget\\packages\\tizen.net\\8.0.0.15631\\tizen.net.8.0.0.15631.nupkg.sha512", + "C:\\Users\\jihoon48.kim\\.nuget\\packages\\tizen.net.api8\\8.0.0.15631\\tizen.net.api8.8.0.0.15631.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/ISEDefaultNUI/res/image/btn_bg_press.png b/ISEDefaultNUI/res/image/btn_bg_press.png new file mode 100644 index 0000000..347a46c Binary files /dev/null and b/ISEDefaultNUI/res/image/btn_bg_press.png differ diff --git a/ISEDefaultNUI/res/image/btn_voice.png b/ISEDefaultNUI/res/image/btn_voice.png new file mode 100644 index 0000000..227b950 Binary files /dev/null and b/ISEDefaultNUI/res/image/btn_voice.png differ diff --git a/ISEDefaultNUI/res/image/btn_voice_dim.png b/ISEDefaultNUI/res/image/btn_voice_dim.png new file mode 100644 index 0000000..347d8cd Binary files /dev/null and b/ISEDefaultNUI/res/image/btn_voice_dim.png differ diff --git a/ISEDefaultNUI/res/image/btn_voice_press.png b/ISEDefaultNUI/res/image/btn_voice_press.png new file mode 100644 index 0000000..199fcd5 Binary files /dev/null and b/ISEDefaultNUI/res/image/btn_voice_press.png differ diff --git a/ISEDefaultNUI/res/image/button/btn_arrow_s_left.png b/ISEDefaultNUI/res/image/button/btn_arrow_s_left.png new file mode 100644 index 0000000..244b069 Binary files /dev/null and b/ISEDefaultNUI/res/image/button/btn_arrow_s_left.png differ diff --git a/ISEDefaultNUI/res/image/button/btn_arrow_s_right.png b/ISEDefaultNUI/res/image/button/btn_arrow_s_right.png new file mode 100644 index 0000000..5fbe428 Binary files /dev/null and b/ISEDefaultNUI/res/image/button/btn_arrow_s_right.png differ diff --git a/ISEDefaultNUI/res/image/button/btn_doubletab.#.png b/ISEDefaultNUI/res/image/button/btn_doubletab.#.png new file mode 100644 index 0000000..bc9bcce Binary files /dev/null and b/ISEDefaultNUI/res/image/button/btn_doubletab.#.png differ diff --git a/ISEDefaultNUI/res/image/button/language_change_popup_bg.png b/ISEDefaultNUI/res/image/button/language_change_popup_bg.png new file mode 100644 index 0000000..dbf45ed Binary files /dev/null and b/ISEDefaultNUI/res/image/button/language_change_popup_bg.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_crown.png b/ISEDefaultNUI/res/image/emotion/icon_crown.png new file mode 100644 index 0000000..9cba796 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_crown.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_crown_dim.png b/ISEDefaultNUI/res/image/emotion/icon_crown_dim.png new file mode 100644 index 0000000..167faa0 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_crown_dim.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_crown_press.png b/ISEDefaultNUI/res/image/emotion/icon_crown_press.png new file mode 100644 index 0000000..662ad98 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_crown_press.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_dog.png b/ISEDefaultNUI/res/image/emotion/icon_dog.png new file mode 100644 index 0000000..5a3f7a2 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_dog.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_dog_dim.png b/ISEDefaultNUI/res/image/emotion/icon_dog_dim.png new file mode 100644 index 0000000..30046eb Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_dog_dim.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_dog_press.png b/ISEDefaultNUI/res/image/emotion/icon_dog_press.png new file mode 100644 index 0000000..b6935cf Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_dog_press.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_emotion.png b/ISEDefaultNUI/res/image/emotion/icon_emotion.png new file mode 100644 index 0000000..39c696e Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_emotion.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_emotion_dim.png b/ISEDefaultNUI/res/image/emotion/icon_emotion_dim.png new file mode 100644 index 0000000..7682521 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_emotion_dim.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_emotion_press.png b/ISEDefaultNUI/res/image/emotion/icon_emotion_press.png new file mode 100644 index 0000000..8b7bdb0 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_emotion_press.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_house.png b/ISEDefaultNUI/res/image/emotion/icon_house.png new file mode 100644 index 0000000..d1d2ca2 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_house.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_house_dim.png b/ISEDefaultNUI/res/image/emotion/icon_house_dim.png new file mode 100644 index 0000000..d2960b0 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_house_dim.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_house_press.png b/ISEDefaultNUI/res/image/emotion/icon_house_press.png new file mode 100644 index 0000000..167069c Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_house_press.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_recent.png b/ISEDefaultNUI/res/image/emotion/icon_recent.png new file mode 100644 index 0000000..6def112 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_recent.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_recent_dim.png b/ISEDefaultNUI/res/image/emotion/icon_recent_dim.png new file mode 100644 index 0000000..528969c Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_recent_dim.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_recent_press.png b/ISEDefaultNUI/res/image/emotion/icon_recent_press.png new file mode 100644 index 0000000..913c2ee Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_recent_press.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_star.png b/ISEDefaultNUI/res/image/emotion/icon_star.png new file mode 100644 index 0000000..228bc0a Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_star.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_star_dim.png b/ISEDefaultNUI/res/image/emotion/icon_star_dim.png new file mode 100644 index 0000000..418de98 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_star_dim.png differ diff --git a/ISEDefaultNUI/res/image/emotion/icon_star_press.png b/ISEDefaultNUI/res/image/emotion/icon_star_press.png new file mode 100644 index 0000000..05bd9a6 Binary files /dev/null and b/ISEDefaultNUI/res/image/emotion/icon_star_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_back_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_back_dim.png new file mode 100644 index 0000000..f0709db Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_back_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_back_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_back_nor.png new file mode 100644 index 0000000..9cbb924 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_back_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_back_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_back_press.png new file mode 100644 index 0000000..afbba03 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_back_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_camera_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_camera_dim.png new file mode 100644 index 0000000..5a9568e Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_camera_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_camera_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_camera_nor.png new file mode 100644 index 0000000..6a090c4 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_camera_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_camera_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_camera_press.png new file mode 100644 index 0000000..4b89e73 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_camera_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_clipboard_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_clipboard_dim.png new file mode 100644 index 0000000..27ffdfd Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_clipboard_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_clipboard_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_clipboard_nor.png new file mode 100644 index 0000000..60417f2 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_clipboard_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_clipboard_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_clipboard_press.png new file mode 100644 index 0000000..6518af5 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_clipboard_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_emotion_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_emotion_dim.png new file mode 100644 index 0000000..b78f67e Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_emotion_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_emotion_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_emotion_nor.png new file mode 100644 index 0000000..b3ca856 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_emotion_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_emotion_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_emotion_press.png new file mode 100644 index 0000000..7ac55e7 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_emotion_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_enter_qwerty_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_enter_qwerty_dim.png new file mode 100644 index 0000000..ec7a410 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_enter_qwerty_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_enter_qwerty_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_enter_qwerty_nor.png new file mode 100644 index 0000000..d4f82de Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_enter_qwerty_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_enter_qwerty_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_enter_qwerty_press.png new file mode 100644 index 0000000..7cb4978 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_enter_qwerty_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_floating_keypad_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_floating_keypad_dim.png new file mode 100644 index 0000000..3450b31 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_floating_keypad_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_floating_keypad_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_floating_keypad_nor.png new file mode 100644 index 0000000..5949d12 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_floating_keypad_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_floating_keypad_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_floating_keypad_press.png new file mode 100644 index 0000000..0fc0246 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_floating_keypad_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_keyboard_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_keyboard_dim.png new file mode 100644 index 0000000..5687ae8 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_keyboard_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_keyboard_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_keyboard_nor.png new file mode 100644 index 0000000..5465341 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_keyboard_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_keyboard_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_keyboard_press.png new file mode 100644 index 0000000..f679475 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_keyboard_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_mic_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_mic_dim.png new file mode 100644 index 0000000..a58a55a Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_mic_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_mic_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_mic_nor.png new file mode 100644 index 0000000..c3d9b0e Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_mic_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_mic_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_mic_press.png new file mode 100644 index 0000000..e6a92d2 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_mic_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_qr_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_qr_dim.png new file mode 100644 index 0000000..0292ffc Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_qr_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_qr_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_qr_nor.png new file mode 100644 index 0000000..9aa4672 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_qr_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_qr_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_qr_press.png new file mode 100644 index 0000000..afe86ea Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_qr_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_search_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_search_dim.png new file mode 100644 index 0000000..d4d817b Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_search_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_search_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_search_nor.png new file mode 100644 index 0000000..c93100b Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_search_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_search_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_search_press.png new file mode 100644 index 0000000..5d11067 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_search_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_setting_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_setting_dim.png new file mode 100644 index 0000000..e020132 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_setting_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_setting_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_setting_nor.png new file mode 100644 index 0000000..45b75c4 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_setting_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_setting_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_setting_press.png new file mode 100644 index 0000000..bac1e29 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_setting_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_shift_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_dim.png new file mode 100644 index 0000000..193e8d7 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_shift_doubletab.png b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_doubletab.png new file mode 100644 index 0000000..6ad5c8d Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_doubletab.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_shift_doubletabpress.png b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_doubletabpress.png new file mode 100644 index 0000000..e3c6d3c Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_doubletabpress.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_shift_normal.png b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_normal.png new file mode 100644 index 0000000..6a6ee7a Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_normal.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_shift_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_press.png new file mode 100644 index 0000000..6ad5c8d Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_shift_tab.png b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_tab.png new file mode 100644 index 0000000..272f1cc Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_shift_tab.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_sticker_dim.png b/ISEDefaultNUI/res/image/icon/54x54/icon_sticker_dim.png new file mode 100644 index 0000000..adb21a5 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_sticker_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_sticker_nor.png b/ISEDefaultNUI/res/image/icon/54x54/icon_sticker_nor.png new file mode 100644 index 0000000..adb21a5 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_sticker_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_sticker_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_sticker_press.png new file mode 100644 index 0000000..adb21a5 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_sticker_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_translation.png b/ISEDefaultNUI/res/image/icon/54x54/icon_translation.png new file mode 100644 index 0000000..d4beb50 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_translation.png differ diff --git a/ISEDefaultNUI/res/image/icon/54x54/icon_translation_press.png b/ISEDefaultNUI/res/image/icon/54x54/icon_translation_press.png new file mode 100644 index 0000000..54b8c5a Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/54x54/icon_translation_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_back_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_back_dim.png new file mode 100644 index 0000000..6b84962 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_back_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_back_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_back_nor.png new file mode 100644 index 0000000..b143c3a Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_back_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_back_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_back_press.png new file mode 100644 index 0000000..4cc2842 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_back_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_camera_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_camera_dim.png new file mode 100644 index 0000000..56278d8 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_camera_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_camera_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_camera_nor.png new file mode 100644 index 0000000..5974995 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_camera_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_camera_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_camera_press.png new file mode 100644 index 0000000..328b019 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_camera_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_clipboard_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_clipboard_dim.png new file mode 100644 index 0000000..4373e40 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_clipboard_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_clipboard_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_clipboard_nor.png new file mode 100644 index 0000000..2f29309 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_clipboard_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_clipboard_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_clipboard_press.png new file mode 100644 index 0000000..9c010c7 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_clipboard_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_emotion_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_emotion_dim.png new file mode 100644 index 0000000..d2d18f4 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_emotion_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_emotion_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_emotion_nor.png new file mode 100644 index 0000000..1d3cfc0 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_emotion_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_emotion_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_emotion_press.png new file mode 100644 index 0000000..5b59837 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_emotion_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_enter_qwerty_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_enter_qwerty_dim.png new file mode 100644 index 0000000..d85aafb Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_enter_qwerty_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_enter_qwerty_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_enter_qwerty_nor.png new file mode 100644 index 0000000..1d9c4e2 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_enter_qwerty_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_enter_qwerty_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_enter_qwerty_press.png new file mode 100644 index 0000000..49fdf15 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_enter_qwerty_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_floating_keypad_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_floating_keypad_dim.png new file mode 100644 index 0000000..562531e Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_floating_keypad_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_floating_keypad_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_floating_keypad_nor.png new file mode 100644 index 0000000..8486073 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_floating_keypad_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_floating_keypad_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_floating_keypad_press.png new file mode 100644 index 0000000..42359de Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_floating_keypad_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_keyboard_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_keyboard_dim.png new file mode 100644 index 0000000..5ad4fb7 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_keyboard_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_keyboard_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_keyboard_nor.png new file mode 100644 index 0000000..2061200 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_keyboard_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_keyboard_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_keyboard_press.png new file mode 100644 index 0000000..2e3376f Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_keyboard_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_mic_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_mic_dim.png new file mode 100644 index 0000000..bf60154 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_mic_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_mic_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_mic_nor.png new file mode 100644 index 0000000..a9eed79 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_mic_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_mic_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_mic_press.png new file mode 100644 index 0000000..e03d8a5 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_mic_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_qr_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_qr_dim.png new file mode 100644 index 0000000..33f45ff Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_qr_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_qr_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_qr_nor.png new file mode 100644 index 0000000..9423554 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_qr_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_qr_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_qr_press.png new file mode 100644 index 0000000..641ae39 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_qr_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_search_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_search_dim.png new file mode 100644 index 0000000..3a1a288 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_search_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_search_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_search_nor.png new file mode 100644 index 0000000..abb220f Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_search_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_search_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_search_press.png new file mode 100644 index 0000000..e229912 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_search_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_setting_dim.png b/ISEDefaultNUI/res/image/icon/65x65/icon_setting_dim.png new file mode 100644 index 0000000..34ee53c Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_setting_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_setting_nor.png b/ISEDefaultNUI/res/image/icon/65x65/icon_setting_nor.png new file mode 100644 index 0000000..df3870c Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_setting_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon/65x65/icon_setting_press.png b/ISEDefaultNUI/res/image/icon/65x65/icon_setting_press.png new file mode 100644 index 0000000..180891b Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/65x65/icon_setting_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_camera.png b/ISEDefaultNUI/res/image/icon/bubble/icon_camera.png new file mode 100644 index 0000000..972069a Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_camera.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_camera_dim.png b/ISEDefaultNUI/res/image/icon/bubble/icon_camera_dim.png new file mode 100644 index 0000000..d43ac18 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_camera_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_camera_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_camera_press.png new file mode 100644 index 0000000..70d9fe4 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_camera_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_clipboard.png b/ISEDefaultNUI/res/image/icon/bubble/icon_clipboard.png new file mode 100644 index 0000000..782f764 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_clipboard.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_clipboard_dim.png b/ISEDefaultNUI/res/image/icon/bubble/icon_clipboard_dim.png new file mode 100644 index 0000000..22c2b39 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_clipboard_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_clipboard_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_clipboard_press.png new file mode 100644 index 0000000..0f51021 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_clipboard_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_emotion.png b/ISEDefaultNUI/res/image/icon/bubble/icon_emotion.png new file mode 100644 index 0000000..db9af9c Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_emotion.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_emotion_dim.png b/ISEDefaultNUI/res/image/icon/bubble/icon_emotion_dim.png new file mode 100644 index 0000000..33986b6 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_emotion_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_emotion_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_emotion_press.png new file mode 100644 index 0000000..f4c7db0 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_emotion_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_floating_keypad.png b/ISEDefaultNUI/res/image/icon/bubble/icon_floating_keypad.png new file mode 100644 index 0000000..ee67c90 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_floating_keypad.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_floating_keypad_dim.png b/ISEDefaultNUI/res/image/icon/bubble/icon_floating_keypad_dim.png new file mode 100644 index 0000000..00c340c Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_floating_keypad_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_floating_keypad_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_floating_keypad_press.png new file mode 100644 index 0000000..ee67c90 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_floating_keypad_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_keyboard.png b/ISEDefaultNUI/res/image/icon/bubble/icon_keyboard.png new file mode 100644 index 0000000..12c7049 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_keyboard.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_keyboard_dim.png b/ISEDefaultNUI/res/image/icon/bubble/icon_keyboard_dim.png new file mode 100644 index 0000000..c65ce3b Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_keyboard_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_keyboard_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_keyboard_press.png new file mode 100644 index 0000000..8d7004d Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_keyboard_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_mic.png b/ISEDefaultNUI/res/image/icon/bubble/icon_mic.png new file mode 100644 index 0000000..a424d57 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_mic.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_mic_dim.png b/ISEDefaultNUI/res/image/icon/bubble/icon_mic_dim.png new file mode 100644 index 0000000..b7199cb Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_mic_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_mic_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_mic_press.png new file mode 100644 index 0000000..152cdc2 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_mic_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_qr.png b/ISEDefaultNUI/res/image/icon/bubble/icon_qr.png new file mode 100644 index 0000000..a186ed1 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_qr.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_qr_dim.png b/ISEDefaultNUI/res/image/icon/bubble/icon_qr_dim.png new file mode 100644 index 0000000..a45d446 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_qr_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_qr_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_qr_press.png new file mode 100644 index 0000000..04f08e7 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_qr_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_settings.png b/ISEDefaultNUI/res/image/icon/bubble/icon_settings.png new file mode 100644 index 0000000..3667afa Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_settings.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_settings_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_settings_press.png new file mode 100644 index 0000000..c488edd Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_settings_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_settings_press_dim.png b/ISEDefaultNUI/res/image/icon/bubble/icon_settings_press_dim.png new file mode 100644 index 0000000..c242771 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_settings_press_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_sticker.png b/ISEDefaultNUI/res/image/icon/bubble/icon_sticker.png new file mode 100644 index 0000000..a440023 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_sticker.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_sticker_dim.png b/ISEDefaultNUI/res/image/icon/bubble/icon_sticker_dim.png new file mode 100644 index 0000000..d29a90a Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_sticker_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_sticker_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_sticker_press.png new file mode 100644 index 0000000..a440023 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_sticker_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_translation.png b/ISEDefaultNUI/res/image/icon/bubble/icon_translation.png new file mode 100644 index 0000000..d4beb50 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_translation.png differ diff --git a/ISEDefaultNUI/res/image/icon/bubble/icon_translation_press.png b/ISEDefaultNUI/res/image/icon/bubble/icon_translation_press.png new file mode 100644 index 0000000..54b8c5a Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/bubble/icon_translation_press.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_cue.png b/ISEDefaultNUI/res/image/icon/icon_q_cue.png new file mode 100644 index 0000000..76eb1d7 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_cue.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_cue_02.png b/ISEDefaultNUI/res/image/icon/icon_q_cue_02.png new file mode 100644 index 0000000..1e6f7dd Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_cue_02.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_mirrored_question.png b/ISEDefaultNUI/res/image/icon/icon_q_mirrored_question.png new file mode 100644 index 0000000..2d4e723 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_mirrored_question.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_mirrored_question_02.png b/ISEDefaultNUI/res/image/icon/icon_q_mirrored_question_02.png new file mode 100644 index 0000000..79e76be Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_mirrored_question_02.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_question.png b/ISEDefaultNUI/res/image/icon/icon_q_question.png new file mode 100644 index 0000000..1618137 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_question.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_question_02.png b/ISEDefaultNUI/res/image/icon/icon_q_question_02.png new file mode 100644 index 0000000..d42b0b3 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_question_02.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_setting.png b/ISEDefaultNUI/res/image/icon/icon_q_setting.png new file mode 100644 index 0000000..455e98f Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_setting.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_setting_02.png b/ISEDefaultNUI/res/image/icon/icon_q_setting_02.png new file mode 100644 index 0000000..0939b59 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_setting_02.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_voice.png b/ISEDefaultNUI/res/image/icon/icon_q_voice.png new file mode 100644 index 0000000..9f18c93 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_voice.png differ diff --git a/ISEDefaultNUI/res/image/icon/icon_q_voice_02.png b/ISEDefaultNUI/res/image/icon/icon_q_voice_02.png new file mode 100644 index 0000000..0fe8431 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon/icon_q_voice_02.png differ diff --git a/ISEDefaultNUI/res/image/icon_additional_characters.png b/ISEDefaultNUI/res/image/icon_additional_characters.png new file mode 100644 index 0000000..9cd5fa6 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_additional_characters.png differ diff --git a/ISEDefaultNUI/res/image/icon_back_dim.png b/ISEDefaultNUI/res/image/icon_back_dim.png new file mode 100644 index 0000000..1f95758 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_back_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon_back_nor.png b/ISEDefaultNUI/res/image/icon_back_nor.png new file mode 100644 index 0000000..d9f1681 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_back_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon_back_press.png b/ISEDefaultNUI/res/image/icon_back_press.png new file mode 100644 index 0000000..d9f1681 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_back_press.png differ diff --git a/ISEDefaultNUI/res/image/icon_recent.png b/ISEDefaultNUI/res/image/icon_recent.png new file mode 100644 index 0000000..6def112 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_recent.png differ diff --git a/ISEDefaultNUI/res/image/icon_space_dim.png b/ISEDefaultNUI/res/image/icon_space_dim.png new file mode 100644 index 0000000..3388320 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_space_dim.png differ diff --git a/ISEDefaultNUI/res/image/icon_space_dim_02.png b/ISEDefaultNUI/res/image/icon_space_dim_02.png new file mode 100644 index 0000000..660a865 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_space_dim_02.png differ diff --git a/ISEDefaultNUI/res/image/icon_space_highlight.png b/ISEDefaultNUI/res/image/icon_space_highlight.png new file mode 100644 index 0000000..3fcd1a7 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_space_highlight.png differ diff --git a/ISEDefaultNUI/res/image/icon_space_highlight_02.png b/ISEDefaultNUI/res/image/icon_space_highlight_02.png new file mode 100644 index 0000000..ea50271 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_space_highlight_02.png differ diff --git a/ISEDefaultNUI/res/image/icon_space_nor.png b/ISEDefaultNUI/res/image/icon_space_nor.png new file mode 100644 index 0000000..26297c9 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_space_nor.png differ diff --git a/ISEDefaultNUI/res/image/icon_space_nor_02.png b/ISEDefaultNUI/res/image/icon_space_nor_02.png new file mode 100644 index 0000000..7e72c77 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_space_nor_02.png differ diff --git a/ISEDefaultNUI/res/image/icon_space_press.png b/ISEDefaultNUI/res/image/icon_space_press.png new file mode 100644 index 0000000..1181082 Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_space_press.png differ diff --git a/ISEDefaultNUI/res/image/icon_space_press_02.png b/ISEDefaultNUI/res/image/icon_space_press_02.png new file mode 100644 index 0000000..2c8d6fb Binary files /dev/null and b/ISEDefaultNUI/res/image/icon_space_press_02.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/btn_01.#.png b/ISEDefaultNUI/res/image/nine patch/btn_01.#.png new file mode 100644 index 0000000..8065c27 Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/btn_01.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/btn_02.#.png b/ISEDefaultNUI/res/image/nine patch/btn_02.#.png new file mode 100644 index 0000000..0596409 Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/btn_02.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/btn_doubletab.#.png b/ISEDefaultNUI/res/image/nine patch/btn_doubletab.#.png new file mode 100644 index 0000000..bc9bcce Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/btn_doubletab.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/btn_press.#.png b/ISEDefaultNUI/res/image/nine patch/btn_press.#.png new file mode 100644 index 0000000..868850c Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/btn_press.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/popup_bg.#.png b/ISEDefaultNUI/res/image/nine patch/popup_bg.#.png new file mode 100644 index 0000000..bb67bdb Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/popup_bg.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/popup_bg_press_down_right.#.png b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_down_right.#.png new file mode 100644 index 0000000..03d9a48 Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_down_right.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/popup_bg_press_dwon_left.#.png b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_dwon_left.#.png new file mode 100644 index 0000000..f0b3d41 Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_dwon_left.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/popup_bg_press_middle.#.png b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_middle.#.png new file mode 100644 index 0000000..4add630 Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_middle.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/popup_bg_press_top_left.#.png b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_top_left.#.png new file mode 100644 index 0000000..d956725 Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_top_left.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/popup_bg_press_top_right.#.png b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_top_right.#.png new file mode 100644 index 0000000..2ce9285 Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/popup_bg_press_top_right.#.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/popup_line.9.png b/ISEDefaultNUI/res/image/nine patch/popup_line.9.png new file mode 100644 index 0000000..9a0868b Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/popup_line.9.png differ diff --git a/ISEDefaultNUI/res/image/nine patch/popup_stroke.#.png b/ISEDefaultNUI/res/image/nine patch/popup_stroke.#.png new file mode 100644 index 0000000..a5439b9 Binary files /dev/null and b/ISEDefaultNUI/res/image/nine patch/popup_stroke.#.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_ar_emoji.png b/ISEDefaultNUI/res/image/sticker/icon_ar_emoji.png new file mode 100644 index 0000000..8dc356c Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_ar_emoji.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_ar_emoji_dim.png b/ISEDefaultNUI/res/image/sticker/icon_ar_emoji_dim.png new file mode 100644 index 0000000..891d5ad Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_ar_emoji_dim.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_ar_emoji_press.png b/ISEDefaultNUI/res/image/sticker/icon_ar_emoji_press.png new file mode 100644 index 0000000..891d5ad Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_ar_emoji_press.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_bitmoji.png b/ISEDefaultNUI/res/image/sticker/icon_bitmoji.png new file mode 100644 index 0000000..0253bc4 Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_bitmoji.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_bitmoji_dim.png b/ISEDefaultNUI/res/image/sticker/icon_bitmoji_dim.png new file mode 100644 index 0000000..fce0848 Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_bitmoji_dim.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_bitmoji_press.png b/ISEDefaultNUI/res/image/sticker/icon_bitmoji_press.png new file mode 100644 index 0000000..fce0848 Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_bitmoji_press.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_blackpink.png b/ISEDefaultNUI/res/image/sticker/icon_blackpink.png new file mode 100644 index 0000000..b2f64c1 Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_blackpink.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_blackpink_dim.png b/ISEDefaultNUI/res/image/sticker/icon_blackpink_dim.png new file mode 100644 index 0000000..6586ee5 Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_blackpink_dim.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_blackpink_press.png b/ISEDefaultNUI/res/image/sticker/icon_blackpink_press.png new file mode 100644 index 0000000..6586ee5 Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_blackpink_press.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_marvel.png b/ISEDefaultNUI/res/image/sticker/icon_marvel.png new file mode 100644 index 0000000..39056ae Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_marvel.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_marvel_dim.png b/ISEDefaultNUI/res/image/sticker/icon_marvel_dim.png new file mode 100644 index 0000000..cf8aa69 Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_marvel_dim.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_marvel_press.png b/ISEDefaultNUI/res/image/sticker/icon_marvel_press.png new file mode 100644 index 0000000..cf8aa69 Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_marvel_press.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_recent.png b/ISEDefaultNUI/res/image/sticker/icon_recent.png new file mode 100644 index 0000000..6def112 Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_recent.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_recent_dim.png b/ISEDefaultNUI/res/image/sticker/icon_recent_dim.png new file mode 100644 index 0000000..f8168ce Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_recent_dim.png differ diff --git a/ISEDefaultNUI/res/image/sticker/icon_recent_press.png b/ISEDefaultNUI/res/image/sticker/icon_recent_press.png new file mode 100644 index 0000000..f8168ce Binary files /dev/null and b/ISEDefaultNUI/res/image/sticker/icon_recent_press.png differ diff --git a/ISEDefaultNUI/shared/res/ISEDefaultNUI.png b/ISEDefaultNUI/shared/res/ISEDefaultNUI.png new file mode 100644 index 0000000..9f3cb98 Binary files /dev/null and b/ISEDefaultNUI/shared/res/ISEDefaultNUI.png differ diff --git a/ISEDefaultNUI/tizen-manifest.xml b/ISEDefaultNUI/tizen-manifest.xml new file mode 100644 index 0000000..bbf0ede --- /dev/null +++ b/ISEDefaultNUI/tizen-manifest.xml @@ -0,0 +1,16 @@ + + + + + + ISEDefaultNUI.png + + +