terminal/src/cascadia/TerminalApp/TitlebarControl.idl
2021-09-03 10:29:54 -07:00

24 lines
646 B
Plaintext

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
namespace TerminalApp
{
enum WindowVisualState
{
WindowVisualStateNormal = 0,
WindowVisualStateMaximized,
WindowVisualStateIconified
};
[default_interface] runtimeclass TitlebarControl : Windows.UI.Xaml.Controls.Grid
{
TitlebarControl(UInt64 parentWindowHandle);
void SetWindowVisualState(WindowVisualState visualState);
void MaxButtonEntered();
void MaxButtonExited();
IInspectable Content;
Windows.UI.Xaml.Controls.Border DragBar { get; };
}
}