157 lines
4.5 KiB
C#
157 lines
4.5 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Drawing;
|
|
|
|
#if AdvTree
|
|
namespace DevComponents.Tree.TextMarkup
|
|
#elif DOTNETBAR
|
|
namespace DevComponents.DotNetBar.TextMarkup
|
|
#elif SUPERGRID
|
|
namespace DevComponents.SuperGrid.TextMarkup
|
|
#endif
|
|
{
|
|
/// <summary>
|
|
/// Holds text-markup related settings.
|
|
/// </summary>
|
|
public static class MarkupSettings
|
|
{
|
|
private static HyperlinkStyle _NormalHyperlink = new HyperlinkStyle(Color.Blue, eHyperlinkUnderlineStyle.SolidLine);
|
|
/// <summary>
|
|
/// Gets the style of the hyperlink in its default state.
|
|
/// </summary>
|
|
public static HyperlinkStyle NormalHyperlink
|
|
{
|
|
get { return _NormalHyperlink; }
|
|
}
|
|
|
|
private static HyperlinkStyle _MouseOverHyperlink = new HyperlinkStyle();
|
|
/// <summary>
|
|
/// Gets the style of the hyperlink when mouse is over the link.
|
|
/// </summary>
|
|
public static HyperlinkStyle MouseOverHyperlink
|
|
{
|
|
get { return _MouseOverHyperlink; }
|
|
}
|
|
|
|
private static HyperlinkStyle _VisitedHyperlink = new HyperlinkStyle();
|
|
/// <summary>
|
|
/// Gets the style of the visited hyperlink.
|
|
/// </summary>
|
|
public static HyperlinkStyle VisitedHyperlink
|
|
{
|
|
get { return _VisitedHyperlink; }
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Defines the text-markup hyperlink appearance style.
|
|
/// </summary>
|
|
public class HyperlinkStyle
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the HyperlinkStyle class.
|
|
/// </summary>
|
|
public HyperlinkStyle()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the HyperlinkStyle class.
|
|
/// </summary>
|
|
/// <param name="textColor"></param>
|
|
/// <param name="underlineStyle"></param>
|
|
public HyperlinkStyle(Color textColor, eHyperlinkUnderlineStyle underlineStyle)
|
|
{
|
|
_TextColor = textColor;
|
|
_UnderlineStyle = underlineStyle;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the HyperlinkStyle class.
|
|
/// </summary>
|
|
/// <param name="textColor"></param>
|
|
/// <param name="backColor"></param>
|
|
/// <param name="underlineStyle"></param>
|
|
public HyperlinkStyle(Color textColor, Color backColor, eHyperlinkUnderlineStyle underlineStyle)
|
|
{
|
|
_TextColor = textColor;
|
|
_BackColor = backColor;
|
|
_UnderlineStyle = underlineStyle;
|
|
}
|
|
private Color _TextColor = Color.Empty;
|
|
/// <summary>
|
|
/// Gets or sets hyperlink text color.
|
|
/// </summary>
|
|
public Color TextColor
|
|
{
|
|
get { return _TextColor; }
|
|
set
|
|
{
|
|
if (_TextColor != value)
|
|
{
|
|
_TextColor = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
private Color _BackColor = Color.Empty;
|
|
/// <summary>
|
|
/// Gets or sets hyperlink back color.
|
|
/// </summary>
|
|
public Color BackColor
|
|
{
|
|
get { return _BackColor; }
|
|
set
|
|
{
|
|
if (_BackColor != value)
|
|
{
|
|
_BackColor = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
private eHyperlinkUnderlineStyle _UnderlineStyle = eHyperlinkUnderlineStyle.None;
|
|
/// <summary>
|
|
/// Gets or sets the underline style for the hyperlink.
|
|
/// </summary>
|
|
public eHyperlinkUnderlineStyle UnderlineStyle
|
|
{
|
|
get { return _UnderlineStyle; }
|
|
set
|
|
{
|
|
if (_UnderlineStyle != value)
|
|
{
|
|
_UnderlineStyle = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets whether style has been changed from its default state.
|
|
/// </summary>
|
|
public bool IsChanged
|
|
{
|
|
get { return !_TextColor.IsEmpty || !_BackColor.IsEmpty || _UnderlineStyle != eHyperlinkUnderlineStyle.None; }
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Defines hyperlink styles.
|
|
/// </summary>
|
|
public enum eHyperlinkUnderlineStyle
|
|
{
|
|
/// <summary>
|
|
/// Hyper links are not marked.
|
|
/// </summary>
|
|
None,
|
|
/// <summary>
|
|
/// Hyper links are underlined using solid line.
|
|
/// </summary>
|
|
SolidLine,
|
|
/// <summary>
|
|
/// Hyper links are underlined using dashed line.
|
|
/// </summary>
|
|
DashedLine
|
|
}
|
|
}
|