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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorKarl <5079870+PreferLinux@users.noreply.github.com>2020-04-08 20:44:03 +0300
committerGitHub <noreply@github.com>2020-04-08 20:44:03 +0300
commited23e5e41afe6c1f29b9d79a6a550e100d0ecb31 (patch)
tree8afbb581da2cab5777f24d0a0db5e275603e6e14 /mcs
parenta26d2f0c3ea1804e7794f66ef37a4d9e48e1d755 (diff)
Three small RichTextBox / TextControl fixes (#19401)
1. Fix the height calculated by Line.RecalculatePasswordLine(). Would have been roughly double what it should have been - line spacing includes the height of the line. 2. In RichTextBox, insert a character for the Quote special character tags rather than just printing a message on the console. 3. In TextControl Document.Draw(), fix the criteria for skipping the last line. Could probably be improve further, but the previous had a problem because it could check with a point well off the bottom of the second to last line instead of its bottom. This probably arose because I had used line.Height for just the height of the text in the line, and later decided that it should be the entire height including all spacing, and added line.TextHeight. The earlier behaviour would have been wrong too, because it would have pointed to the bottom of the text, not the bottom of the line.
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/Line.cs2
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/RichTextBox.cs8
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/TextControl.cs6
3 files changed, 8 insertions, 8 deletions
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/Line.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/Line.cs
index f7f063a8b70..7e0213be860 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/Line.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/Line.cs
@@ -953,7 +953,7 @@ namespace System.Windows.Forms
this.textHeight = (int)tag.Font.Height;
tag.Height = this.textHeight;
- this.height = (int)(this.textHeight + this.LineSpacing + this.TotalParagraphSpacing);
+ this.height = (int)(this.LineSpacing + this.TotalParagraphSpacing);
this.ascent = tag.Ascent;
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/RichTextBox.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/RichTextBox.cs
index 1b5f9513a23..158e3487d93 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/RichTextBox.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/RichTextBox.cs
@@ -2006,22 +2006,22 @@ namespace System.Windows.Forms {
}
case RTF.Minor.LQuote: {
- Console.Write("\u2018");
+ rtf_line.Append ("\u2018");
break;
}
case RTF.Minor.RQuote: {
- Console.Write("\u2019");
+ rtf_line.Append ("\u2019");
break;
}
case RTF.Minor.LDblQuote: {
- Console.Write("\u201C");
+ rtf_line.Append ("\u201C");
break;
}
case RTF.Minor.RDblQuote: {
- Console.Write("\u201D");
+ rtf_line.Append ("\u201D");
break;
}
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/TextControl.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/TextControl.cs
index cf65c990cbf..f55b0e192bd 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/TextControl.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/TextControl.cs
@@ -1732,8 +1732,8 @@ namespace System.Windows.Forms {
lines, document_x, document_y, owner.Width, owner.Height);
for (int i = 1; i <= lines ; i++) {
Line line = GetLine (i);
- Console.WriteLine ("<line no='{0}' ending='{1}' x='{2}' y='{3}' width='{4}' height='{5}' indent='{6}' hanging-indent='{7}' right-indent='{8}'>",
- line.line_no, line.ending, line.X, line.Y, line.Width, line.Height, line.Indent, line.HangingIndent, line.RightIndent);
+ Console.WriteLine ("<line no='{0}' ending='{1}' x='{2}' y='{3}' width='{4}' height='{5}' indent='{6}' hanging-indent='{7}' right-indent='{8}' spacing-before='{9}' spacing-after='{10}'>",
+ line.line_no, line.ending, line.X, line.Y, line.Width, line.Height, line.Indent, line.HangingIndent, line.RightIndent, line.SpacingBefore, line.SpacingAfter);
LineTag tag = line.tags;
while (tag != null) {
@@ -1794,7 +1794,7 @@ namespace System.Windows.Forms {
/// Make sure that we aren't drawing one more line then we need to
line = GetLine (end - 1);
- if (line != null && clip.Bottom == offset_y + line.Y + (int)line.SpacingBefore + line.height - viewport_y)
+ if (line != null && clip.Bottom == offset_y + line.Y + line.height - viewport_y)
end--;
line_no = start;