Add move semantics to common and base Toolkit classes
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / video-view / video-view.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali-toolkit/public-api/controls/video-view/video-view.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/property-map.h>
23 #include <dali/devel-api/adaptor-framework/video-sync-mode.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/controls/video-view/video-view-impl.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 VideoView::VideoView()
35 {
36 }
37
38 VideoView::VideoView( const VideoView& videoView ) = default;
39
40 VideoView::VideoView( VideoView&& rhs ) = default;
41
42 VideoView& VideoView::operator=( const VideoView& videoView ) = default;
43
44 VideoView& VideoView::operator=( VideoView&& rhs ) = default;
45
46 VideoView::~VideoView()
47 {
48 }
49
50 VideoView VideoView::New()
51 {
52   return Internal::VideoView::New( Dali::VideoSyncMode::DISABLED );
53 }
54
55 VideoView VideoView::New( const std::string& url )
56 {
57   VideoView videoView = Internal::VideoView::New( Dali::VideoSyncMode::DISABLED );
58   Dali::Toolkit::GetImpl( videoView ).SetUrl( url );
59   return videoView;
60 }
61
62 VideoView VideoView::New( bool swCodec )
63 {
64   VideoView videoView = Internal::VideoView::New( Dali::VideoSyncMode::DISABLED );
65   Dali::Toolkit::GetImpl( videoView ).SetSWCodec( swCodec );
66   return videoView;
67 }
68
69 VideoView VideoView::New( const std::string& url, bool swCodec )
70 {
71   VideoView videoView = Internal::VideoView::New( Dali::VideoSyncMode::DISABLED );
72   Dali::Toolkit::GetImpl( videoView ).SetUrl( url );
73   Dali::Toolkit::GetImpl( videoView ).SetSWCodec( swCodec );
74   return videoView;
75 }
76
77 VideoView VideoView::DownCast( BaseHandle handle )
78 {
79   return Control::DownCast< VideoView, Internal::VideoView >( handle );
80 }
81
82 void VideoView::Play()
83 {
84   Dali::Toolkit::GetImpl( *this ).Play();
85 }
86
87 void VideoView::Pause()
88 {
89   Dali::Toolkit::GetImpl( *this ).Pause();
90 }
91
92 void VideoView::Stop()
93 {
94   Dali::Toolkit::GetImpl( *this ).Stop();
95 }
96
97 void VideoView::Forward( int millisecond )
98 {
99   Dali::Toolkit::GetImpl( *this ).Forward( millisecond );
100 }
101
102 void VideoView::Backward( int millisecond )
103 {
104   Dali::Toolkit::GetImpl( *this ).Backward( millisecond );
105 }
106
107 VideoView::VideoViewSignalType& VideoView::FinishedSignal()
108 {
109   return Dali::Toolkit::GetImpl( *this ).FinishedSignal();
110 }
111
112 VideoView::VideoView( Internal::VideoView& implementation )
113 : Control( implementation )
114 {
115 }
116
117 VideoView::VideoView( Dali::Internal::CustomActor* internal )
118 : Control( internal )
119 {
120   VerifyCustomActorPointer< Internal::VideoView >( internal );
121 }
122
123 } // namespace Toolkit
124
125 } // namespace Dali