X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-swig%2FSWIG%2Fevents%2Fstage-event.i;h=74693cd84914f5c865cd2edb2c5b13ada5d77f3c;hb=b15279dd1e820bebf41aeb78453f997fe50051ae;hp=1ee85793ee3be230a196ec72cf69a9d33a60617e;hpb=ed59234dddddba1caa4acecc638c0ad6b8a9150b;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-swig/SWIG/events/stage-event.i b/plugins/dali-swig/SWIG/events/stage-event.i index 1ee8579..74693cd 100644 --- a/plugins/dali-swig/SWIG/events/stage-event.i +++ b/plugins/dali-swig/SWIG/events/stage-event.i @@ -524,16 +524,21 @@ public class SceneCreatedEventArgs : EventArgs } } - public Vector2 Size + ///< name "Size", type Dali.Size (Stage Size value) + //@since 1.0.0 + public Dali.Size Size { get { - Vector2 ret = GetSize(); + Vector2 ret1 = GetSize(); + Dali.Size ret= new Size(ret1); return ret; } } - public Vector4 BackgroundColor + ///< name "BackgroundColor", type Dali.Color (Stage background color value) + //@since 1.0.0 + public Dali.Color BackgroundColor { set { @@ -541,7 +546,8 @@ public class SceneCreatedEventArgs : EventArgs } get { - Vector4 ret = GetBackgroundColor(); + Vector4 ret1 = GetBackgroundColor(); + Dali.Color ret = new Color(ret1); return ret; } }