1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cc(): fix -x objective-c; ui.focus_app()

This commit is contained in:
Alexander Medvednikov
2019-08-18 16:58:58 +03:00
parent f9fb6f0be4
commit 56fbafe03a
3 changed files with 39 additions and 6 deletions

32
vlib/ui/ui_mac.v Normal file
View File

@@ -0,0 +1,32 @@
module ui
#flag -framework Carbon
#flag -framework Cocoa
#include <Cocoa/Cocoa.h>
#include <Carbon/Carbon.h>
fn focus_app(next, event, data voidptr) {
#NSLog(@"2The hot key was pressed.");
#NSApplication *myApp = [NSApplication sharedApplication];
#[myApp activateIgnoringOtherApps:YES];
//return noErr;
}
pub fn reg_key_vid() {
println('REGISTERING VID KEY')
#EventHotKeyRef gMyHotKeyRef;
#EventHotKeyID gMyHotKeyID;
#EventTypeSpec eventType;
#eventType.eventClass = kEventClassKeyboard;
#eventType.eventKind = kEventHotKeyPressed;
#InstallApplicationEventHandler(&focus_app, 1, &eventType, NULL, NULL);
#gMyHotKeyID.signature = 'rml1';
#gMyHotKeyID.id = 1;
#RegisterEventHotKey(kVK_ANSI_1, cmdKey, gMyHotKeyID,
#GetApplicationEventTarget(), 0, &gMyHotKeyRef);
}