[NUI] Add new constructor to Rotation by using Quaternion vector4 as input parameter
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.LayoutSamples / Tizen.NUI.LayoutSamples / ObjectControlView.xaml.cs
1 /*
2  * Copyright(c) 2022 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 using Tizen.NUI.BaseComponents;
18 using Tizen.NUI.Components;
19
20 namespace Tizen.NUI.LayoutSamples
21 {
22     public partial class ObjectControlView : ScrollableBase, IObjectProperty<ObjectView>
23     {
24         private ObjectView controlView = null;
25
26         public ObjectControlView()
27         {
28             InitializeComponent();
29         }
30
31         public ObjectView PropertyValue
32         {
33             get
34             {
35                 return controlView;
36             }
37
38             set
39             {
40                 SetView(controlView as IObjectView);
41             }
42         }
43
44         public void SetView(IObjectView view)
45         {
46             if (!(view is View)) return;
47
48             if (controlView == view as ObjectView) return;
49
50             controlView = view as ObjectView;
51
52             // WidthSpecification
53             widthSpec.SetView(controlView);
54
55             // HeightSpecification
56             heightSpec.SetView(controlView);
57
58             // Margin
59             margin.SetView(controlView);
60
61             // Padding
62             padding.SetView(controlView);
63         }
64     }
65 }