示例#1
0
文件: QTest.cs 项目: micro-chen/qyoto
 public static void KeyClick(QWidget widget, Qt.Key key, uint modifier)
 {
     staticInterceptor.Invoke("keyClick#$$", "keyClick(QWidget*, Qt::Key, Qt::KeyboardModifiers)", typeof(void), typeof(QWidget), widget, typeof(Qt.Key), key, typeof(uint), modifier);
 }
示例#2
0
文件: QTest.cs 项目: micro-chen/qyoto
 public static void KeyClick(QWidget widget, Qt.Key key)
 {
     staticInterceptor.Invoke("keyClick#$", "keyClick(QWidget*, Qt::Key)", typeof(void), typeof(QWidget), widget, typeof(Qt.Key), key);
 }
示例#3
0
文件: QTest.cs 项目: micro-chen/qyoto
 public static void KeyEvent(QTest.KeyAction action, QWidget widget, Qt.Key key)
 {
     staticInterceptor.Invoke("keyEvent$#$", "keyEvent(QTest::KeyAction, QWidget*, Qt::Key)", typeof(void), typeof(QTest.KeyAction), action, typeof(QWidget), widget, typeof(Qt.Key), key);
 }
示例#4
0
文件: QTest.cs 项目: micro-chen/qyoto
 public static void KeyRelease(QWidget widget, Qt.Key key, uint modifier, int delay)
 {
     staticInterceptor.Invoke("keyRelease#$$$", "keyRelease(QWidget*, Qt::Key, Qt::KeyboardModifiers, int)", typeof(void), typeof(QWidget), widget, typeof(Qt.Key), key, typeof(uint), modifier, typeof(int), delay);
 }
示例#5
0
文件: QTest.cs 项目: micro-chen/qyoto
 public static void SendKeyEvent(QTest.KeyAction action, QWidget widget, Qt.Key code, char ascii, uint modifier)
 {
     staticInterceptor.Invoke("sendKeyEvent$#$$$", "sendKeyEvent(QTest::KeyAction, QWidget*, Qt::Key, char, Qt::KeyboardModifiers)", typeof(void), typeof(QTest.KeyAction), action, typeof(QWidget), widget, typeof(Qt.Key), code, typeof(char), ascii, typeof(uint), modifier);
 }
示例#6
0
文件: QTest.cs 项目: micro-chen/qyoto
 public static void KeyEvent(QTest.KeyAction action, QWidget widget, Qt.Key key, uint modifier)
 {
     staticInterceptor.Invoke("keyEvent$#$$", "keyEvent(QTest::KeyAction, QWidget*, Qt::Key, Qt::KeyboardModifiers)", typeof(void), typeof(QTest.KeyAction), action, typeof(QWidget), widget, typeof(Qt.Key), key, typeof(uint), modifier);
 }
示例#7
0
文件: QTest.cs 项目: micro-chen/qyoto
 public static char KeyToAscii(Qt.Key key)
 {
     return((char)staticInterceptor.Invoke("keyToAscii$", "keyToAscii(Qt::Key)", typeof(char), typeof(Qt.Key), key));
 }
示例#8
0
文件: QTest.cs 项目: micro-chen/qyoto
 public static void SendKeyEvent(QTest.KeyAction action, QWidget widget, Qt.Key code, string text, uint modifier)
 {
     staticInterceptor.Invoke("sendKeyEvent$#$$$", "sendKeyEvent(QTest::KeyAction, QWidget*, Qt::Key, QString, Qt::KeyboardModifiers)", typeof(void), typeof(QTest.KeyAction), action, typeof(QWidget), widget, typeof(Qt.Key), code, typeof(string), text, typeof(uint), modifier);
 }
示例#9
0
 public void AddKeyEvent(QTest.KeyAction action, Qt.Key qtKey, uint modifiers)
 {
     interceptor.Invoke("addKeyEvent$$$", "addKeyEvent(QTest::KeyAction, Qt::Key, Qt::KeyboardModifiers)", typeof(void), typeof(QTest.KeyAction), action, typeof(Qt.Key), qtKey, typeof(uint), modifiers);
 }
示例#10
0
 public void AddKeyEvent(QTest.KeyAction action, Qt.Key qtKey)
 {
     interceptor.Invoke("addKeyEvent$$", "addKeyEvent(QTest::KeyAction, Qt::Key)", typeof(void), typeof(QTest.KeyAction), action, typeof(Qt.Key), qtKey);
 }
示例#11
0
 public void AddKeyRelease(Qt.Key qtKey)
 {
     interceptor.Invoke("addKeyRelease$", "addKeyRelease(Qt::Key)", typeof(void), typeof(Qt.Key), qtKey);
 }
示例#12
0
 public void AddKeyRelease(Qt.Key qtKey, uint modifiers)
 {
     interceptor.Invoke("addKeyRelease$$", "addKeyRelease(Qt::Key, Qt::KeyboardModifiers)", typeof(void), typeof(Qt.Key), qtKey, typeof(uint), modifiers);
 }
示例#13
0
 public void AddKeyPress(Qt.Key qtKey)
 {
     interceptor.Invoke("addKeyPress$", "addKeyPress(Qt::Key)", typeof(void), typeof(Qt.Key), qtKey);
 }
示例#14
0
 public void AddKeyPress(Qt.Key qtKey, uint modifiers, int msecs)
 {
     interceptor.Invoke("addKeyPress$$$", "addKeyPress(Qt::Key, Qt::KeyboardModifiers, int)", typeof(void), typeof(Qt.Key), qtKey, typeof(uint), modifiers, typeof(int), msecs);
 }
示例#15
0
 public QTestKeyEvent(QTest.KeyAction action, Qt.Key key, uint modifiers, int delay) : this((Type)null)
 {
     CreateProxy();
     interceptor.Invoke("QTestKeyEvent$$$$", "QTestKeyEvent(QTest::KeyAction, Qt::Key, Qt::KeyboardModifiers, int)", typeof(void), typeof(QTest.KeyAction), action, typeof(Qt.Key), key, typeof(uint), modifiers, typeof(int), delay);
 }