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.
69 lines
3.0 KiB
69 lines
3.0 KiB
// Copyright (c) The Avalonia Project. All rights reserved.
|
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|
|
|
using System;
|
|
|
|
namespace Avalonia.Interactivity
|
|
{
|
|
/// <summary>
|
|
/// Interface for objects that raise routed events.
|
|
/// </summary>
|
|
public interface IInteractive
|
|
{
|
|
/// <summary>
|
|
/// Gets the interactive parent of the object for bubbling and tunneling events.
|
|
/// </summary>
|
|
IInteractive InteractiveParent { get; }
|
|
|
|
/// <summary>
|
|
/// Adds a handler for the specified routed event.
|
|
/// </summary>
|
|
/// <param name="routedEvent">The routed event.</param>
|
|
/// <param name="handler">The handler.</param>
|
|
/// <param name="routes">The routing strategies to listen to.</param>
|
|
/// <param name="handledEventsToo">Whether handled events should also be listened for.</param>
|
|
/// <returns>A disposable that terminates the event subscription.</returns>
|
|
IDisposable AddHandler(
|
|
RoutedEvent routedEvent,
|
|
Delegate handler,
|
|
RoutingStrategies routes = RoutingStrategies.Direct | RoutingStrategies.Bubble,
|
|
bool handledEventsToo = false);
|
|
|
|
/// <summary>
|
|
/// Adds a handler for the specified routed event.
|
|
/// </summary>
|
|
/// <typeparam name="TEventArgs">The type of the event's args.</typeparam>
|
|
/// <param name="routedEvent">The routed event.</param>
|
|
/// <param name="handler">The handler.</param>
|
|
/// <param name="routes">The routing strategies to listen to.</param>
|
|
/// <param name="handledEventsToo">Whether handled events should also be listened for.</param>
|
|
/// <returns>A disposable that terminates the event subscription.</returns>
|
|
IDisposable AddHandler<TEventArgs>(
|
|
RoutedEvent<TEventArgs> routedEvent,
|
|
EventHandler<TEventArgs> handler,
|
|
RoutingStrategies routes = RoutingStrategies.Direct | RoutingStrategies.Bubble,
|
|
bool handledEventsToo = false) where TEventArgs : RoutedEventArgs;
|
|
|
|
/// <summary>
|
|
/// Removes a handler for the specified routed event.
|
|
/// </summary>
|
|
/// <param name="routedEvent">The routed event.</param>
|
|
/// <param name="handler">The handler.</param>
|
|
void RemoveHandler(RoutedEvent routedEvent, Delegate handler);
|
|
|
|
/// <summary>
|
|
/// Removes a handler for the specified routed event.
|
|
/// </summary>
|
|
/// <typeparam name="TEventArgs">The type of the event's args.</typeparam>
|
|
/// <param name="routedEvent">The routed event.</param>
|
|
/// <param name="handler">The handler.</param>
|
|
void RemoveHandler<TEventArgs>(RoutedEvent<TEventArgs> routedEvent, EventHandler<TEventArgs> handler)
|
|
where TEventArgs : RoutedEventArgs;
|
|
|
|
/// <summary>
|
|
/// Raises a routed event.
|
|
/// </summary>
|
|
/// <param name="e">The event args.</param>
|
|
void RaiseEvent(RoutedEventArgs e);
|
|
}
|
|
}
|
|
|