mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-21 10:12:04 -08:00
87 lines
3.4 KiB
C#
87 lines
3.4 KiB
C#
|
/*
|
|||
|
* swing.cs
|
|||
|
* Copyright (c) 2009 kbinani
|
|||
|
*
|
|||
|
* This file is part of bocoree.
|
|||
|
*
|
|||
|
* bocoree is free software; you can redistribute it and/or
|
|||
|
* modify it under the terms of the BSD License.
|
|||
|
*
|
|||
|
* bocoree is distributed in the hope that it will be useful,
|
|||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|||
|
*/
|
|||
|
#if !JAVA
|
|||
|
using System;
|
|||
|
using bocoree.java.awt.event_;
|
|||
|
namespace bocoree.javax.swing {
|
|||
|
|
|||
|
public class KeyStroke {
|
|||
|
public System.Windows.Forms.Keys keys = System.Windows.Forms.Keys.None;
|
|||
|
private static bocoree.java.util.TreeMap<string, int> keyCodes = null;
|
|||
|
|
|||
|
private KeyStroke(){
|
|||
|
}
|
|||
|
|
|||
|
public int getKeyCode() {
|
|||
|
System.Windows.Forms.Keys k = keys;
|
|||
|
if ( (keys & System.Windows.Forms.Keys.Alt) == System.Windows.Forms.Keys.Alt ) {
|
|||
|
k -= System.Windows.Forms.Keys.Alt;
|
|||
|
}
|
|||
|
if ( (keys & System.Windows.Forms.Keys.Control) == System.Windows.Forms.Keys.Control ) {
|
|||
|
k -= System.Windows.Forms.Keys.Control;
|
|||
|
}
|
|||
|
if ( (keys & System.Windows.Forms.Keys.Shift) == System.Windows.Forms.Keys.Shift ) {
|
|||
|
k -= System.Windows.Forms.Keys.Shift;
|
|||
|
}
|
|||
|
return (int)k;
|
|||
|
}
|
|||
|
|
|||
|
public int getModifiers() {
|
|||
|
int modifier = 0;
|
|||
|
if ( (keys & System.Windows.Forms.Keys.Alt) == System.Windows.Forms.Keys.Alt ) {
|
|||
|
modifier += InputEvent.ALT_MASK;
|
|||
|
}
|
|||
|
if ( (keys & System.Windows.Forms.Keys.Control) == System.Windows.Forms.Keys.Control ) {
|
|||
|
modifier += InputEvent.CTRL_MASK;
|
|||
|
}
|
|||
|
if ( (keys & System.Windows.Forms.Keys.Shift) == System.Windows.Forms.Keys.Shift ) {
|
|||
|
modifier += InputEvent.SHIFT_MASK;
|
|||
|
}
|
|||
|
return modifier;
|
|||
|
}
|
|||
|
|
|||
|
public static KeyStroke getKeyStroke( int keyCode, int modifiers ) {
|
|||
|
KeyStroke ret = new KeyStroke();
|
|||
|
if( (InputEvent.ALT_MASK & modifiers) == InputEvent.ALT_MASK ){
|
|||
|
ret.keys = ret.keys | System.Windows.Forms.Keys.Alt;
|
|||
|
}
|
|||
|
if ( (InputEvent.CTRL_MASK & modifiers) == InputEvent.CTRL_MASK ){
|
|||
|
ret.keys = ret.keys | System.Windows.Forms.Keys.Control;
|
|||
|
}
|
|||
|
if ( (InputEvent.SHIFT_MASK & modifiers) == InputEvent.SHIFT_MASK ){
|
|||
|
ret.keys = ret.keys | System.Windows.Forms.Keys.Shift;
|
|||
|
}
|
|||
|
System.Windows.Forms.Keys key = (System.Windows.Forms.Keys)keyCode;
|
|||
|
ret.keys = ret.keys | key;
|
|||
|
return ret;
|
|||
|
}
|
|||
|
|
|||
|
/* private static bocoree.util.TreeMap<string, int> getKeyCodes() {
|
|||
|
if ( keyCodes == null ) {
|
|||
|
keyCodes = new bocoree.util.TreeMap<string, int>();
|
|||
|
foreach ( System.Reflection.FieldInfo fi in typeof( bocoree.awt.event_.KeyEvent ).GetFields() ) {
|
|||
|
if ( fi.IsStatic && fi.IsPublic && fi.FieldType == typeof( int ) ) {
|
|||
|
string name = fi.Name;
|
|||
|
int value = fi.GetValue( typeof( bocoree.awt.event_.KeyEvent ) );
|
|||
|
keyCodes.put( name, value );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return keyCodes;
|
|||
|
}*/
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
#endif
|