-
Notifications
You must be signed in to change notification settings - Fork 0
/
Classes.cs
101 lines (85 loc) · 2.77 KB
/
Classes.cs
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
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
namespace MeFastTextBox
{
//
/// <summary>
/// класс специального словаря/ слово-цвет /цвет-массив слов
/// </summary>
class SmartDictionary
{
/// <summary>
/// ассоциация цветов и типов
/// </summary>
/// <param name=""></param>
/// <param name=""></param>
[Obsolete]
public void Add(string[] words, Color type)
{
if (!SmaDictionary.ContainsKey(type)) SmaDictionary.Add(type, words);
else SmaDictionary[type] = SmaDictionary[type].Concat(words).ToArray();
foreach (var the_color in dictionary.Keys)
{
string[] wrds = dictionary[the_color];
for (int i = 0; i < words.Length; i++)
{
ColorDict.Add(wrds[i], the_color);
}
}
}
Dictionary<Color, string[]> dictionary;
/// <summary>
/// для компактного хранения. Хранится в настройках. Только для сохранения
/// </summary>
public Dictionary<Color, string[]> SmaDictionary
{
set
{
dictionary = value;
dictionary.Serialize();
foreach (var the_color in dictionary.Keys)
{
string[] words = dictionary[the_color];
for (int i = 0; i < words.Length; i++)
{
ColorDict.Add(words[i], the_color);
}
}
}
get
{
return dictionary;
}
}
/// <summary>
/// для быстрой работы
/// </summary>
Dictionary<string, Color> ColorDict;
public SmartDictionary()
{
//десериализуем dictionary
dictionary = new Dictionary<Color, string[]>();
dictionary.Deserialize();
//преобразуем его в ColorDict
ColorDict = new Dictionary<string, Color>();
foreach (var the_color in dictionary.Keys)
{
string[] words = dictionary[the_color];
for (int i = 0; i < words.Length; i++)
{
ColorDict.Add(words[i], the_color);
}
}
}
public Color this[string word]
{
get
{
return ColorDict.ContainsKey(word) ? ColorDict[word] : Color.Black;
}
}
}
}