Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OutlineSettings.cs « MonoDevelop.CSharp.ClassOutline « CSharpBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f6a63a96d887f361b16cffe30c4bcf240d2b8b3 (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
//
// ClassOutlineSortingProperties.cs
//
// Authors:
//  Helmut Duregger <helmutduregger@gmx.at>
//
// Copyright (c) 2010 Helmut Duregger
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Xml.Serialization;
using System.Linq;

using MonoDevelop.Core;

namespace MonoDevelop.CSharp.ClassOutline
{
	/// <summary>
	/// Stores sorting status and is serialized to configuration properties.
	/// </summary>
	/// <remarks>
	/// Stores the sorting configuration, e.g. if the class outline is currently sorted
	/// or what primary sort key values the individual node groups have. This class is
	/// serialized to the configuration file MonoDevelopProperties.xml.
	/// </remarks>
	/// <seealso cref="MonoDevelop.CSharp.ClassOutline.CSharpOutlineTextEditorExtension"/>
	class OutlineSettings
	{
		const string KEY_GROUP_ORDER = "MonoDevelop.DesignerSupport.ClassOutline.GroupOrder";
		const string KEY_IS_GROUPED = "MonoDevelop.DesignerSupport.ClassOutline.IsGrouped";
		const string KEY_IS_SORTED  = "MonoDevelop.DesignerSupport.ClassOutline.IsSorted";
		
		public const string GroupRegions = "Regions";
		public const string GroupNamespaces = "Namespaces";
		public const string GroupTypes = "Types";
		public const string GroupFields = "Fields";
		public const string GroupProperties = "Properties";
		public const string GroupEvents = "Events";
		public const string GroupMethods = "Methods";
		
		static Dictionary<string,string> groupNames = new Dictionary<string, string> {
			{ GroupRegions,    GettextCatalog.GetString ("Regions") },
			{ GroupNamespaces, GettextCatalog.GetString ("Namespaces") },
			{ GroupTypes,      GettextCatalog.GetString ("Types") },
			{ GroupProperties, GettextCatalog.GetString ("Properties") },
			{ GroupFields,     GettextCatalog.GetString ("Fields") },
			{ GroupEvents,     GettextCatalog.GetString ("Events") },
			{ GroupMethods,    GettextCatalog.GetString ("Methods") },
		};
		
		OutlineSettings ()
		{
		}
		
		public static OutlineSettings Load ()
		{
			var cs = new OutlineSettings ();
			cs.IsGrouped = PropertyService.Get (KEY_IS_GROUPED, false);
			cs.IsSorted = PropertyService.Get (KEY_IS_SORTED, false);
			
			string s = PropertyService.Get (KEY_GROUP_ORDER, "");
			if (s.Length == 0) {
				cs.GroupOrder = groupNames.Keys.ToArray ();
			} else {
				cs.GroupOrder = s.Split (new char[] {','}, StringSplitOptions.RemoveEmptyEntries);
			}
			return cs;
		}
		
		public void Save ()
		{
			PropertyService.Set (KEY_IS_GROUPED, IsGrouped);
			PropertyService.Set (KEY_IS_SORTED, IsSorted);
			PropertyService.Set (KEY_GROUP_ORDER, string.Join (",", GroupOrder));
		}
		
		public static string GetGroupName (string group)
		{
			return groupNames [group];
		}
		
		public IList<string> GroupOrder { get; set; }
		public bool IsGrouped { get; set; }
		public bool IsSorted { get; set; }
	}
}