1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-07-02 04:29:28 +00:00
6502bench/CommonWPF/Helper.cs
Andy McFadden a0dca6a5be Improve save & restore of top line
Whenever the display list gets regenerated, we need to restore the
code list view scroll position to the previous location in the file.
This gets tricky when multiple lines are appearing or disappearing.
We were saving the file offset of the line, but that works poorly
when there's a multi-line comment associated with that offset,
because we end up scrolling to the top of the comment whenever any
part of the comment is at the top of the screen.

We now track the file offset and the number of lines we were from
the top of that offset's content.  This works well unless we remove
a lot of lines.  If the adjusted line index would put us into a
different file offset, we punt and just scroll to the top of the item.

Also, fix a crasher in Edit Note.

Also, fix behavior when the list shrinks while a line near the end
of the file is selected.

Also, change a few instances of "Color.FromArgb(0,0,0,0)" to use a
common constant.
2019-07-17 14:08:53 -07:00

83 lines
3.3 KiB
C#

/*
* Copyright 2019 faddenSoft
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Windows;
using System.Windows.Media;
namespace CommonWPF {
/// <summary>
/// Miscellaneous helper functions.
/// </summary>
public static class Helper {
public static Color ZeroColor = Color.FromArgb(0, 0, 0, 0);
/// <summary>
/// Measures the size of a string when rendered with the specified parameters. Uses
/// the current culture, left-to-right flow, and 1 pixel per DIP.
/// </summary>
/// <remarks>
/// The Graphics.MeasureString approach from WinForms doesn't work in WPF, but we can
/// accomplish the same thing with the FormattedText class.
/// </remarks>
/// <seealso cref="https://stackoverflow.com/a/9266288/294248"/>
/// <param name="str">Text to be displayed.</param>
/// <param name="fontFamily">Font family for Typeface.</param>
/// <param name="fontStyle">Font style for Typeface.</param>
/// <param name="fontWeight">Font weight for Typeface.</param>
/// <param name="fontStretch">Font stretch for Typeface.</param>
/// <param name="emSize">Font size.</param>
/// <returns>Width and height of rendered text.</returns>
public static Size MeasureString(string str, FontFamily fontFamily, FontStyle fontStyle,
FontWeight fontWeight, FontStretch fontStretch, double emSize) {
FormattedText fmt = new FormattedText(
str,
CultureInfo.CurrentCulture,
FlowDirection.LeftToRight,
new Typeface(fontFamily, fontStyle, fontWeight, fontStretch),
emSize,
Brushes.Black,
new NumberSubstitution(),
1.0);
return new Size(fmt.Width, fmt.Height);
}
/// <summary>
/// Measures the size of a string when rendered with the specified parameters. Uses
/// the current culture, left-to-right flow, and 1 pixel per DIP.
/// </summary>
/// <param name="str">Text to be displayed.</param>
/// <param name="typeface">Font typeface to use.</param>
/// <param name="emSize">Font size.</param>
/// <returns>Width of rendered text.</returns>
public static double MeasureStringWidth(string str, Typeface typeface, double emSize) {
FormattedText fmt = new FormattedText(
str,
CultureInfo.CurrentCulture,
FlowDirection.LeftToRight,
typeface,
emSize,
Brushes.Black,
new NumberSubstitution(),
1.0);
return fmt.Width;
}
}
}