terminal/src/cascadia/TerminalApp/TermControlHost.idl
Mike Griese dd212dde74 Enable embedding non-terminal controls in panes
This adds a _super_ simple dummy RichTextBox as a control in a pane adjacent to a terminal pane
2019-07-18 10:36:49 -05:00

19 lines
630 B
Plaintext

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Even though this is in the same directory, we're building from a child
// directory, so the midl compiler gets confused. TODO: This shouldn't need the
// "../". Maybe there's a build rule we can add (gross) or we can just live with
// it.
import "../IControlHost.idl";
namespace TerminalApp
{
[default_interface] runtimeclass TermControlHost : IControlHost
{
TermControlHost(Microsoft.Terminal.TerminalControl.TermControl control);
Microsoft.Terminal.TerminalControl.TermControl Terminal { get; };
};
}