views:

90

answers:

1

I'm automating a copy command to place some text on the pasteboard every second or so - unfortunately this is my only way of accessing the text, which is in another application. After copying, I access the pasteboard text and process it.

Sometimes, the copy command will be sent when nothing is selected - for example in textEdit, if the cursor is at the end of a line (instead of highlighting some text) and you hit copy, you get a system beep because there is nothing selected to copy. The pasteboard does not update and retains its previous data.

I can't think of a creative way to identify when this happens. If I send a copy command and the pasteboard doesn't update, is there any kind of time stamp on the pasteboard I can access that will confirm that something has or hasn't been captured?

I was looking at the changeCount, but I'm not sure what that is for exactly, and the documentation didn't help me much - red herring?

Any simple and effective ideas gratefully received!

+1  A: 

I do not believe there exists a notification for this however you can poll the pasteboard.

pasteboard = [[NSPasteboard generalPasteboard] retain];
[NSTimer scheduledTimerWithTimeInterval:0.25 target:self selector:@selector(pollPasteboard:) userInfo:nil repeats:YES];

- (void)pollPasteboard:(NSTimer *)timer {
    NSInteger currentChangeCount = [pasteboard changeCount];
    if (currentChangeCount == previousChangeCount)
        return;
    NSLog(@"Pasteboard updated: %@", [pasteboard types]);
    previousChangeCount = currentChangeCount;
}
Alex Winston
+1 this is the way to do it.
Dave DeLong
Please avoid polling anything unless you absolutely positively have to. It is inefficient in all ways.
bbum
I don't disagree that it isn't efficient but how else would you do it?
Alex Winston