win32more-Microsoft.WindowsAppSDK 0.6.1.5.240227000__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.

Files changed (66) hide show
  1. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/.gitignore +160 -0
  2. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/LICENSE (Microsoft.WindowsAppSDK).txt +90 -0
  3. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/PKG-INFO +5 -0
  4. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/pyproject.toml +11 -0
  5. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Foundation/__init__.py +7 -0
  6. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Graphics/DirectX/__init__.py +167 -0
  7. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Graphics/Display/__init__.py +174 -0
  8. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Composition/Core/__init__.py +52 -0
  9. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +63 -0
  10. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Composition/Effects/__init__.py +96 -0
  11. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Composition/Interactions/__init__.py +951 -0
  12. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Composition/Scenes/__init__.py +671 -0
  13. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +356 -0
  14. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Composition/__init__.py +4793 -0
  15. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Content/__init__.py +918 -0
  16. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Dispatching/__init__.py +241 -0
  17. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Input/DragDrop/__init__.py +235 -0
  18. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Input/Interop/__init__.py +19 -0
  19. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Input/__init__.py +1927 -0
  20. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/System/__init__.py +46 -0
  21. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Text/__init__.py +1090 -0
  22. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Windowing/__init__.py +877 -0
  23. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py +3414 -0
  24. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py +489 -0
  25. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Automation/Text/__init__.py +17 -0
  26. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Automation/__init__.py +1607 -0
  27. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Controls/AnimatedVisuals/__init__.py +170 -0
  28. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Controls/Primitives/__init__.py +6458 -0
  29. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Controls/__init__.py +31159 -0
  30. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Core/Direct/__init__.py +7 -0
  31. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Data/__init__.py +670 -0
  32. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Documents/__init__.py +2030 -0
  33. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Hosting/__init__.py +329 -0
  34. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Input/__init__.py +1985 -0
  35. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Interop/__init__.py +148 -0
  36. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Markup/__init__.py +391 -0
  37. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Media/Animation/__init__.py +4167 -0
  38. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Media/Imaging/__init__.py +632 -0
  39. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Media/Media3D/__init__.py +373 -0
  40. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Media/__init__.py +3510 -0
  41. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Navigation/__init__.py +255 -0
  42. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Printing/__init__.py +193 -0
  43. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Resources/__init__.py +53 -0
  44. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/Shapes/__init__.py +538 -0
  45. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py +39 -0
  46. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/Xaml/__init__.py +6010 -0
  47. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/UI/__init__.py +912 -0
  48. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Web/WebView2/Core/__init__.py +4685 -0
  49. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/AppLifecycle/__init__.py +180 -0
  50. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py +572 -0
  51. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/AppNotifications/__init__.py +333 -0
  52. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py +244 -0
  53. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py +322 -0
  54. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +114 -0
  55. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/Management/Deployment/__init__.py +1114 -0
  56. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/PushNotifications/__init__.py +146 -0
  57. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/Security/AccessControl/__init__.py +25 -0
  58. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/System/Power/__init__.py +223 -0
  59. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/System/__init__.py +78 -0
  60. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +181 -0
  61. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/Widgets/Providers/__init__.py +325 -0
  62. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/Microsoft/Windows/Widgets/__init__.py +11 -0
  63. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/appsdk/versioninfo.py +3 -0
  64. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  65. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  66. win32more_microsoft_windowsappsdk-0.6.1.5.240227000/src/win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
