X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-swig%2FSWIG%2Fevents%2Fvideoview-event.i;h=1bc0aee8aa102c44142a6ff61d7b437df2ac5764;hp=7ef03e3a7da5246fe8a257d615662ed6ec086c77;hb=refs%2Fchanges%2F36%2F96336%2F12;hpb=928f30d2caf2775c5bcbfd84ceb4bf37ca29f020 diff --git a/plugins/dali-swig/SWIG/events/videoview-event.i b/plugins/dali-swig/SWIG/events/videoview-event.i index 7ef03e3..1bc0aee 100644 --- a/plugins/dali-swig/SWIG/events/videoview-event.i +++ b/plugins/dali-swig/SWIG/events/videoview-event.i @@ -114,6 +114,63 @@ public class FinishedEventArgs : EventArgs return ret; } +/* Properties earlier added by Ruby Script */ + + public Dali.Property.Map Video + { + get + { + Dali.Property.Map temp = new Dali.Property.Map(); + GetProperty( VideoView.Property.VIDEO).Get( temp ); + return temp; + } + set + { + SetProperty( VideoView.Property.VIDEO, new Dali.Property.Value( value ) ); + } + } + public bool Looping + { + get + { + bool temp = false; + GetProperty( VideoView.Property.LOOPING).Get( ref temp ); + return temp; + } + set + { + SetProperty( VideoView.Property.LOOPING, new Dali.Property.Value( value ) ); + } + } + public bool Muted + { + get + { + bool temp = false; + GetProperty( VideoView.Property.MUTED).Get( ref temp ); + return temp; + } + set + { + SetProperty( VideoView.Property.MUTED, new Dali.Property.Value( value ) ); + } + } + public Dali.Property.Map Volume + { + get + { + Dali.Property.Map temp = new Dali.Property.Map(); + GetProperty( VideoView.Property.VOLUME).Get( temp ); + return temp; + } + set + { + SetProperty( VideoView.Property.VOLUME, new Dali.Property.Value( value ) ); + } + } + +/* Properties ends */ + %} %enddef