[Xaml] Support import other xaml as the source of resource dictionary
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.XamlBuild / src / public / EXamlBuild / EXaml / EXamlCreateObject / EXamlCreateResourceDictionary.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 Mono.Cecil;
18 using System;
19 using System.Collections.Generic;
20 using System.Text;
21 using Tizen.NUI.EXaml.Build.Tasks;
22
23 namespace Tizen.NUI.EXaml
24 {
25     internal class EXamlCreateResourceDictionary : EXamlCreateObject
26     {
27         public EXamlCreateResourceDictionary(EXamlContext context, TypeReference type, string content = null) : base(context, null, type)
28         {
29             if (null != content)
30             {
31                 Content = content;
32             }
33         }
34
35         private string content;
36         public string Content
37         {
38             get
39             {
40                 return content;
41             }
42             set
43             {
44                 content = value;
45                 indexRangeOfContent = eXamlContext.GetLongStringIndexs(content);
46             }
47         }
48
49         private (int, int) indexRangeOfContent;
50
51         internal override string Write()
52         {
53             if (false == IsValid)
54             {
55                 return "";
56             }
57
58             string ret = String.Format("({0} ({1} {2} {3}))\n",
59                          eXamlContext.GetValueString((int)EXamlOperationType.CreateResourceDictionary),
60                          eXamlContext.GetValueString(eXamlContext.GetTypeIndex(Type)),
61                          eXamlContext.GetValueString(indexRangeOfContent.Item1),
62                          eXamlContext.GetValueString(indexRangeOfContent.Item2));
63
64             return ret;
65         }
66     }
67 }
68