Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/melloware/jintellitype
JIntellitype is a Java API for interacting with Microsoft Intellitype commands as well as registering for Global Hotkeys in your Java application.
https://github.com/melloware/jintellitype
cpp global-hotkeys java jni-wrapper
Last synced: about 10 hours ago
JSON representation
JIntellitype is a Java API for interacting with Microsoft Intellitype commands as well as registering for Global Hotkeys in your Java application.
- Host: GitHub
- URL: https://github.com/melloware/jintellitype
- Owner: melloware
- License: apache-2.0
- Created: 2015-04-21T18:32:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T19:31:20.000Z (3 months ago)
- Last Synced: 2024-08-01T21:57:40.774Z (3 months ago)
- Topics: cpp, global-hotkeys, java, jni-wrapper
- Language: Java
- Homepage:
- Size: 558 KB
- Stars: 164
- Watchers: 7
- Forks: 41
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- Funding: .github/FUNDING.yml
- License: license.txt
Awesome Lists containing this project
README
[![Maven](https://img.shields.io/maven-central/v/com.melloware/jintellitype.svg)](https://repo1.maven.org/maven2/com/melloware/jintellitype/)
[![Javadocs](http://javadoc.io/badge/com.melloware/jintellitype.svg)](https://javadoc.io/doc/com.melloware/jintellitype)
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)# JIntellitype
[![JIntellitype Logo](https://github.com/melloware/jintellitype/blob/master/src/test/resources/jintellitype.png?raw=true)](https://melloware.com)
**If you like this project, please consider supporting me ❤️**
[![GitHub Sponsor](https://img.shields.io/badge/GitHub-FFDD00?style=for-the-badge&logo=github&logoColor=black)](https://github.com/sponsors/melloware)
[![PayPal](https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white)](https://www.paypal.me/mellowareinc)## Contents
1. Overview
2. Features
3. Installation
4. Quick Usage
5. Acknowledgements
6. Feedback---
## 1.Overview
JIntellitype is an API for interacting with Microsoft Intellitype keyboard commands as well as registering for Global Hotkeys in your application.
The API is a Java JNI library that uses a DLL to do all the communication with Windows.
This library ONLY works on Windows.Have you ever wanted to have CTRL+SHIFT+G maximize your Swing application on the desktop even if that application did not have focus?
Now you can by registering a Windows Hotkey combination your application will be alerted when the combination you select is pressed anywhere in Windows.Have you ever wanted to react to those special Play, Pause, Stop keys on some Microsoft and Logitech keyboards?
Even some laptops now have those special keys built in and if you want your application to "listen" for them, now you
can!## 2.Features
* Can register global hotkey combinations in Windows.* Application is notified even if it does not have focus.
* Can react to those Play, Pause, Stop, Next, Forward Media keys like Winamp.
* Very little code, easy to use API.
* Examples included in JIntellitypeTester.java.
## 3.Installation
FOR USERS:
The 32/64 bit dlls get extracted automatically.
FOR DEVELOPERS:
* To build you need [Apache Maven](https://maven.apache.org/) or higher installed from Apache.
Just run "mvn package" from the directory where the pom.xml is located to build the project.* To build the C++ code you need Visual Studio C++.
## 4.Quick Usage
```java
// Create JIntellitype
...
JIntellitype.getInstance().addHotKeyListener(new HotKeyListener() {...);
JIntellitype.getInstance().addIntellitypeListener(new IntellitypeListener() {...);
...// Assign global hotkeys to Windows+A and ALT+SHIFT+B
JIntellitype.getInstance().registerHotKey(1, JIntellitype.MOD_WIN, (int)'A');
JIntellitype.getInstance().registerHotKey(2, JIntellitype.MOD_ALT + JIntellitype.MOD_SHIFT, (int)'B');// listen for hotkey
public void onHotKey(int aIdentifier) {
if (aIdentifier == 1)
System.out.println("WINDOWS+A hotkey pressed");
}
}// listen for intellitype play/pause command
public void onIntellitype(int aCommand) {
switch (aCommand) {
case JIntellitype.APPCOMMAND_MEDIA_PLAY_PAUSE:
System.out.println("Play/Pause message received " + Integer.toString(aCommand));
break;
default:
System.out.println("Undefined INTELLITYPE message caught " + Integer.toString(aCommand));
break;
}
}// Termination
...
JIntellitype.getInstance().cleanUp();
System.exit(0);
```See demo at [JIntellitype Demo Application](https://github.com/melloware/jintellitype/blob/master/src/main/java/com/melloware/jintellitype/JIntellitypeDemo.java) for more info..
## 5.Acknowledgements
JIntellitype is distributed with a small number of libraries on which it depends.
Those libraries are:
* None currently
## 6.Feedback
Your feedback on JIntellitype (hopefully constructive) is always welcome.Please visit http://www.melloware.com/ for links to browse and join mailing lists, file bugs and submit feature requests.