@@ -0,0 +1,160 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/#use-with-ide
110
+ .pdm.toml
111
+
112
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
+ __pypackages__/
114
+
115
+ # Celery stuff
116
+ celerybeat-schedule
117
+ celerybeat.pid
118
+
119
+ # SageMath parsed files
120
+ *.sage.py
121
+
122
+ # Environments
123
+ .env
124
+ .venv
125
+ env/
126
+ venv/
127
+ ENV/
128
+ env.bak/
129
+ venv.bak/
130
+
131
+ # Spyder project settings
132
+ .spyderproject
133
+ .spyproject
134
+
135
+ # Rope project settings
136
+ .ropeproject
137
+
138
+ # mkdocs documentation
139
+ /site
140
+
141
+ # mypy
142
+ .mypy_cache/
143
+ .dmypy.json
144
+ dmypy.json
145
+
146
+ # Pyre type checker
147
+ .pyre/
148
+
149
+ # pytype static type analyzer
150
+ .pytype/
151
+
152
+ # Cython debug symbols
153
+ cython_debug/
154
+
155
+ # PyCharm
156
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
159
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
160
+ #.idea/
@@ -0,0 +1,90 @@
1
+ MICROSOFT SOFTWARE LICENSE TERMS
2
+ MICROSOFT WINDOWS APP SDK
3
+ ________________________________________
4
+ IF YOU LIVE IN (OR ARE A BUSINESS WITH A PRINCIPAL PLACE OF BUSINESS IN) THE UNITED STATES, PLEASE READ THE “BINDING ARBITRATION AND CLASS ACTION WAIVER” SECTION BELOW. IT AFFECTS HOW DISPUTES ARE RESOLVED.
5
+ ________________________________________
6
+
7
+ These license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft’s rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.
8
+
9
+ 1. INSTALLATION AND USE RIGHTS.
10
+
11
+ a) General. Subject to the terms of this agreement, you may install and use any number of copies of the software to develop and test your applications, solely for use on Windows.
12
+
13
+ b) Included Microsoft Applications. The software may include other Microsoft applications. These license terms apply to those included applications, if any, unless other license terms are provided with the other Microsoft applications.
14
+
15
+ c) Microsoft Platforms. The software may include components from Microsoft Windows. These components are governed by separate agreements and their own product support policies, as described in the license terms found in the installation directory for that component or in the “Licenses” folder accompanying the software.
16
+
17
+ 2. DATA.
18
+
19
+ a) Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you to collect data from users of your applications. If you use these features to enable data collection in your applications, you must comply with applicable law, including providing appropriate notices to users of your applications. You can learn more about data collection and use in the help documentation and the privacy statement at https://aka.ms/privacy. Your use of the software operates as your consent to these practices.
20
+
21
+ b) Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.
22
+
23
+ 3. DISTRIBUTABLE CODE. The software may contain code you are permitted to distribute (i.e. make available for third parties) in applications you develop, as described in this Section.
24
+
25
+ a) Distribution Rights. The code and test files described below are distributable if included with the software.
26
+
27
+ i. Image Library. You may copy and distribute images, graphics, and animations in the Image Library as described in the software documentation; and
28
+
29
+ ii. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.
30
+
31
+ b) Distribution Requirements. For any code you distribute, you must:
32
+
33
+ i. add significant primary functionality to it in your applications;
34
+
35
+ ii. require distributors and external end users to agree to terms that protect it and Microsoft at least as much as this agreement; and
36
+
37
+ iii. indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified distributable code.
38
+
39
+ c) Distribution Restrictions. You may not:
40
+
41
+ i. use Microsoft’s trademarks or trade dress in your application in any way that suggests your application comes from or is endorsed by Microsoft; or
42
+
43
+ ii. modify or distribute the source code of any distributable code so that any part of it becomes subject to any license that requires that the distributable code, any other part of the software, or any of Microsoft’s other intellectual property be disclosed or distributed in source code form, or that others have the right to modify it.
44
+
45
+ 4. SCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you will not (and have no right to):
46
+
47
+ a) work around any technical limitations in the software that only allow you to use it in certain ways;
48
+
49
+ b) reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software;
50
+
51
+ c) remove, minimize, block, or modify any notices of Microsoft or its suppliers in the software;
52
+
53
+ d) use the software in any way that is against the law or to create or propagate malware; or
54
+
55
+ e) share, publish, distribute, or lease the software (except for any distributable code, subject to the terms above), provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party.
56
+
57
+ 5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit https://aka.ms/exporting.
58
+
59
+ 6. SUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support services for the software. Any support provided is “as is”, “with all faults”, and without warranty of any kind.
60
+
61
+ 7. UPDATES. The software may periodically check for updates, and download and install them for you. You may obtain updates only from Microsoft or authorized sources. Microsoft may need to update your system to provide you with updates. You agree to receive these automatic updates without any additional notice. Updates may not include or support all existing software features, services, or peripheral devices.
62
+
63
+ 8. BINDING ARBITRATION AND CLASS ACTION WAIVER. This Section applies if you live in (or, if a business, your principal place of business is in) the United States. If you and Microsoft have a dispute, you and Microsoft agree to try for 60 days to resolve it informally. If you and Microsoft can’t, you and Microsoft agree to binding individual arbitration before the American Arbitration Association under the Federal Arbitration Act (“FAA”), and not to sue in court in front of a judge or jury. Instead, a neutral arbitrator will decide. Class action lawsuits, class-wide arbitrations, private attorney-general actions, and any other proceeding where someone acts in a representative capacity are not allowed; nor is combining individual proceedings without the consent of all parties. The complete Arbitration Agreement contains more terms and is at https://aka.ms/arb-agreement-4. You and Microsoft agree to these terms.
64
+
65
+ 9. ENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements, updates, or third-party applications, is the entire agreement for the software.
66
+
67
+ 10. APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United States or Canada, the laws of the state or province where you live (or, if a business, where your principal place of business is located) govern the interpretation of this agreement, claims for its breach, and all other claims (including consumer protection, unfair competition, and tort claims), regardless of conflict of laws principles, except that the FAA governs everything related to arbitration. If you acquired the software in any other country, its laws apply, except that the FAA governs everything related to arbitration. If U.S. federal jurisdiction exists, you and Microsoft consent to exclusive jurisdiction and venue in the federal court in King County, Washington for all disputes heard in court (excluding arbitration). If not, you and Microsoft consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington for all disputes heard in court (excluding arbitration).
68
+
69
+ 11. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:
70
+
71
+ a) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.
72
+
73
+ b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.
74
+
75
+ c) Germany and Austria.
76
+
77
+ i. Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.
78
+
79
+ ii. Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.
80
+
81
+ Subject to the foregoing clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.
82
+
83
+ 12. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
84
+
85
+ 13. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT, OR INCIDENTAL DAMAGES.
86
+
87
+ This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, warranty, guarantee, or condition; strict liability, negligence, or other tort; or any other claim; in each case to the extent permitted by applicable law.
88
+
89
+ It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages.
90
+
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: win32more-Microsoft.WindowsAppSDK
3
+ Version: 0.6.1.5.240227000
4
+ License-File: LICENSE (Microsoft.WindowsAppSDK).txt
5
+ Requires-Dist: win32more==0.6.*
@@ -0,0 +1,11 @@
1
+ [project]
2
+ name = "win32more-Microsoft.WindowsAppSDK"
3
+ version = "0.6.1.5.240227000"
4
+ dependencies = ["win32more==0.6.*"]
5
+
6
+ [build-system]
7
+ requires = ["hatchling >= 1.26"]
8
+ build-backend = "hatchling.build"
9
+
10
+ [tool.hatch.build.targets.wheel]
11
+ packages = ["src/win32more"]
@@ -0,0 +1,7 @@
1
+ from __future__ import annotations
2
+ from win32more.winrt.prelude import *
3
+ import win32more.Microsoft.Foundation
4
+ WindowsAppSDKContract: UInt32 = 65541
5
+
6
+
7
+ make_ready(__name__)
@@ -0,0 +1,167 @@
1
+ from __future__ import annotations
2
+ from win32more.winrt.prelude import *
3
+ import win32more.Microsoft.Graphics.DirectX
4
+ class DirectXAlphaMode(Enum, Int32):
5
+ Unspecified = 0
6
+ Premultiplied = 1
7
+ Straight = 2
8
+ Ignore = 3
9
+ class DirectXColorSpace(Enum, Int32):
10
+ RgbFullG22NoneP709 = 0
11
+ RgbFullG10NoneP709 = 1
12
+ RgbStudioG22NoneP709 = 2
13
+ RgbStudioG22NoneP2020 = 3
14
+ Reserved = 4
15
+ YccFullG22NoneP709X601 = 5
16
+ YccStudioG22LeftP601 = 6
17
+ YccFullG22LeftP601 = 7
18
+ YccStudioG22LeftP709 = 8
19
+ YccFullG22LeftP709 = 9
20
+ YccStudioG22LeftP2020 = 10
21
+ YccFullG22LeftP2020 = 11
22
+ RgbFullG2084NoneP2020 = 12
23
+ YccStudioG2084LeftP2020 = 13
24
+ RgbStudioG2084NoneP2020 = 14
25
+ YccStudioG22TopLeftP2020 = 15
26
+ YccStudioG2084TopLeftP2020 = 16
27
+ RgbFullG22NoneP2020 = 17
28
+ YccStudioGHlgTopLeftP2020 = 18
29
+ YccFullGHlgTopLeftP2020 = 19
30
+ RgbStudioG24NoneP709 = 20
31
+ RgbStudioG24NoneP2020 = 21
32
+ YccStudioG24LeftP709 = 22
33
+ YccStudioG24LeftP2020 = 23
34
+ YccStudioG24TopLeftP2020 = 24
35
+ class DirectXPixelFormat(Enum, Int32):
36
+ Unknown = 0
37
+ R32G32B32A32Typeless = 1
38
+ R32G32B32A32Float = 2
39
+ R32G32B32A32UInt = 3
40
+ R32G32B32A32Int = 4
41
+ R32G32B32Typeless = 5
42
+ R32G32B32Float = 6
43
+ R32G32B32UInt = 7
44
+ R32G32B32Int = 8
45
+ R16G16B16A16Typeless = 9
46
+ R16G16B16A16Float = 10
47
+ R16G16B16A16UIntNormalized = 11
48
+ R16G16B16A16UInt = 12
49
+ R16G16B16A16IntNormalized = 13
50
+ R16G16B16A16Int = 14
51
+ R32G32Typeless = 15
52
+ R32G32Float = 16
53
+ R32G32UInt = 17
54
+ R32G32Int = 18
55
+ R32G8X24Typeless = 19
56
+ D32FloatS8X24UInt = 20
57
+ R32FloatX8X24Typeless = 21
58
+ X32TypelessG8X24UInt = 22
59
+ R10G10B10A2Typeless = 23
60
+ R10G10B10A2UIntNormalized = 24
61
+ R10G10B10A2UInt = 25
62
+ R11G11B10Float = 26
63
+ R8G8B8A8Typeless = 27
64
+ R8G8B8A8UIntNormalized = 28
65
+ R8G8B8A8UIntNormalizedSrgb = 29
66
+ R8G8B8A8UInt = 30
67
+ R8G8B8A8IntNormalized = 31
68
+ R8G8B8A8Int = 32
69
+ R16G16Typeless = 33
70
+ R16G16Float = 34
71
+ R16G16UIntNormalized = 35
72
+ R16G16UInt = 36
73
+ R16G16IntNormalized = 37
74
+ R16G16Int = 38
75
+ R32Typeless = 39
76
+ D32Float = 40
77
+ R32Float = 41
78
+ R32UInt = 42
79
+ R32Int = 43
80
+ R24G8Typeless = 44
81
+ D24UIntNormalizedS8UInt = 45
82
+ R24UIntNormalizedX8Typeless = 46
83
+ X24TypelessG8UInt = 47
84
+ R8G8Typeless = 48
85
+ R8G8UIntNormalized = 49
86
+ R8G8UInt = 50
87
+ R8G8IntNormalized = 51
88
+ R8G8Int = 52
89
+ R16Typeless = 53
90
+ R16Float = 54
91
+ D16UIntNormalized = 55
92
+ R16UIntNormalized = 56
93
+ R16UInt = 57
94
+ R16IntNormalized = 58
95
+ R16Int = 59
96
+ R8Typeless = 60
97
+ R8UIntNormalized = 61
98
+ R8UInt = 62
99
+ R8IntNormalized = 63
100
+ R8Int = 64
101
+ A8UIntNormalized = 65
102
+ R1UIntNormalized = 66
103
+ R9G9B9E5SharedExponent = 67
104
+ R8G8B8G8UIntNormalized = 68
105
+ G8R8G8B8UIntNormalized = 69
106
+ BC1Typeless = 70
107
+ BC1UIntNormalized = 71
108
+ BC1UIntNormalizedSrgb = 72
109
+ BC2Typeless = 73
110
+ BC2UIntNormalized = 74
111
+ BC2UIntNormalizedSrgb = 75
112
+ BC3Typeless = 76
113
+ BC3UIntNormalized = 77
114
+ BC3UIntNormalizedSrgb = 78
115
+ BC4Typeless = 79
116
+ BC4UIntNormalized = 80
117
+ BC4IntNormalized = 81
118
+ BC5Typeless = 82
119
+ BC5UIntNormalized = 83
120
+ BC5IntNormalized = 84
121
+ B5G6R5UIntNormalized = 85
122
+ B5G5R5A1UIntNormalized = 86
123
+ B8G8R8A8UIntNormalized = 87
124
+ B8G8R8X8UIntNormalized = 88
125
+ R10G10B10XRBiasA2UIntNormalized = 89
126
+ B8G8R8A8Typeless = 90
127
+ B8G8R8A8UIntNormalizedSrgb = 91
128
+ B8G8R8X8Typeless = 92
129
+ B8G8R8X8UIntNormalizedSrgb = 93
130
+ BC6HTypeless = 94
131
+ BC6H16UnsignedFloat = 95
132
+ BC6H16Float = 96
133
+ BC7Typeless = 97
134
+ BC7UIntNormalized = 98
135
+ BC7UIntNormalizedSrgb = 99
136
+ Ayuv = 100
137
+ Y410 = 101
138
+ Y416 = 102
139
+ NV12 = 103
140
+ P010 = 104
141
+ P016 = 105
142
+ Opaque420 = 106
143
+ Yuy2 = 107
144
+ Y210 = 108
145
+ Y216 = 109
146
+ NV11 = 110
147
+ AI44 = 111
148
+ IA44 = 112
149
+ P8 = 113
150
+ A8P8 = 114
151
+ B4G4R4A4UIntNormalized = 115
152
+ P208 = 130
153
+ V208 = 131
154
+ V408 = 132
155
+ SamplerFeedbackMinMipOpaque = 189
156
+ SamplerFeedbackMipRegionUsedOpaque = 190
157
+ A4B4G4R4 = 191
158
+ class DirectXPrimitiveTopology(Enum, Int32):
159
+ Undefined = 0
160
+ PointList = 1
161
+ LineList = 2
162
+ LineStrip = 3
163
+ TriangleList = 4
164
+ TriangleStrip = 5
165
+
166
+
167
+ make_ready(__name__)
@@ -0,0 +1,174 @@
1
+ from __future__ import annotations
2
+ from win32more.winrt.prelude import *
3
+ import win32more.Microsoft.Graphics.Display
4
+ import win32more.Microsoft.UI
5
+ import win32more.Microsoft.UI.Dispatching
6
+ import win32more.Windows.Foundation
7
+ import win32more.Windows.Storage.Streams
8
+ class DisplayAdvancedColorInfo(ComPtr):
9
+ extends: IInspectable
10
+ default_interface: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo
11
+ _classid_ = 'Microsoft.Graphics.Display.DisplayAdvancedColorInfo'
12
+ @winrt_mixinmethod
13
+ def get_CurrentAdvancedColorKind(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo) -> win32more.Microsoft.Graphics.Display.DisplayAdvancedColorKind: ...
14
+ @winrt_mixinmethod
15
+ def get_RedPrimary(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo) -> win32more.Windows.Foundation.Point: ...
16
+ @winrt_mixinmethod
17
+ def get_GreenPrimary(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo) -> win32more.Windows.Foundation.Point: ...
18
+ @winrt_mixinmethod
19
+ def get_BluePrimary(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo) -> win32more.Windows.Foundation.Point: ...
20
+ @winrt_mixinmethod
21
+ def get_WhitePoint(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo) -> win32more.Windows.Foundation.Point: ...
22
+ @winrt_mixinmethod
23
+ def get_MaxLuminanceInNits(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo) -> Double: ...
24
+ @winrt_mixinmethod
25
+ def get_MinLuminanceInNits(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo) -> Double: ...
26
+ @winrt_mixinmethod
27
+ def get_MaxAverageFullFrameLuminanceInNits(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo) -> Double: ...
28
+ @winrt_mixinmethod
29
+ def get_SdrWhiteLevelInNits(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo) -> Double: ...
30
+ @winrt_mixinmethod
31
+ def IsHdrMetadataFormatCurrentlySupported(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo, format: win32more.Microsoft.Graphics.Display.DisplayHdrMetadataFormat) -> Boolean: ...
32
+ @winrt_mixinmethod
33
+ def IsAdvancedColorKindAvailable(self: win32more.Microsoft.Graphics.Display.IDisplayAdvancedColorInfo, kind: win32more.Microsoft.Graphics.Display.DisplayAdvancedColorKind) -> Boolean: ...
34
+ BluePrimary = property(get_BluePrimary, None)
35
+ CurrentAdvancedColorKind = property(get_CurrentAdvancedColorKind, None)
36
+ GreenPrimary = property(get_GreenPrimary, None)
37
+ MaxAverageFullFrameLuminanceInNits = property(get_MaxAverageFullFrameLuminanceInNits, None)
38
+ MaxLuminanceInNits = property(get_MaxLuminanceInNits, None)
39
+ MinLuminanceInNits = property(get_MinLuminanceInNits, None)
40
+ RedPrimary = property(get_RedPrimary, None)
41
+ SdrWhiteLevelInNits = property(get_SdrWhiteLevelInNits, None)
42
+ WhitePoint = property(get_WhitePoint, None)
43
+ class DisplayAdvancedColorKind(Enum, Int32):
44
+ StandardDynamicRange = 0
45
+ WideColorGamut = 1
46
+ HighDynamicRange = 2
47
+ class DisplayHdrMetadataFormat(Enum, Int32):
48
+ Hdr10 = 0
49
+ Hdr10Plus = 1
50
+ class DisplayInformation(ComPtr):
51
+ extends: IInspectable
52
+ implements: Tuple[ContextManagerProtocol]
53
+ default_interface: win32more.Microsoft.Graphics.Display.IDisplayInformation
54
+ _classid_ = 'Microsoft.Graphics.Display.DisplayInformation'
55
+ @winrt_mixinmethod
56
+ def get_IsStereoEnabled(self: win32more.Microsoft.Graphics.Display.IDisplayInformation) -> Boolean: ...
57
+ @winrt_mixinmethod
58
+ def GetColorProfileAsync(self: win32more.Microsoft.Graphics.Display.IDisplayInformation) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Storage.Streams.IRandomAccessStream]: ...
59
+ @winrt_mixinmethod
60
+ def add_IsStereoEnabledChanged(self: win32more.Microsoft.Graphics.Display.IDisplayInformation, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Graphics.Display.DisplayInformation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
61
+ @winrt_mixinmethod
62
+ def remove_IsStereoEnabledChanged(self: win32more.Microsoft.Graphics.Display.IDisplayInformation, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
63
+ @winrt_mixinmethod
64
+ def get_DispatcherQueue(self: win32more.Microsoft.Graphics.Display.IDisplayInformation) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
65
+ @winrt_mixinmethod
66
+ def GetColorProfile(self: win32more.Microsoft.Graphics.Display.IDisplayInformation) -> win32more.Windows.Storage.Streams.IRandomAccessStream: ...
67
+ @winrt_mixinmethod
68
+ def add_ColorProfileChanged(self: win32more.Microsoft.Graphics.Display.IDisplayInformation, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Graphics.Display.DisplayInformation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
69
+ @winrt_mixinmethod
70
+ def remove_ColorProfileChanged(self: win32more.Microsoft.Graphics.Display.IDisplayInformation, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
71
+ @winrt_mixinmethod
72
+ def GetAdvancedColorInfo(self: win32more.Microsoft.Graphics.Display.IDisplayInformation) -> win32more.Microsoft.Graphics.Display.DisplayAdvancedColorInfo: ...
73
+ @winrt_mixinmethod
74
+ def add_AdvancedColorInfoChanged(self: win32more.Microsoft.Graphics.Display.IDisplayInformation, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Graphics.Display.DisplayInformation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
75
+ @winrt_mixinmethod
76
+ def remove_AdvancedColorInfoChanged(self: win32more.Microsoft.Graphics.Display.IDisplayInformation, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
77
+ @winrt_mixinmethod
78
+ def add_Destroyed(self: win32more.Microsoft.Graphics.Display.IDisplayInformation, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Graphics.Display.DisplayInformation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
79
+ @winrt_mixinmethod
80
+ def remove_Destroyed(self: win32more.Microsoft.Graphics.Display.IDisplayInformation, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
81
+ @winrt_mixinmethod
82
+ def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
83
+ @winrt_classmethod
84
+ def CreateForWindowId(cls: win32more.Microsoft.Graphics.Display.IDisplayInformationStatics, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Graphics.Display.DisplayInformation: ...
85
+ @winrt_classmethod
86
+ def CreateForDisplayId(cls: win32more.Microsoft.Graphics.Display.IDisplayInformationStatics, displayId: win32more.Microsoft.UI.DisplayId) -> win32more.Microsoft.Graphics.Display.DisplayInformation: ...
87
+ DispatcherQueue = property(get_DispatcherQueue, None)
88
+ IsStereoEnabled = property(get_IsStereoEnabled, None)
89
+ IsStereoEnabledChanged = event()
90
+ ColorProfileChanged = event()
91
+ AdvancedColorInfoChanged = event()
92
+ Destroyed = event()
93
+ class IDisplayAdvancedColorInfo(ComPtr):
94
+ extends: IInspectable
95
+ _classid_ = 'Microsoft.Graphics.Display.IDisplayAdvancedColorInfo'
96
+ _iid_ = Guid('{b44f0f47-7065-5175-ba3e-714489c85a3e}')
97
+ @winrt_commethod(6)
98
+ def get_CurrentAdvancedColorKind(self) -> win32more.Microsoft.Graphics.Display.DisplayAdvancedColorKind: ...
99
+ @winrt_commethod(7)
100
+ def get_RedPrimary(self) -> win32more.Windows.Foundation.Point: ...
101
+ @winrt_commethod(8)
102
+ def get_GreenPrimary(self) -> win32more.Windows.Foundation.Point: ...
103
+ @winrt_commethod(9)
104
+ def get_BluePrimary(self) -> win32more.Windows.Foundation.Point: ...
105
+ @winrt_commethod(10)
106
+ def get_WhitePoint(self) -> win32more.Windows.Foundation.Point: ...
107
+ @winrt_commethod(11)
108
+ def get_MaxLuminanceInNits(self) -> Double: ...
109
+ @winrt_commethod(12)
110
+ def get_MinLuminanceInNits(self) -> Double: ...
111
+ @winrt_commethod(13)
112
+ def get_MaxAverageFullFrameLuminanceInNits(self) -> Double: ...
113
+ @winrt_commethod(14)
114
+ def get_SdrWhiteLevelInNits(self) -> Double: ...
115
+ @winrt_commethod(15)
116
+ def IsHdrMetadataFormatCurrentlySupported(self, format: win32more.Microsoft.Graphics.Display.DisplayHdrMetadataFormat) -> Boolean: ...
117
+ @winrt_commethod(16)
118
+ def IsAdvancedColorKindAvailable(self, kind: win32more.Microsoft.Graphics.Display.DisplayAdvancedColorKind) -> Boolean: ...
119
+ BluePrimary = property(get_BluePrimary, None)
120
+ CurrentAdvancedColorKind = property(get_CurrentAdvancedColorKind, None)
121
+ GreenPrimary = property(get_GreenPrimary, None)
122
+ MaxAverageFullFrameLuminanceInNits = property(get_MaxAverageFullFrameLuminanceInNits, None)
123
+ MaxLuminanceInNits = property(get_MaxLuminanceInNits, None)
124
+ MinLuminanceInNits = property(get_MinLuminanceInNits, None)
125
+ RedPrimary = property(get_RedPrimary, None)
126
+ SdrWhiteLevelInNits = property(get_SdrWhiteLevelInNits, None)
127
+ WhitePoint = property(get_WhitePoint, None)
128
+ class IDisplayInformation(ComPtr):
129
+ extends: IInspectable
130
+ _classid_ = 'Microsoft.Graphics.Display.IDisplayInformation'
131
+ _iid_ = Guid('{f0d58d4f-84ce-5b27-b222-4f8f7dc0aaeb}')
132
+ @winrt_commethod(6)
133
+ def get_DispatcherQueue(self) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
134
+ @winrt_commethod(7)
135
+ def get_IsStereoEnabled(self) -> Boolean: ...
136
+ @winrt_commethod(8)
137
+ def add_IsStereoEnabledChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Graphics.Display.DisplayInformation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
138
+ @winrt_commethod(9)
139
+ def remove_IsStereoEnabledChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
140
+ @winrt_commethod(10)
141
+ def GetColorProfileAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Storage.Streams.IRandomAccessStream]: ...
142
+ @winrt_commethod(11)
143
+ def GetColorProfile(self) -> win32more.Windows.Storage.Streams.IRandomAccessStream: ...
144
+ @winrt_commethod(12)
145
+ def add_ColorProfileChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Graphics.Display.DisplayInformation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
146
+ @winrt_commethod(13)
147
+ def remove_ColorProfileChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
148
+ @winrt_commethod(14)
149
+ def GetAdvancedColorInfo(self) -> win32more.Microsoft.Graphics.Display.DisplayAdvancedColorInfo: ...
150
+ @winrt_commethod(15)
151
+ def add_AdvancedColorInfoChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Graphics.Display.DisplayInformation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
152
+ @winrt_commethod(16)
153
+ def remove_AdvancedColorInfoChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
154
+ @winrt_commethod(17)
155
+ def add_Destroyed(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Graphics.Display.DisplayInformation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
156
+ @winrt_commethod(18)
157
+ def remove_Destroyed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
158
+ DispatcherQueue = property(get_DispatcherQueue, None)
159
+ IsStereoEnabled = property(get_IsStereoEnabled, None)
160
+ IsStereoEnabledChanged = event()
161
+ ColorProfileChanged = event()
162
+ AdvancedColorInfoChanged = event()
163
+ Destroyed = event()
164
+ class IDisplayInformationStatics(ComPtr):
165
+ extends: IInspectable
166
+ _classid_ = 'Microsoft.Graphics.Display.IDisplayInformationStatics'
167
+ _iid_ = Guid('{2de85048-37fa-56c0-ac30-47e2044d7ea8}')
168
+ @winrt_commethod(6)
169
+ def CreateForWindowId(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Graphics.Display.DisplayInformation: ...
170
+ @winrt_commethod(7)
171
+ def CreateForDisplayId(self, displayId: win32more.Microsoft.UI.DisplayId) -> win32more.Microsoft.Graphics.Display.DisplayInformation: ...
172
+
173
+
174
+ make_ready(__name__)