Mac OS Xのマウスボタンとキープレスカウンター


回答:


15

MrDanielから提供されたインスピレーションに基づいて、シンプルな小さなカウンターをプログラムすることにしました。

メインウィンドウのスクリーンショット

このソースコードから、次のように定義されたUIを差し引いたものxib。FoundationおよびAppKitフレームワーク(GitHub上の完全なソースおよびXcodeプロジェクト)を使用します

DBAppDelegate.h

//
//  DBAppDelegate.h
//  CocoaActivityCounter
//
//  Created by Daniel Beck on 29.07.2012.
//  Copyright (c) 2012 Daniel Beck. All rights reserved.
//

#import <Cocoa/Cocoa.h>

static id monitorLeftMouseDown;
static id monitorRightMouseDown;
static id monitorKeyDown;

@interface DBAppDelegate : NSObject <NSApplicationDelegate>

@property (assign) IBOutlet NSWindow *window;
@property (strong) IBOutlet NSTextView *logView;

@property (weak) IBOutlet NSToolbarItem *toolbarStartButton;
@property (weak) IBOutlet NSToolbarItem *toolbarStopButton;
@property (weak) IBOutlet NSToolbarItem *toolbarClearButton;

@property (weak) IBOutlet NSTextField *keyPressCounterLabel;
@property (weak) IBOutlet NSTextField *leftMouseCounterLabel;
@property (weak) IBOutlet NSTextField *rightMouseCounterLabel;

@property (readwrite) NSDateFormatter *logDateFormatter;

@property (readwrite) NSNumber *keyPressCounter;
@property (readwrite) NSNumber *leftMouseCounter;
@property (readwrite) NSNumber *rightMouseCounter;

@property (readwrite) BOOL loggingEnabled;

- (IBAction)stopButtonPressed:(id)sender;
- (IBAction)startButtonPressed:(id)sender;
- (IBAction)clearButtonPressed:(id)sender;

- (void)logMessageToLogView:(NSString*)message;

- (BOOL)validateToolbarItem:(NSToolbarItem *)theItem;

@end

DBAppDelegate.m

//
//  DBAppDelegate.m
//  CocoaActivityCounter
//
//  Created by Daniel Beck on 29.07.2012.
//  Copyright (c) 2012 Daniel Beck. All rights reserved.
//

#import "DBAppDelegate.h"
#import <AppKit/NSEvent.h>

@implementation DBAppDelegate
@synthesize logView;
@synthesize toolbarStartButton;
@synthesize toolbarStopButton;
@synthesize keyPressCounterLabel;
@synthesize leftMouseCounterLabel;
@synthesize rightMouseCounterLabel;
@synthesize toolbarClearButton;
@synthesize loggingEnabled;

@synthesize keyPressCounter;
@synthesize leftMouseCounter;
@synthesize rightMouseCounter;


- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    self.loggingEnabled = NO;
    self.logDateFormatter = [[NSDateFormatter alloc] init];
    [self.logDateFormatter setTimeStyle:NSDateFormatterMediumStyle];
    self.keyPressCounter = [NSNumber numberWithInt:0];
    self.leftMouseCounter = [NSNumber numberWithInt:0];
    self.rightMouseCounter = [NSNumber numberWithInt:0];
}

- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication {
    return YES;
}

-(void)logMessageToLogView:(NSString*)message {
    [logView setString: [[logView string] stringByAppendingFormat:@"%@: %@\n", [self.logDateFormatter stringFromDate:[NSDate date]],  message]];
}

- (IBAction)stopButtonPressed:(id)sender {
    if (!self.loggingEnabled) {
        return;
    }
    self.loggingEnabled = false;
    [NSEvent removeMonitor:monitorLeftMouseDown];
    [NSEvent removeMonitor:monitorRightMouseDown];
    [NSEvent removeMonitor:monitorKeyDown];
}

- (IBAction)startButtonPressed:(id)sender {

    if (self.loggingEnabled) {
        return;
    }
    self.loggingEnabled = true;
    monitorLeftMouseDown = [NSEvent addGlobalMonitorForEventsMatchingMask:NSLeftMouseDownMask handler:^(NSEvent *evt) {
        [self logMessageToLogView:[NSString stringWithFormat:@"Left mouse down!"]];
        self.leftMouseCounter = [NSNumber numberWithInt:(1 + [self.leftMouseCounter intValue])];
    }];
    monitorRightMouseDown = [NSEvent addGlobalMonitorForEventsMatchingMask:NSRightMouseDownMask handler:^(NSEvent *evt) {
        [self logMessageToLogView:@"Right mouse down!"];
        self.rightMouseCounter = [NSNumber numberWithInt:(1 + [self.rightMouseCounter intValue])];
    }];
    monitorKeyDown = [NSEvent addGlobalMonitorForEventsMatchingMask:NSKeyDownMask handler:^(NSEvent *evt) {
        [self logMessageToLogView:[NSString stringWithFormat:@"Key down: %@ (key code %d)", [evt characters], [evt keyCode]]];
        self.keyPressCounter = [NSNumber numberWithInt:(1 + [self.keyPressCounter intValue])];
    }];
}

- (IBAction)clearButtonPressed:(id)sender {
    self.keyPressCounter = [NSNumber numberWithInt:0];
    self.leftMouseCounter = [NSNumber numberWithInt:0];
    self.rightMouseCounter = [NSNumber numberWithInt:0];
    [self.logView setString:@""];
}

- (BOOL)validateToolbarItem:(NSToolbarItem *)theItem {
    if ([theItem isEqualTo:toolbarStartButton]) {
        return !self.loggingEnabled;
    }
    if ([theItem isEqualTo:toolbarStopButton]) {
        return self.loggingEnabled;
    }
    if ([theItem isEqualTo:toolbarClearButton]) {
        return !self.loggingEnabled;
    }
    return YES;
}

@end

ツールバーで使用されるアイコンはTangoデスクトッププロジェクトからのものです。


1
Mac osxで開く方法
ジョンスミス

1
マウスには問題なく動作しますが、10.10ではキープレスをキャプチャしません:(
Mecki

@Mecki気付いたとき、しばらく前にそれをリポジトリの説明に追加しました。残念ながら、ユニバーサルアクセスAPIへのアプリごとのアクセス制限と、署名されていないバイナリに関連している可能性がある理由はわかりません。または、彼らはこれを完全に殺しさえしました。
ダニエルベック

Mac OS X 10.9.5では、マウスでうまく機能しますが、キーの押下もキャプチャしません。理由は分かりましたか、メッキー?ありがとう。
Jiakuan W 2015

@JiakuanW GitHubリポジトリでしばらく前に、この問題を解決すると主張するPRを取得しました(テストされていません)。
Daniel Beck


2

typingstatsは、キーストロークの総数とその他のさまざまなメトリックを表示します。ただし、ポインティングデバイスのクリックはカウントされません。


自分で試したことがありますか?それはあなたが本当に持っているものに基づいてキーボードのレイアウトを変えますか、それとも常に米国ですか?
ダニエルベック

App Storeアプリ。カナダやその他の国ではご利用いただけません。
ジャスティン

1

クリックとボタンを押すカウンタープログラムは、マウスとキーボードのクリックイベントを受信して​​カウントできるCocoa Objective-Cプログラムを記述することで可能になります。

調べるクラスはNSEventです。具体的には、addGlobalMonitorForEventsMatchingMask:handler:クラスメソッドが非常に役立つことがわかります。それは次のようなイベントを監視することを提案しているので:

NSLeftMouseUp

NSRightMouseUp

NSOtherMouseUp

NSLeftMouseDown

NSRightMouseDown

NSOtherMouseDown

NSKeyDown


3
実際にユーザーを自分の目標に近づけるように答えてみてください。彼にプログラミングを学ぶように言うだけでは、そうではありません。たとえば、実際のソリューションの要点である、関連するコードスニペットや関数呼び出しを提供できます。まだすべての人に役立つわけではありませんが、実用的なソリューションを提供するために他の人が基盤として使用できます。
ダニエルベック

ダニエルベックは、「ココアのアクセシビリティプログラミングガイドライン」の使用を提案するときに間違ったアプローチをとっていたようです。詳細を読んだ後、NSEventクラスをポイントしました。これでうまくいくようです...
MrDaniel
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.