Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miyako/4d-plugin-kiosk-v2
https://github.com/miyako/4d-plugin-kiosk-v2
4d-plugin
Last synced: about 7 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/miyako/4d-plugin-kiosk-v2
- Owner: miyako
- License: mit
- Created: 2022-07-06T04:13:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-06T10:09:13.000Z (over 2 years ago)
- Last Synced: 2024-11-11T02:20:44.353Z (about 2 months ago)
- Topics: 4d-plugin
- Language: C
- Homepage:
- Size: 2.38 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![version](https://img.shields.io/badge/version-18%2B-EB8E5F)
![platform](https://img.shields.io/static/v1?label=platform&message=mac-intel%20|%20mac-arm%20|%20win-64&color=blue)
[![license](https://img.shields.io/github/license/miyako/4d-plugin-kiosk-v2)](LICENSE)
![downloads](https://img.shields.io/github/downloads/miyako/4d-plugin-kiosk-v2/total)# 4d-plugin-kiosk-v2
#### Features
#### macOS
change `NSApplicationPresentationOptions`
* NSApplicationPresentationHideMenuBar
* NSApplicationPresentationHideDock
* NSApplicationPresentationDisableAppleMenu
* NSApplicationPresentationDisableProcessSwitching
* NSApplicationPresentationDisableForceQuit
* NSApplicationPresentationDisableSessionTermination
* NSApplicationPresentationDisableHideApplicationno window is set to full screen; do it manually.
#### Windows
filter certain key combinations
* Ctrl+Esc
* Alt+Tab, Alt+Shift+Tab
* Alt+Esc, Alt+Shift+Esc
* Ctrl+Shift+Esc
* Alt+F4
* Windows (left and right)Ctrl+Alt+Delete is not filtered
set MDI window parameters
* WS_POPUP
remove MDI window parameters
* WS_CAPTION
* WS_SYSMENUhide task tray
maximise MDI
### syntax
```4d
If (0=KIOSK Get mode)
KIOSK SET MODE(1)
Else
KIOSK SET MODE(0)
End if
```