summaryrefslogtreecommitdiff
path: root/NUISamples/examples/visuals-using-custom-view/ContactData.cs
blob: 9a3b9a8c9305d4d36a03d6f4ef13882eb0bb73d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

using System;
using Tizen.NUI;
using Tizen.NUI.Constants;

namespace VisualsUsingCustomView
{
    // The collection of contacts
    static class ContactsList
    {
        private const string resources = "/home/SERILOCAL/david.steele/Git/Tizen/nui/NUISamples/NUISamples/NUISamples.TizenTV/res";

        public static readonly ContactItem[] s_contactData = new ContactItem[]
        {
            new ContactItem ("Emmett Yates", resources + "/images/gallery-small-43.jpg",
                             resources + "/images/mask.png",
                             new Color((73.0f/255.0f),(182.0f/255.0f), (245.0f/255.0f), 1.0f),
                             (int)PrimitiveVisualShapeType.Cone),
            new ContactItem ("Leslie Wong", resources+ "/images/gallery-2.jpg",
                             resources + "/images/mask.png",
                             new Color((51.0f/255.0f), (51.0f/255.0f), (102.0f/255.0f), 1.0f),
                             (int)PrimitiveVisualShapeType.Sphere),
            new ContactItem ("Walter Jensen", resources+ "/images/gallery-0.jpg",
                             resources + "/images/mask.png",
                             new Color((151.0f/255.0f), (214.0f/255.0f), (240.0f/255.0f), 1.0f),
                             (int)PrimitiveVisualShapeType.Cylinder),
            new ContactItem ("Dan Haynes", resources+"/images/gallery-1.jpg",
                             resources + "/images/mask.png",
                             new Color((102.0f/255.0f), (251.0f/255.0f), (102.0f/255.0f), 1.0f),
                             (int)PrimitiveVisualShapeType.ConicalFrustrum),
            new ContactItem ("Mable Hodges", resources+"/images/gallery-3.jpg",
                             resources + "/images/mask.png",
                             new Color((255.0f/255.0f), (102.0f/255.0f), (102.0f/255.0f), 1.0f),
                             (int)PrimitiveVisualShapeType.Cube)
        };
    }

    // The information for an individual contact
    class ContactItem
    {
        private string _name;
        private string _imageURL;
        private Color _color;
        private int _shape;
        private string _maskURL;

        public ContactItem(string name, string imageURL, string maskURL, Color color, int shape)
        {
            _name = name;
            _imageURL = imageURL;
            _maskURL = maskURL;
            _color = color;
            _shape = shape;
        }

        public string ImageURL
        {
            get
            {
                return _imageURL;
            }
            set
            {
                _imageURL = value;
            }
        }
        public string MaskURL
        {
            get
            {
                return _maskURL;
            }
            set
            {
                _maskURL = value;
            }
        }

        public string Name
        {
            get
            {
                return _name;
            }
            set
            {
                _name = value;
            }
        }

        public Color Color
        {
            get
            {
                return _color;
            }
            set
            {
                _color = value;
            }
        }

        public int Shape
        {
            get
            {
                return _shape;
            }
            set
            {
                _shape = value;
            }
        }
    }
}