forked from ubsicap/paratext_demo_plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathControlP.cs
171 lines (157 loc) · 3.81 KB
/
ControlP.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Paratext.PluginInterfaces;
namespace ReferencePluginP
{
public partial class ControlP : EmbeddedPluginControl
{
private IVerseRef m_Reference;
private IProject m_Project;
public ControlP()
{
InitializeComponent();
}
public override void OnAddedToParent(IPluginChildWindow parent, IWindowPluginHost host, string state)
{
parent.SetTitle(PluginP.pluginName);
m_Project = parent.CurrentState.Project;
m_Reference = parent.CurrentState.VerseRef;
parent.ProjectChanged += ProjectChanged;
parent.VerseRefChanged += VerseRefChanged;
}
public override string GetState()
{
return null;
}
public override void DoLoad(IProgressInfo progressInfo)
{
// Since DoLoad is done on a different thread than what was used
// to create the control, we need to use the Invoke method.
Invoke((Action)(() => ShowStyle()));
}
public void ProjectChanged(IPluginChildWindow sender, IProject newProject)
{
m_Project = newProject;
m_Reference = sender.CurrentState.VerseRef;
ShowStyle();
}
public void VerseRefChanged(IPluginChildWindow sender, IVerseRef oldReference, IVerseRef newReference)
{
m_Reference = newReference;
ShowStyle();
}
private void ShowStyle()
{
List<string> lines = new List<string>();
var markers = m_Project.ScriptureMarkerInformation;
foreach (var marker in markers)
{
if (marker is ICharacterMarkerInfo ch)
{
string style = $"{ch.Marker}: ";
style += GetStyle(ch);
lines.Add(style);
}
if (marker is INoteMarkerInfo notemarker)
{
string style = $"{notemarker.Marker}: ";
style += GetStyle(notemarker);
lines.Add(style);
}
if (marker is IParagraphMarkerInfo paramarker)
{
string style = $"{paramarker.Marker}: ";
style += GetStyle(paramarker);
if (paramarker.Justification.HasValue)
{
style += $"{paramarker.Justification.Value} ";
}
if (paramarker.LeftMargin.HasValue)
{
style += $"Left Margin: {paramarker.LeftMargin.Value} ";
}
if (paramarker.RightMargin.HasValue)
{
style += $"Right Margin: {paramarker.RightMargin.Value} ";
}
if (paramarker.FirstLineIndent.HasValue)
{
style += $"First Line Indent: {paramarker.FirstLineIndent.Value} ";
}
if (paramarker.LineSpacing.HasValue)
{
style += $"Line Spacing: {paramarker.LineSpacing.Value} ";
}
if (paramarker.SpaceBefore.HasValue)
{
style += $"Space Before: {paramarker.SpaceBefore.Value} ";
}
if (paramarker.SpaceAfter.HasValue)
{
style += $"Space After: {paramarker.SpaceAfter.Value} ";
}
lines.Add(style);
}
}
textBox.Lines = lines.ToArray();
}
private string GetStyle(IStyledMarkerInfo info)
{
string style = "";
style += info.FontFamily;
style += " ";
if (false == string.IsNullOrEmpty(info.FontFamily))
{
style += $"{info.FontFamily} ";
}
if (info.FontSize.HasValue)
{
style += $"Size: {info.FontSize.Value} ";
}
if (info.Color.HasValue)
{
Color color = info.Color.Value;
if (color.IsNamedColor)
{
style += $"Color: {color.Name} ";
}
else
{
style += $"{color} ";
}
}
if (info.Bold == true)
{
style += "Bold ";
}
if (info.Italic == true)
{
style += "Italic ";
}
if (info.SmallCaps == true)
{
style += "SmallCaps ";
}
if (info.Subscript == true)
{
style += "Subscript ";
}
if (info.Superscript == true)
{
style += "Superscript ";
}
if (info.Underline == true)
{
style += "Underline ";
}
return style;
}
}
}