Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/Tizen.NUI/src/internal/Application/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2100,6 +2100,12 @@ public void SetApplicationLocale(string locale)
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}

public void EnableApplicationFrameworkLocaleCallback()
{
Interop.Application.EnableApplicationFrameworkLocaleCallback(SwigCPtr);
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}

[EditorBrowsable(EditorBrowsableState.Never)]
public static List<Window> GetWindowList()
{
Expand Down
3 changes: 3 additions & 0 deletions src/Tizen.NUI/src/internal/Interop/Interop.Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ internal static partial class Application

[global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_Application_SetApplicationLocale")]
public static extern void SetApplicationLocale(global::System.Runtime.InteropServices.HandleRef application, string locale);

[global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_Application_EnableFrameworkLocaleCallback")]
public static extern void EnableApplicationFrameworkLocaleCallback(global::System.Runtime.InteropServices.HandleRef application);
}
}
}
Loading