~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.MacDev/XcodeIntegration/PBXGroup.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// 
2
 
// PBXGroup.cs
3
 
//  
4
 
// Authors:
5
 
//       Geoff Norton <gnorton@novell.com>
6
 
//       Jeffrey Stedfast <jeff@xamarin.com>
7
 
// 
8
 
// Copyright (c) 2011 Novell, Inc.
9
 
// Copyright (c) 2011 Xamarin Inc.
10
 
// 
11
 
// Permission is hereby granted, free of charge, to any person obtaining a copy
12
 
// of this software and associated documentation files (the "Software"), to deal
13
 
// in the Software without restriction, including without limitation the rights
14
 
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
 
// copies of the Software, and to permit persons to whom the Software is
16
 
// furnished to do so, subject to the following conditions:
17
 
// 
18
 
// The above copyright notice and this permission notice shall be included in
19
 
// all copies or substantial portions of the Software.
20
 
// 
21
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
 
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
 
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
 
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
 
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
 
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27
 
// THE SOFTWARE.
28
 
 
29
 
using System;
30
 
using System.Text;
31
 
using System.Collections;
32
 
using System.Collections.Generic;
33
 
 
34
 
namespace MonoDevelop.MacDev.XcodeIntegration
35
 
{
36
 
        public class PBXGroup : XcodeObject, IEnumerable<XcodeObject>
37
 
        {
38
 
                XcodeObjectSortDirection sort;
39
 
                List<XcodeObject> children;
40
 
                string name;
41
 
 
42
 
                public PBXGroup (string name, XcodeObjectSortDirection sortDirection = XcodeObjectSortDirection.Ascending)
43
 
                {
44
 
                        children = new List<XcodeObject> ();
45
 
                        this.sort = sortDirection;
46
 
                        this.name = name;
47
 
                }
48
 
 
49
 
                public override string Name {
50
 
                        get {
51
 
                                return name ?? "Main Group";
52
 
                        }
53
 
                }
54
 
 
55
 
                public void AddChild (XcodeObject child)
56
 
                {
57
 
                        children.Add (child);
58
 
                }
59
 
                
60
 
                public override XcodeType Type {
61
 
                        get {
62
 
                                return XcodeType.PBXGroup;
63
 
                        }
64
 
                }
65
 
                
66
 
                public PBXGroup GetGroup (string name)
67
 
                {
68
 
                        foreach (var v in children)
69
 
                                if (v is PBXGroup && v.Name == name)
70
 
                                        return (PBXGroup) v;
71
 
                        return null;
72
 
                }
73
 
                
74
 
                public override string ToString ()
75
 
                {
76
 
                        var sb = new StringBuilder ();
77
 
 
78
 
                        if (name != null)
79
 
                                sb.AppendFormat ("{0} /* {1} */ = {{\n", Token, Name);
80
 
                        else
81
 
                                sb.AppendFormat ("{0} = {{\n", Token);
82
 
                        sb.AppendFormat ("\t\t\tisa = {0};\n", Type);
83
 
                        sb.AppendFormat ("\t\t\tchildren = (\n");
84
 
                        if (sort != XcodeObjectSortDirection.None)
85
 
                                children.Sort (new XcodeObjectComparer (sort));
86
 
                        foreach (var child in children) 
87
 
                                sb.AppendFormat ("\t\t\t\t{0} /* {1} */,\n", child.Token, child.Name);
88
 
                        sb.AppendFormat ("\t\t\t);\n");
89
 
                        if (name != null)
90
 
                                sb.AppendFormat ("\t\t\tname = \"{0}\";\n", name);
91
 
                        sb.AppendFormat ("\t\t\tsourceTree = \"<group>\";\n");
92
 
                        sb.AppendFormat ("\t\t}};");
93
 
 
94
 
                        return sb.ToString ();
95
 
                }
96
 
 
97
 
                #region IEnumerable implementation
98
 
                System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator ()
99
 
                {
100
 
                        return ((System.Collections.IEnumerable)children).GetEnumerator ();
101
 
                }
102
 
 
103
 
                public IEnumerator<XcodeObject> GetEnumerator ()
104
 
                {
105
 
                        return children.GetEnumerator ();
106
 
                }
107
 
                #endregion
108
 
        }
109
 
}