1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
17 namespace Tizen.NUI.BaseComponents
21 using System.Runtime.InteropServices;
24 /// VideoView is a control for video playback and display.
26 public class VideoView : View
28 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
30 internal VideoView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.VideoView_SWIGUpcast(cPtr), cMemoryOwn)
32 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
35 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(VideoView obj)
37 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
40 protected override void Dispose(DisposeTypes type)
47 if(type == DisposeTypes.Explicit)
50 //Release your own managed resources here.
51 //You should release all of your own disposable objects here.
54 //Release your own unmanaged resources here.
55 //You should not access any managed member here except static instance.
56 //because the execution order of Finalizes is non-deterministic.
58 if (_videoViewFinishedCallbackDelegate != null)
60 FinishedSignal().Disconnect(_videoViewFinishedCallbackDelegate);
63 if (swigCPtr.Handle != global::System.IntPtr.Zero)
68 NDalicPINVOKE.delete_VideoView(swigCPtr);
70 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
77 /// Event arguments that passed via the finished signal.
79 public class FinishedEventArgs : EventArgs
81 private VideoView _videoView;
84 /// The view for video playback and display.
86 public VideoView VideoView
100 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
101 private delegate void FinishedCallbackDelegate(IntPtr data);
102 private EventHandler<FinishedEventArgs> _videoViewFinishedEventHandler;
103 private FinishedCallbackDelegate _videoViewFinishedCallbackDelegate;
107 /// Event for the finished signal which can be used to subscribe or unsubscribe the event handler
108 /// (in the type of FinishedEventHandler-DaliEventHandler<object,FinishedEventArgs>) provided by the user.<br>
109 /// The finished signal is emitted when a video playback has finished.<br>
111 public event EventHandler<FinishedEventArgs> Finished
115 if (_videoViewFinishedEventHandler == null)
117 _videoViewFinishedCallbackDelegate = (OnFinished);
118 FinishedSignal().Connect(_videoViewFinishedCallbackDelegate);
120 _videoViewFinishedEventHandler += value;
124 _videoViewFinishedEventHandler -= value;
125 if (_videoViewFinishedEventHandler == null && FinishedSignal().Empty() == false)
127 FinishedSignal().Disconnect(_videoViewFinishedCallbackDelegate);
132 // Callback for VideoView Finished signal
133 private void OnFinished(IntPtr data)
135 FinishedEventArgs e = new FinishedEventArgs();
137 // Populate all members of "e" (FinishedEventArgs) with real data
138 e.VideoView = Registry.GetManagedBaseHandleFromNativePtr(data) as VideoView;
140 if (_videoViewFinishedEventHandler != null)
142 //here we send all data to user event handlers
143 _videoViewFinishedEventHandler(this, e);
147 internal new class Property
149 internal static readonly int VIDEO = NDalicPINVOKE.VideoView_Property_VIDEO_get();
150 internal static readonly int LOOPING = NDalicPINVOKE.VideoView_Property_LOOPING_get();
151 internal static readonly int MUTED = NDalicPINVOKE.VideoView_Property_MUTED_get();
152 internal static readonly int VOLUME = NDalicPINVOKE.VideoView_Property_VOLUME_get();
156 /// Creates an initialized VideoView.
158 public VideoView() : this(NDalicPINVOKE.VideoView_New__SWIG_0(), true)
160 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
165 /// Creates an initialized VideoView.<br>
166 /// If the string is empty, VideoView will not display anything.<br>
168 /// <param name="url">The URL of the video resource to display.</param>
169 public VideoView(string url) : this(NDalicPINVOKE.VideoView_New__SWIG_1(url), true)
171 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
174 internal VideoView(VideoView videoView) : this(NDalicPINVOKE.new_VideoView__SWIG_1(VideoView.getCPtr(videoView)), true)
176 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
179 [Obsolete("Please do not use! this will be deprecated")]
180 public new static VideoView DownCast(BaseHandle handle)
182 VideoView ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as VideoView;
183 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
188 /// Starts the video playback.
192 NDalicPINVOKE.VideoView_Play(swigCPtr);
193 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
197 /// Pauses the video playback.
201 NDalicPINVOKE.VideoView_Pause(swigCPtr);
202 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
206 /// Stops the video playback.
210 NDalicPINVOKE.VideoView_Stop(swigCPtr);
211 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
215 /// Seeks forward by the specified number of milliseconds.
217 /// <param name="millisecond">The position for forward playback.</param>
218 public void Forward(int millisecond)
220 NDalicPINVOKE.VideoView_Forward(swigCPtr, millisecond);
221 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
225 /// Seeks backward by the specified number of milliseconds.
227 /// <param name="millisecond">The position for backward playback.</param>
228 public void Backward(int millisecond)
230 NDalicPINVOKE.VideoView_Backward(swigCPtr, millisecond);
231 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
234 internal VideoViewSignal FinishedSignal()
236 VideoViewSignal ret = new VideoViewSignal(NDalicPINVOKE.VideoView_FinishedSignal(swigCPtr), false);
237 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
242 /// Video file URL as string type or PropertyMap.
244 public PropertyMap Video
248 PropertyMap temp = new PropertyMap();
249 GetProperty(VideoView.Property.VIDEO).Get(temp);
254 SetProperty(VideoView.Property.VIDEO, new Tizen.NUI.PropertyValue(value));
259 /// The looping status, true or false.
266 GetProperty(VideoView.Property.LOOPING).Get(out temp);
271 SetProperty(VideoView.Property.LOOPING, new Tizen.NUI.PropertyValue(value));
276 /// The mute status, true or false.
283 GetProperty(VideoView.Property.MUTED).Get(out temp);
288 SetProperty(VideoView.Property.MUTED, new Tizen.NUI.PropertyValue(value));
293 /// The left and the right volume scalar as float type, PropertyMap with two values ( "left" and "right" ).
295 public PropertyMap Volume
299 PropertyMap temp = new PropertyMap();
300 GetProperty(VideoView.Property.VOLUME).Get(temp);
305 SetProperty(VideoView.Property.VOLUME, new PropertyValue(value));