JWM is a cross-platform Java window management and OS integration library.
JWM aims to expose an interface that abstracts over window creation, input handling and OS integration. It’s planned to support all the primary desktop platforms:
Primary goals:
Motto: “Electron for JVM, without Chrome and JS”
Traditionally, Java UIs struggled with high-quality OS integration. JWM plans to bring it to modern standards by implementing those integrations from scratch in modern low-level OS-native APIs. Prior art:
AWT:
JavaFX:
GLFW via LWJGL, SDL2:
Electron:
Key | Value |
---|---|
groupId | io.github.humbleui |
artifactId | jwm |
version |
Alpha. Expect API breakages.
Windows | macOS | X11 | |
---|---|---|---|
start | ✅ | ✅ | ✅ |
makeWindow | ✅ | #121 | ✅ |
getScreens | ✅ | ✅ | ✅ |
getPrimaryScreen | ✅ | ✅ | ✅ |
runOnUIThread | ✅ | ✅ | ✅ |
terminate | ✅ | ✅ | ✅ |
Show notification | ❌ | ❌ | ❌ |
Windows | macOS | X11 | |
---|---|---|---|
isHighContrast | ✅ | ✅ | ➖ |
isDark | ✅ | ✅ | ➖ |
isInverted | #161 | ✅ | ➖ |
Windows | macOS | X11 | |
---|---|---|---|
setEventListener | ✅ | ✅ | ✅ |
setTextInputClient | ✅ | ✅ | ✅ |
setTextInputEnabled | ✅ | ❌ | ❌ |
unmarkText | ✅ | ❌ | ❌ |
show | ✅ | ✅ | ✅ |
getWindowRect | ✅ | ✅ | ✅ |
getContentRect | ✅ | ✅ | ✅ |
setWindowPosition | ✅ | ✅ | ✅ |
setWindowSize | ✅ | ✅ | ✅ |
setContentSize | ✅ | ✅ | ✅ |
getScreen | ✅ | ✅ | ✅ |
requestFrame | ✅ | ✅ | ✅ |
close | ✅ | #107 | ✅ |
minimize | ✅ | ✅ | ✅ |
maximize | ✅ | ✅ | ✅ |
restore | ✅ | ✅ | ✅ |
setTitle | ✅ | ✅ | ✅ |
setIcon | ✅ | ✅ | #95 |
Set system cursor | ✅ | ✅ | ✅ |
Customize titlebar | #75 | #75 | #75 |
focus | ✅ | ✅ | ❌ |
Get ZOrder | ❌ | ✅ | ❌ |
Progress Bar | ❌ | ✅ | ❌ |
Set custom cursor | ❌ | ❌ | ❌ |
openFile | ❌ | ❌ | ❌ |
openFolder | ❌ | ❌ | ❌ |
Transparency | ✅ | ❌ | ❌ |
Toggle Fullscreen | ❌ | ✅ | ✅ |
setMinimumSize | ❌ | ❌ | ❌ |
setMaximumSize | ❌ | ❌ | ❌ |
setResizable | ❌ | ❌ | ❌ |
Windows | macOS | X11 | |
---|---|---|---|
EventFrame | ✅ | ✅ | ✅ |
EventKey | ✅ | ✅ | ✅ |
EventMouseButton | ✅ | ✅ | ✅ |
EventMouseMove | ✅ | ✅ | ✅ |
EventMouseScroll | #115 | ✅ | ✅ |
EventTextInput | ✅ | #105 | ✅ |
EventTextInputMarked | ✅ | ✅ | ✅ |
EventWindowCloseRequest | ✅ | ✅ | ✅ |
EventWindowMove | ✅ | #116 | ✅ |
EventWindowResize | ✅ | ✅ | ✅ |
EventWindowMinimize | ✅ | ✅ | #96 |
EventWindowMaximize | ✅ | ✅ | #96 |
EventWindowRestore | ✅ | ✅ | #96 |
EventWindowVisible | #140 | #140 | #140 |
EventWindowScreenChange | #117 | #117 | #117 |
EventWindowFocusIn | ✅ | ✅ | ✅ |
EventWindowFocusOut | ✅ | ✅ | ✅ |
EventWindowFullScreenEnter | ❌ | ✅ | ❌ |
EventWindowFullScreenExit | ❌ | ✅ | ❌ |
Drag & Drop | ❌ | ❌ | ❌ |
Touch events | ❌ | #249 | ❌ |
Theme Changed | ❌ | ❌ | ❌ |
Windows | macOS | X11 | |
---|---|---|---|
id | ✅ | ✅ | ✅ |
isPrimary | ✅ | ✅ | ✅ |
bounds | ✅ | ✅ | ✅ |
scale | ✅ | ✅ | ✅ |
workArea | ✅ | ✅ | #119 |
colorSpace | #122 | #122 | #122 |
Windows | macOS | X11 | |
---|---|---|---|
set | ✅ | #51 | ✅ |
get | ✅ | #51 | ✅ |
getFormats | ✅ | #51 | ✅ |
clear | ✅ | #51 | ✅ |
registerFormat | ✅ | #51 | ✅ |
Windows | macOS | X11 | |
---|---|---|---|
Raster | ✅ | #81 | ✅ |
OpenGL | ✅ | ✅ | ✅ |
DirectX 11 | ❌ | ➖ | ➖ |
DirectX 12 | ✅ | ➖ | ➖ |
Metal | ➖ | ✅ | ➖ |
Vulkan | ❌ | ➖ | ❌ |
Windows | macOS | X11 | |
---|---|---|---|
Run on GraalVM | ❌ | ❌ | ❌ |
App package | ❌ | ❌ | ❌ |
Prerequisites:
libxcomposite-dev libxrandr-dev libgl1-mesa-dev libxi-dev libxcursor-dev
Run:
./script/build.py
Run examples:
./script/run.py
Run examples without building (use version from the table above):
./script/run.py --jwm-version <version>
PRs & issue reports are welcome!
Please read Conventions first.
If you are looking where to start, there’s a label: Good first issue.
Issues labeled “Design” and “Not sure” require prior discussion—leave a comment with your ideas!
Development sponsored by: