2019-09-15 16:29:11 +00:00
|
|
|
/*
|
|
|
|
* This file is part of espanso.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Federico Terzi
|
|
|
|
*
|
|
|
|
* espanso is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* espanso 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. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with espanso. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-09-05 15:20:52 +00:00
|
|
|
#import "AppDelegate.h"
|
|
|
|
|
|
|
|
@implementation AppDelegate
|
|
|
|
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
|
|
|
|
{
|
2019-09-13 12:35:46 +00:00
|
|
|
// Setup status icon
|
2020-04-15 17:09:13 +00:00
|
|
|
if (show_icon) {
|
|
|
|
myStatusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSSquareStatusItemLength] retain];
|
|
|
|
|
|
|
|
NSString *nsIconPath = [NSString stringWithUTF8String:icon_path];
|
|
|
|
NSImage *statusImage = [[NSImage alloc] initWithContentsOfFile:nsIconPath];
|
|
|
|
[statusImage setTemplate:YES];
|
|
|
|
|
|
|
|
[myStatusItem.button setImage:statusImage];
|
|
|
|
[myStatusItem setHighlightMode:YES];
|
|
|
|
[myStatusItem.button setAction:@selector(statusIconClick:)];
|
|
|
|
[myStatusItem.button setTarget:self];
|
|
|
|
}
|
2019-09-13 12:35:46 +00:00
|
|
|
|
|
|
|
// Setup key listener
|
2020-03-08 19:11:57 +00:00
|
|
|
[NSEvent addGlobalMonitorForEventsMatchingMask:(NSEventMaskKeyDown | NSEventMaskFlagsChanged | NSEventMaskLeftMouseDown | NSEventMaskRightMouseDown)
|
2019-09-05 15:20:52 +00:00
|
|
|
handler:^(NSEvent *event){
|
2020-03-08 19:11:57 +00:00
|
|
|
|
2019-09-05 17:18:55 +00:00
|
|
|
if (event.type == NSEventTypeKeyDown
|
|
|
|
&& event.keyCode != 0x33) { // Send backspace as a modifier
|
|
|
|
|
2020-03-08 19:11:57 +00:00
|
|
|
const char *chars = [event.characters UTF8String];
|
2019-09-05 16:34:03 +00:00
|
|
|
int len = event.characters.length;
|
2019-09-05 17:18:55 +00:00
|
|
|
|
2019-09-13 09:55:42 +00:00
|
|
|
keypress_callback(context_instance, chars, len, 0, event.keyCode);
|
2019-09-05 17:18:55 +00:00
|
|
|
//NSLog(@"keydown: %@, %d", event.characters, event.keyCode);
|
2020-03-08 19:11:57 +00:00
|
|
|
}else if (event.type == NSEventTypeLeftMouseDown || event.type == NSEventTypeRightMouseDown) {
|
|
|
|
// Send the mouse button clicks as "other" events, used to improve word matches reliability
|
|
|
|
keypress_callback(context_instance, NULL, 0, 2, event.buttonNumber);
|
2019-09-05 15:20:52 +00:00
|
|
|
}else{
|
2019-09-05 17:18:55 +00:00
|
|
|
// Because this event is triggered for both the press and release of a modifier, trigger the callback
|
|
|
|
// only on release
|
|
|
|
if (([event modifierFlags] & (NSEventModifierFlagShift | NSEventModifierFlagCommand |
|
|
|
|
NSEventModifierFlagControl | NSEventModifierFlagOption)) == 0) {
|
|
|
|
|
2019-09-13 09:55:42 +00:00
|
|
|
keypress_callback(context_instance, NULL, 0, 1, event.keyCode);
|
2019-09-05 17:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//NSLog(@"keydown: %d", event.keyCode);
|
2019-09-05 15:20:52 +00:00
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2019-09-13 12:35:46 +00:00
|
|
|
- (IBAction) statusIconClick: (id) sender {
|
|
|
|
icon_click_callback(context_instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) contextMenuClick: (id) sender {
|
|
|
|
NSInteger item_id = [[sender valueForKey:@"tag"] integerValue];
|
|
|
|
|
|
|
|
context_menu_click_callback(context_instance, static_cast<int32_t>(item_id));
|
|
|
|
}
|
|
|
|
|
2019-09-05 15:20:52 +00:00
|
|
|
@end
|