X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-sharp%2Fsharp%2Finternal%2FPopup.cs;h=79d92f51894e9c304d3d185d022320b2ebc3f095;hb=refs%2Fchanges%2F78%2F127478%2F4;hp=4010f6422565ebb4d770dabbf8af6bb11dfbbf16;hpb=d375dceca213569317d81d17cd2d2a4b45122cda;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-sharp/sharp/internal/Popup.cs b/plugins/dali-sharp/sharp/internal/Popup.cs index 4010f64..79d92f5 100644 --- a/plugins/dali-sharp/sharp/internal/Popup.cs +++ b/plugins/dali-sharp/sharp/internal/Popup.cs @@ -46,7 +46,7 @@ public class Popup : View { } public override void Dispose() { - if (!Stage.IsInstalled()) { + if (!Window.IsInstalled()) { DisposeQueue.Instance.Add(this); return; } @@ -405,35 +405,35 @@ public class Popup : View { return ret; } - public void SetTitle(Actor titleActor) { - NDalicPINVOKE.Popup_SetTitle(swigCPtr, Actor.getCPtr(titleActor)); + public void SetTitle(View titleView) { + NDalicPINVOKE.Popup_SetTitle(swigCPtr, View.getCPtr(titleView)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public Actor GetTitle() { - Actor ret = new Actor(NDalicPINVOKE.Popup_GetTitle(swigCPtr), true); + public View GetTitle() { + View ret = new View(NDalicPINVOKE.Popup_GetTitle(swigCPtr), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public void SetContent(Actor content) { - NDalicPINVOKE.Popup_SetContent(swigCPtr, Actor.getCPtr(content)); + public void SetContent(View content) { + NDalicPINVOKE.Popup_SetContent(swigCPtr, View.getCPtr(content)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public Actor GetContent() { - Actor ret = new Actor(NDalicPINVOKE.Popup_GetContent(swigCPtr), true); + public View GetContent() { + View ret = new View(NDalicPINVOKE.Popup_GetContent(swigCPtr), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public void SetFooter(Actor footer) { - NDalicPINVOKE.Popup_SetFooter(swigCPtr, Actor.getCPtr(footer)); + public void SetFooter(View footer) { + NDalicPINVOKE.Popup_SetFooter(swigCPtr, View.getCPtr(footer)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public Actor GetFooter() { - Actor ret = new Actor(NDalicPINVOKE.Popup_GetFooter(swigCPtr), true); + public View GetFooter() { + View ret = new View(NDalicPINVOKE.Popup_GetFooter(swigCPtr), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; }