[EXaml] Add Copy Right
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / EXaml / Action / SetBindingAction.cs
1 /*
2  * Copyright(c) 2021 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 System;
18 using System.Collections.Generic;
19 using System.Reflection;
20 using System.Text;
21 using Tizen.NUI.Binding;
22 using Tizen.NUI.Binding.Internals;
23
24 namespace Tizen.NUI.EXaml
25 {
26     internal class SetBindingAction : Action
27     {
28         public SetBindingAction(Action parent)
29         {
30             this.parent = parent;
31         }
32
33         private Action parent;
34
35         public Action DealChar(char c)
36         {
37             switch (c)
38             {
39                 case ' ':
40                 case '\n':
41                 case '\r':
42                     break;
43
44                 case '(':
45                     childOp = new GetValueListAction(')', this);
46                     return childOp;
47
48                 case '%':
49                     parent?.OnActive();
50                     return parent;
51             }
52
53             return this;
54         }
55
56         private GetValueListAction childOp;
57
58         public void Init()
59         {
60             childOp = null;
61         }
62
63         public void OnActive()
64         {
65             if (null != childOp)
66             {
67                 int instanceIndex = (childOp.ValueList[0] as Instance).Index;
68                 var propertyIndex = (int)childOp.ValueList[1];
69                 int valueIndex = (childOp.ValueList[2] as Instance).Index;
70
71                 LoadEXaml.Operations.Add(new SetBinding(instanceIndex, propertyIndex, valueIndex));
72             }
73         }
74     }
75 }