csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
615 lines
25 KiB
615 lines
25 KiB
// "Therefore those skilled at the unorthodox
|
|
// are infinite as heaven and earth,
|
|
// inexhaustible as the great rivers.
|
|
// When they come to an end,
|
|
// they begin again,
|
|
// like the days and months;
|
|
// they die and are reborn,
|
|
// like the four seasons."
|
|
//
|
|
// - Sun Tsu,
|
|
// "The Art of War"
|
|
|
|
using System;
|
|
using Avalonia.Controls.Primitives;
|
|
using Avalonia.HtmlRenderer;
|
|
using Avalonia.Input;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.Media;
|
|
using Avalonia.Threading;
|
|
using TheArtOfDev.HtmlRenderer.Core;
|
|
using TheArtOfDev.HtmlRenderer.Core.Entities;
|
|
using TheArtOfDev.HtmlRenderer.Avalonia;
|
|
using TheArtOfDev.HtmlRenderer.Avalonia.Adapters;
|
|
|
|
namespace Avalonia.Controls.Html
|
|
{
|
|
/// <summary>
|
|
/// Provides HTML rendering using the text property.<br/>
|
|
/// Avalonia control that will render html content in it's client rectangle.<br/>
|
|
/// The control will handle mouse and keyboard events on it to support html text selection, copy-paste and mouse clicks.<br/>
|
|
/// <para>
|
|
/// The major differential to use HtmlPanel or HtmlLabel is size and scrollbars.<br/>
|
|
/// If the size of the control depends on the html content the HtmlLabel should be used.<br/>
|
|
/// If the size is set by some kind of layout then HtmlPanel is more suitable, also shows scrollbars if the html contents is larger than the control client rectangle.<br/>
|
|
/// </para>
|
|
/// <para>
|
|
/// <h4>LinkClicked event:</h4>
|
|
/// Raised when the user clicks on a link in the html.<br/>
|
|
/// Allows canceling the execution of the link.
|
|
/// </para>
|
|
/// <para>
|
|
/// <h4>StylesheetLoad event:</h4>
|
|
/// Raised when a stylesheet is about to be loaded by file path or URI by link element.<br/>
|
|
/// This event allows to provide the stylesheet manually or provide new source (file or uri) to load from.<br/>
|
|
/// If no alternative data is provided the original source will be used.<br/>
|
|
/// </para>
|
|
/// <para>
|
|
/// <h4>ImageLoad event:</h4>
|
|
/// Raised when an image is about to be loaded by file path or URI.<br/>
|
|
/// This event allows to provide the image manually, if not handled the image will be loaded from file or download from URI.
|
|
/// </para>
|
|
/// <para>
|
|
/// <h4>RenderError event:</h4>
|
|
/// Raised when an error occurred during html rendering.<br/>
|
|
/// </para>
|
|
/// </summary>
|
|
|
|
public class HtmlControl : Control
|
|
{
|
|
/// <summary>
|
|
/// Underline html container instance.
|
|
/// </summary>
|
|
protected readonly HtmlContainer _htmlContainer;
|
|
|
|
/// <summary>
|
|
/// the base stylesheet data used in the control
|
|
/// </summary>
|
|
protected CssData _baseCssData;
|
|
|
|
/// <summary>
|
|
/// The last position of the scrollbars to know if it has changed to update mouse
|
|
/// </summary>
|
|
protected Point _lastScrollOffset;
|
|
|
|
public static readonly AvaloniaProperty AvoidImagesLateLoadingProperty =
|
|
PropertyHelper.Register<HtmlControl, bool>("AvoidImagesLateLoading", false, OnAvaloniaProperty_valueChanged);
|
|
public static readonly AvaloniaProperty IsSelectionEnabledProperty =
|
|
PropertyHelper.Register<HtmlControl, bool>("IsSelectionEnabled", true, OnAvaloniaProperty_valueChanged);
|
|
public static readonly AvaloniaProperty IsContextMenuEnabledProperty =
|
|
PropertyHelper.Register<HtmlControl, bool>("IsContextMenuEnabled", true, OnAvaloniaProperty_valueChanged);
|
|
|
|
public static readonly AvaloniaProperty BaseStylesheetProperty =
|
|
PropertyHelper.Register<HtmlControl, string>("BaseStylesheet", null, OnAvaloniaProperty_valueChanged);
|
|
|
|
public static readonly AvaloniaProperty TextProperty =
|
|
PropertyHelper.Register<HtmlControl, string>("Text", null, OnAvaloniaProperty_valueChanged);
|
|
|
|
public static readonly StyledProperty<IBrush> BackgroundProperty =
|
|
Border.BackgroundProperty.AddOwner<HtmlControl>();
|
|
|
|
public static readonly AvaloniaProperty BorderThicknessProperty =
|
|
AvaloniaProperty.Register<HtmlControl, Thickness>("BorderThickness", new Thickness(0));
|
|
|
|
public static readonly AvaloniaProperty BorderBrushProperty =
|
|
AvaloniaProperty.Register<HtmlControl, IBrush>("BorderBrush");
|
|
|
|
public static readonly AvaloniaProperty PaddingProperty =
|
|
AvaloniaProperty.Register<HtmlControl, Thickness>("Padding", new Thickness(0));
|
|
|
|
public static readonly RoutedEvent LoadCompleteEvent =
|
|
RoutedEvent.Register<RoutedEventArgs>("LoadComplete", RoutingStrategies.Bubble, typeof(HtmlControl));
|
|
public static readonly RoutedEvent LinkClickedEvent =
|
|
RoutedEvent.Register<HtmlRendererRoutedEventArgs<HtmlLinkClickedEventArgs>>("LinkClicked", RoutingStrategies.Bubble, typeof(HtmlControl));
|
|
public static readonly RoutedEvent RenderErrorEvent
|
|
= RoutedEvent.Register<HtmlRendererRoutedEventArgs<HtmlRenderErrorEventArgs>>("RenderError", RoutingStrategies.Bubble, typeof(HtmlControl));
|
|
public static readonly RoutedEvent RefreshEvent
|
|
= RoutedEvent.Register<HtmlRendererRoutedEventArgs<HtmlRefreshEventArgs>>("Refresh", RoutingStrategies.Bubble, typeof(HtmlControl));
|
|
public static readonly RoutedEvent StylesheetLoadEvent
|
|
= RoutedEvent.Register<HtmlRendererRoutedEventArgs<HtmlStylesheetLoadEventArgs>>("StylesheetLoad", RoutingStrategies.Bubble, typeof(HtmlControl));
|
|
|
|
public static readonly RoutedEvent ImageLoadEvent
|
|
= RoutedEvent.Register<HtmlRendererRoutedEventArgs<HtmlImageLoadEventArgs>>("ImageLoad", RoutingStrategies.Bubble,
|
|
typeof (HtmlControl));
|
|
|
|
static HtmlControl()
|
|
{
|
|
FocusableProperty.OverrideDefaultValue(typeof(HtmlControl), true);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new HtmlPanel and sets a basic css for it's styling.
|
|
/// </summary>
|
|
protected HtmlControl()
|
|
{
|
|
_htmlContainer = new HtmlContainer();
|
|
_htmlContainer.LoadComplete += (_, e) => OnLoadComplete(e);
|
|
_htmlContainer.LinkClicked += (_, e) => OnLinkClicked(e);
|
|
_htmlContainer.RenderError += (_, e) => OnRenderError(e);
|
|
_htmlContainer.Refresh += (_, e) => OnRefresh(e);
|
|
_htmlContainer.StylesheetLoad += (_, e) => OnStylesheetLoad(e);
|
|
_htmlContainer.ImageLoad += (_, e) => OnImageLoad(e);
|
|
}
|
|
|
|
//Hack for adapter
|
|
internal bool LeftMouseButton { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Raised when the set html document has been fully loaded.<br/>
|
|
/// Allows manipulation of the html dom, scroll position, etc.
|
|
/// </summary>
|
|
public event EventHandler<HtmlRendererRoutedEventArgs<EventArgs>> LoadComplete
|
|
{
|
|
add { AddHandler(LoadCompleteEvent, value); }
|
|
remove { RemoveHandler(LoadCompleteEvent, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Raised when the user clicks on a link in the html.<br/>
|
|
/// Allows canceling the execution of the link.
|
|
/// </summary>
|
|
public event EventHandler<HtmlRendererRoutedEventArgs<HtmlLinkClickedEventArgs>> LinkClicked
|
|
{
|
|
add { AddHandler(LinkClickedEvent, value); }
|
|
remove { RemoveHandler(LinkClickedEvent, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Raised when an error occurred during html rendering.<br/>
|
|
/// </summary>
|
|
public event EventHandler<HtmlRendererRoutedEventArgs<HtmlRenderErrorEventArgs>> RenderError
|
|
{
|
|
add { AddHandler(RenderErrorEvent, value); }
|
|
remove { RemoveHandler(RenderErrorEvent, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Raised when a stylesheet is about to be loaded by file path or URI by link element.<br/>
|
|
/// This event allows to provide the stylesheet manually or provide new source (file or uri) to load from.<br/>
|
|
/// If no alternative data is provided the original source will be used.<br/>
|
|
/// </summary>
|
|
public event EventHandler<HtmlRendererRoutedEventArgs<HtmlStylesheetLoadEventArgs>> StylesheetLoad
|
|
{
|
|
add { AddHandler(StylesheetLoadEvent, value); }
|
|
remove { RemoveHandler(StylesheetLoadEvent, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Raised when an image is about to be loaded by file path or URI.<br/>
|
|
/// This event allows to provide the image manually, if not handled the image will be loaded from file or download from URI.
|
|
/// </summary>
|
|
public event EventHandler<HtmlRendererRoutedEventArgs<HtmlImageLoadEventArgs>> ImageLoad
|
|
{
|
|
add { AddHandler(ImageLoadEvent, value); }
|
|
remove { RemoveHandler(ImageLoadEvent, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating if image loading only when visible should be avoided (default - false).<br/>
|
|
/// True - images are loaded as soon as the html is parsed.<br/>
|
|
/// False - images that are not visible because of scroll location are not loaded until they are scrolled to.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Images late loading improve performance if the page contains image outside the visible scroll area, especially if there is large
|
|
/// amount of images, as all image loading is delayed (downloading and loading into memory).<br/>
|
|
/// Late image loading may effect the layout and actual size as image without set size will not have actual size until they are loaded
|
|
/// resulting in layout change during user scroll.<br/>
|
|
/// Early image loading may also effect the layout if image without known size above the current scroll location are loaded as they
|
|
/// will push the html elements down.
|
|
/// </remarks>
|
|
[Category("Behavior")]
|
|
[Description("If image loading only when visible should be avoided")]
|
|
public bool AvoidImagesLateLoading
|
|
{
|
|
get { return (bool)GetValue(AvoidImagesLateLoadingProperty); }
|
|
set { SetValue(AvoidImagesLateLoadingProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Is content selection is enabled for the rendered html (default - true).<br/>
|
|
/// If set to 'false' the rendered html will be static only with ability to click on links.
|
|
/// </summary>
|
|
[Category("Behavior")]
|
|
[Description("Is content selection is enabled for the rendered html.")]
|
|
public bool IsSelectionEnabled
|
|
{
|
|
get { return (bool)GetValue(IsSelectionEnabledProperty); }
|
|
set { SetValue(IsSelectionEnabledProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Is the build-in context menu enabled and will be shown on mouse right click (default - true)
|
|
/// </summary>
|
|
[Category("Behavior")]
|
|
[Description("Is the build-in context menu enabled and will be shown on mouse right click.")]
|
|
public bool IsContextMenuEnabled
|
|
{
|
|
get { return (bool)GetValue(IsContextMenuEnabledProperty); }
|
|
set { SetValue(IsContextMenuEnabledProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Set base stylesheet to be used by html rendered in the panel.
|
|
/// </summary>
|
|
[Category("Appearance")]
|
|
[Description("Set base stylesheet to be used by html rendered in the control.")]
|
|
public string BaseStylesheet
|
|
{
|
|
get { return (string)GetValue(BaseStylesheetProperty); }
|
|
set { SetValue(BaseStylesheetProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the text of this panel
|
|
/// </summary>
|
|
[Description("Sets the html of this control.")]
|
|
public string Text
|
|
{
|
|
get { return (string)GetValue(TextProperty); }
|
|
set { SetValue(TextProperty, value); }
|
|
}
|
|
|
|
public Thickness BorderThickness
|
|
{
|
|
get { return (Thickness) GetValue(BorderThicknessProperty); }
|
|
set { SetValue(BorderThicknessProperty, value); }
|
|
}
|
|
|
|
public IBrush BorderBrush
|
|
{
|
|
get { return (IBrush)GetValue(BorderBrushProperty); }
|
|
set { SetValue(BorderThicknessProperty, value); }
|
|
}
|
|
|
|
public Thickness Padding
|
|
{
|
|
get { return (Thickness)GetValue(PaddingProperty); }
|
|
set { SetValue(PaddingProperty, value); }
|
|
}
|
|
|
|
public IBrush Background
|
|
{
|
|
get { return (IBrush) GetValue(BackgroundProperty); }
|
|
set { SetValue(BackgroundProperty, value);}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the currently selected text segment in the html.
|
|
/// </summary>
|
|
[Browsable(false)]
|
|
public virtual string SelectedText
|
|
{
|
|
get { return _htmlContainer.SelectedText; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Copy the currently selected html segment with style.
|
|
/// </summary>
|
|
[Browsable(false)]
|
|
public virtual string SelectedHtml
|
|
{
|
|
get { return _htmlContainer.SelectedHtml; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get html from the current DOM tree with inline style.
|
|
/// </summary>
|
|
/// <returns>generated html</returns>
|
|
public virtual string GetHtml()
|
|
{
|
|
return _htmlContainer != null ? _htmlContainer.GetHtml() : null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the rectangle of html element as calculated by html layout.<br/>
|
|
/// Element if found by id (id attribute on the html element).<br/>
|
|
/// Note: to get the screen rectangle you need to adjust by the hosting control.<br/>
|
|
/// </summary>
|
|
/// <param name="elementId">the id of the element to get its rectangle</param>
|
|
/// <returns>the rectangle of the element or null if not found</returns>
|
|
public virtual Rect? GetElementRectangle(string elementId)
|
|
{
|
|
return _htmlContainer != null ? _htmlContainer.GetElementRectangle(elementId) : null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Clear the current selection.
|
|
/// </summary>
|
|
public void ClearSelection()
|
|
{
|
|
if (_htmlContainer != null)
|
|
_htmlContainer.ClearSelection();
|
|
}
|
|
|
|
|
|
|
|
//HACK: We don't have support for RenderSize for now
|
|
private Size RenderSize => new Size(Bounds.Width, Bounds.Height);
|
|
|
|
|
|
public override void Render(DrawingContext context)
|
|
{
|
|
context.FillRectangle(Background, new Rect(RenderSize));
|
|
|
|
if (BorderThickness != new Thickness(0) && BorderBrush != null)
|
|
{
|
|
var brush = new SolidColorBrush(Colors.Black);
|
|
if (BorderThickness.Top > 0)
|
|
context.FillRectangle(brush, new Rect(0, 0, RenderSize.Width, BorderThickness.Top));
|
|
if (BorderThickness.Bottom > 0)
|
|
context.FillRectangle(brush, new Rect(0, RenderSize.Height - BorderThickness.Bottom, RenderSize.Width, BorderThickness.Bottom));
|
|
if (BorderThickness.Left > 0)
|
|
context.FillRectangle(brush, new Rect(0, 0, BorderThickness.Left, RenderSize.Height));
|
|
if (BorderThickness.Right > 0)
|
|
context.FillRectangle(brush, new Rect(RenderSize.Width - BorderThickness.Right, 0, BorderThickness.Right, RenderSize.Height));
|
|
}
|
|
|
|
var htmlWidth = HtmlWidth(RenderSize);
|
|
var htmlHeight = HtmlHeight(RenderSize);
|
|
if (_htmlContainer != null && htmlWidth > 0 && htmlHeight > 0)
|
|
{
|
|
/*
|
|
//TODO: Revert antialiasing fixes
|
|
var windows = Window.GetWindow(this);
|
|
if (windows != null)
|
|
{
|
|
// adjust render location to round point so we won't get anti-alias smugness
|
|
var wPoint = TranslatePoint(new Point(0, 0), windows);
|
|
wPoint.Offset(-(int)wPoint.X, -(int)wPoint.Y);
|
|
var xTrans = wPoint.X < .5 ? -wPoint.X : 1 - wPoint.X;
|
|
var yTrans = wPoint.Y < .5 ? -wPoint.Y : 1 - wPoint.Y;
|
|
context.PushTransform(new TranslateTransform(xTrans, yTrans));
|
|
}*/
|
|
|
|
using (context.PushClip(new Rect(Padding.Left + BorderThickness.Left, Padding.Top + BorderThickness.Top,
|
|
htmlWidth, (int) htmlHeight)))
|
|
{
|
|
_htmlContainer.Location = new Point(Padding.Left + BorderThickness.Left,
|
|
Padding.Top + BorderThickness.Top);
|
|
_htmlContainer.PerformPaint(context,
|
|
new Rect(Padding.Left + BorderThickness.Left, Padding.Top + BorderThickness.Top, htmlWidth,
|
|
htmlHeight));
|
|
}
|
|
|
|
if (!_lastScrollOffset.Equals(_htmlContainer.ScrollOffset))
|
|
{
|
|
_lastScrollOffset = _htmlContainer.ScrollOffset;
|
|
InvokeMouseMove();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handle mouse move to handle hover cursor and text selection.
|
|
/// </summary>
|
|
protected override void OnPointerMoved(PointerEventArgs e)
|
|
{
|
|
base.OnPointerMoved(e);
|
|
if (_htmlContainer != null)
|
|
_htmlContainer.HandleMouseMove(this, e.GetPosition(this));
|
|
}
|
|
/// <summary>
|
|
/// Handle mouse leave to handle cursor change.
|
|
/// </summary>
|
|
protected override void OnPointerLeave(PointerEventArgs e)
|
|
{
|
|
base.OnPointerLeave(e);
|
|
if (_htmlContainer != null)
|
|
_htmlContainer.HandleMouseLeave(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handle mouse down to handle selection.
|
|
/// </summary>
|
|
protected override void OnPointerPressed(PointerPressedEventArgs e)
|
|
{
|
|
base.OnPointerPressed(e);
|
|
LeftMouseButton = true;
|
|
_htmlContainer?.HandleLeftMouseDown(this, e);
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Handle mouse up to handle selection and link click.
|
|
/// </summary>
|
|
protected override void OnPointerReleased(PointerReleasedEventArgs e)
|
|
{
|
|
base.OnPointerReleased(e);
|
|
LeftMouseButton = false;
|
|
if (_htmlContainer != null)
|
|
_htmlContainer.HandleLeftMouseUp(this, e);
|
|
}
|
|
|
|
//TODO: Implement double click
|
|
/*
|
|
/// <summary>
|
|
/// Handle mouse double click to select word under the mouse.
|
|
/// </summary>
|
|
protected override void OnMouseDoubleClick(MouseButtonEventArgs e)
|
|
{
|
|
base.OnMouseDoubleClick(e);
|
|
if (_htmlContainer != null)
|
|
_htmlContainer.HandleMouseDoubleClick(this, e);
|
|
}
|
|
*/
|
|
/// <summary>
|
|
/// Handle key down event for selection, copy and scrollbars handling.
|
|
/// </summary>
|
|
protected override void OnKeyDown(KeyEventArgs e)
|
|
{
|
|
base.OnKeyDown(e);
|
|
if (_htmlContainer != null)
|
|
_htmlContainer.HandleKeyDown(this, e);
|
|
}
|
|
|
|
void RaiseRouted<T>(RoutedEvent ev, T arg)
|
|
{
|
|
var e =new HtmlRendererRoutedEventArgs<T>
|
|
{
|
|
Event = arg,
|
|
Source = this,
|
|
RoutedEvent = ev,
|
|
Route = ev.RoutingStrategies
|
|
};
|
|
RaiseEvent(e);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Propagate the LoadComplete event from root container.
|
|
/// </summary>
|
|
protected virtual void OnLoadComplete(EventArgs e) => RaiseRouted(LoadCompleteEvent, e);
|
|
|
|
/// <summary>
|
|
/// Propagate the LinkClicked event from root container.
|
|
/// </summary>
|
|
protected virtual void OnLinkClicked(HtmlLinkClickedEventArgs e) => RaiseRouted(LinkClickedEvent, e);
|
|
|
|
/// <summary>
|
|
/// Propagate the Render Error event from root container.
|
|
/// </summary>
|
|
protected virtual void OnRenderError(HtmlRenderErrorEventArgs e) => RaiseRouted(RenderErrorEvent, e);
|
|
|
|
/// <summary>
|
|
/// Propagate the stylesheet load event from root container.
|
|
/// </summary>
|
|
protected virtual void OnStylesheetLoad(HtmlStylesheetLoadEventArgs e) => RaiseRouted(StylesheetLoadEvent, e);
|
|
|
|
/// <summary>
|
|
/// Propagate the image load event from root container.
|
|
/// </summary>
|
|
protected virtual void OnImageLoad(HtmlImageLoadEventArgs e) => RaiseRouted(ImageLoadEvent, e);
|
|
|
|
/// <summary>
|
|
/// Handle html renderer invalidate and re-layout as requested.
|
|
/// </summary>
|
|
protected virtual void OnRefresh(HtmlRefreshEventArgs e)
|
|
{
|
|
if (e.Layout)
|
|
InvalidateMeasure();
|
|
InvalidateVisual();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the width the HTML has to render in (not including vertical scroll iff it is visible)
|
|
/// </summary>
|
|
protected virtual double HtmlWidth(Size size)
|
|
{
|
|
return size.Width - Padding.Left - Padding.Right - BorderThickness.Left - BorderThickness.Right;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the width the HTML has to render in (not including vertical scroll iff it is visible)
|
|
/// </summary>
|
|
protected virtual double HtmlHeight(Size size)
|
|
{
|
|
return size.Height - Padding.Top - Padding.Bottom - BorderThickness.Top - BorderThickness.Bottom;
|
|
}
|
|
|
|
/// <summary>
|
|
/// call mouse move to handle paint after scroll or html change affecting mouse cursor.
|
|
/// </summary>
|
|
protected virtual void InvokeMouseMove()
|
|
{
|
|
|
|
_htmlContainer.HandleMouseMove(this, MouseDevice.Instance?.GetPosition(this) ?? default(Point));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handle when dependency property value changes to update the underline HtmlContainer with the new value.
|
|
/// </summary>
|
|
private static void OnAvaloniaProperty_valueChanged(AvaloniaObject AvaloniaObject,
|
|
AvaloniaPropertyChangedEventArgs e)
|
|
{
|
|
var control = AvaloniaObject as HtmlControl;
|
|
if (control != null)
|
|
{
|
|
var htmlContainer = control._htmlContainer;
|
|
if (e.Property == AvoidImagesLateLoadingProperty)
|
|
{
|
|
htmlContainer.AvoidImagesLateLoading = (bool) e.NewValue;
|
|
}
|
|
else if (e.Property == IsSelectionEnabledProperty)
|
|
{
|
|
htmlContainer.IsSelectionEnabled = (bool) e.NewValue;
|
|
}
|
|
else if (e.Property == IsContextMenuEnabledProperty)
|
|
{
|
|
htmlContainer.IsContextMenuEnabled = (bool) e.NewValue;
|
|
}
|
|
else if (e.Property == BaseStylesheetProperty)
|
|
{
|
|
var baseCssData = CssData.Parse(AvaloniaAdapter.Instance, (string) e.NewValue);
|
|
control._baseCssData = baseCssData;
|
|
htmlContainer.SetHtml(control.Text, baseCssData);
|
|
}
|
|
else if (e.Property == TextProperty)
|
|
{
|
|
htmlContainer.ScrollOffset = new Point(0, 0);
|
|
htmlContainer.SetHtml((string) e.NewValue, control._baseCssData);
|
|
control.InvalidateMeasure();
|
|
control.InvalidateVisual();
|
|
|
|
if (control.VisualRoot != null)
|
|
{
|
|
control.InvokeMouseMove();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//TODO: Implement CheckAccess calls
|
|
/*
|
|
private void OnLoadComplete(object sender, EventArgs e)
|
|
{
|
|
|
|
if (CheckAccess())
|
|
OnLoadComplete(e);
|
|
else
|
|
Dispatcher.UIThread.Invoke(new Action<HtmlLinkClickedEventArgs>(OnLinkClicked), e);
|
|
|
|
}
|
|
|
|
private void OnLinkClicked(object sender, HtmlLinkClickedEventArgs e)
|
|
{
|
|
if (CheckAccess())
|
|
OnLinkClicked(e);
|
|
else
|
|
Dispatcher.UIThread.Invoke(new Action<HtmlLinkClickedEventArgs>(OnLinkClicked), e);
|
|
}
|
|
|
|
private void OnRenderError(object sender, HtmlRenderErrorEventArgs e)
|
|
{
|
|
if (CheckAccess())
|
|
OnRenderError(e);
|
|
else
|
|
Dispatcher.UIThread.Invoke(new Action<HtmlRenderErrorEventArgs>(OnRenderError), e);
|
|
}
|
|
|
|
private void OnStylesheetLoad(object sender, HtmlStylesheetLoadEventArgs e)
|
|
{
|
|
if (CheckAccess())
|
|
OnStylesheetLoad(e);
|
|
else
|
|
Dispatcher.UIThread.Invoke(new Action<HtmlStylesheetLoadEventArgs>(OnStylesheetLoad), e);
|
|
}
|
|
|
|
private void OnImageLoad(object sender, HtmlImageLoadEventArgs e)
|
|
{
|
|
if (CheckAccess())
|
|
OnImageLoad(e);
|
|
else
|
|
Dispatcher.UIThread.Invoke(new Action<HtmlImageLoadEventArgs>(OnImageLoad), e);
|
|
}
|
|
|
|
private void OnRefresh(object sender, HtmlRefreshEventArgs e)
|
|
{
|
|
if (CheckAccess())
|
|
OnRefresh(e);
|
|
else
|
|
Dispatcher.UIThread.Invoke(new Action<HtmlRefreshEventArgs>(OnRefresh), e);
|
|
}
|
|
*/
|
|
}
|
|
}
|