-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed IslandWindow from IConsoleWindow --> IUiaWindow
- Loading branch information
1 parent
867412a
commit a815b42
Showing
9 changed files
with
97 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/*++ | ||
Copyright (c) Microsoft Corporation | ||
Licensed under the MIT license. | ||
Module Name: | ||
- IUiaWindow.hpp | ||
Abstract: | ||
- Defines the methods and properties of what makes a window generate a UIA Tree for accessibility | ||
Author(s): | ||
- Carlos Zamora (CaZamor) July 2019 | ||
--*/ | ||
|
||
#pragma once | ||
|
||
// copied typedef from uiautomationcore.h | ||
typedef int EVENTID; | ||
|
||
namespace Microsoft::Console::Types | ||
{ | ||
class IUiaWindow | ||
{ | ||
public: | ||
virtual void ChangeViewport(const SMALL_RECT NewWindow) = 0; | ||
virtual HWND GetWindowHandle() const = 0; | ||
[[nodiscard]] virtual HRESULT SignalUia(_In_ EVENTID id) = 0; | ||
[[nodiscard]] virtual HRESULT UiaSetTextAreaFocus() = 0; | ||
virtual RECT GetWindowRect() const = 0; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.