Metadata-Version: 2.4
Name: uui-cuil
Version: 0.1.0
Summary: A lightweight frameless UI framework for Python via ctypes and Win32 API
Author-email: timixess <timofejosa@gmail.com>
Project-URL: Homepage, https://github.com/zcveo5/uui-cuil
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.8
Description-Content-Type: text/markdown

uui/cuil is a custom lightweight UI library written in Python using only ctypes. It provides direct interaction with the Windows API without heavy dependencies.

# features:
- _almost_ thread safe (u can create and edit elements from other threads)
- built in _per-pixel_ scroll
- *customizable* render system (by default gdi32 built-in used, u can write your own)
- direct acsess to _WND_PROC_
- direct acsess to messages like WM_MOUSEWHEEL, WM_LBUTTONDOWN
- **bind system** to WND_PROC msgs (Event class with parsed wParam/lParam or direct wParam/lParam) 

# limitations:
- only windows support
- no hover events
- no text input widget (direct keyboard event forwarding)
