Coder Social home page Coder Social logo

abcijkxyz / jintellitype Goto Github PK

View Code? Open in Web Editor NEW

This project forked from melloware/jintellitype

0.0 2.0 0.0 552 KB

JIntellitype is a Java API for interacting with Microsoft Intellitype commands as well as registering for Global Hotkeys in your Java application.

License: Apache License 2.0

C++ 27.82% C 1.97% Java 70.10% ASP 0.11%

jintellitype's Introduction

JIntellitype Read Me
http://www.melloware.com/

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

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:
   -> Copy the following files into your classpath 
        -> jintellitype.jar
        -> JIntellitype.dll (or put in Windows/System32)
		-> JIntellitype64.dll (rename to JIntellitype.dll and put in path)
        
   FOR DEVELOPERS:
   -> To build you need Maven 2.0.7 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 Bloodshed C++ IDE.  When you load the .dev project included do not
      forget to edit Project->Options and under Directories Tab change the Includes directory to contain 
	  both:
	      /java5/include
		  /java5/include/win32
		  
      Where "java5" is the location of your Java JDK.
	  

4. Quick Usage
   ------------

// 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 test/com/melloware/jintellitype/JIntellitypeTester.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.  
   
   Also a forum is set up at http://forum.melloware.com/index.php for discussion.

jintellitype's People

Contributors

melloware avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.