~ubuntu-branches/ubuntu/utopic/sikuli/utopic

« back to all changes in this revision

Viewing changes to .pc/native.patch/sikuli-ide/src/main/java/org/sikuli/ide/NativeLayerForLinux.java

  • Committer: Bazaar Package Importer
  • Author(s): Gilles Filippini
  • Date: 2011-04-16 00:23:53 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110416002353-cn79cto3c03z5jx1
Tags: 1.0~x~rc2-dfsg1-1
* New upstream release:
  + Redesigned user interface for Sikuli-IDE
  + Support for extensions for Sikuli Script

* debian/control, debian/copyright:
  The package is now maintained by the Debian Java maintainers Team

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
      txtMod = txtMod.replace("META","WIN");
38
38
      txtMod = txtMod.replace("WINDOWS","WIN");
39
39
      String txtCode = KeyEvent.getKeyText(key).toUpperCase();
40
 
      Debug.log(1, "[Linux] install hotkey: " + txtMod + "+" + txtCode + 
 
40
      Debug.info("install hotkey: " + txtMod + "+" + txtCode + 
41
41
                   " for " + callbackMethod);
42
42
 
43
43
      JXGrabKey grabKey = JXGrabKey.getInstance();
65
65
      if(_callbackIdMap.size()==1){
66
66
         HotkeyListener hotkeyListener = new jxgrabkey.HotkeyListener(){
67
67
            public void onHotkey(int id) {
68
 
               Debug.log(1, "onHotkey: " + id);
 
68
               Debug.log(2, "onHotkey: " + id);
69
69
               String callbackFunc = _idCallbackMap.get(id);
70
70
               Class params[] = {};
71
71
               Object paramsObj[] = {};