terminal/src/cascadia/TerminalApp/ActionList.idl
2019-07-24 11:49:18 -05:00

22 lines
613 B
Plaintext

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import "../Action.idl";
namespace TerminalApp
{
[default_interface] runtimeclass ActionList : Windows.UI.Xaml.Controls.Grid
{
ActionList();
Windows.Foundation.Collections.IObservableVector<Action> FilteredActions { get; };
void SetActions(Windows.Foundation.Collections.IVector<Action> actions);
void ToggleVisibility();
void SetDispatch(ShortcutActionDispatch dispatch);
event Windows.Foundation.TypedEventHandler<ActionList, Windows.UI.Xaml.RoutedEventArgs> Closed;
}
}