0
votes
0answers
19 views

How to move the mouse in Objective-c when the display is zoomed in?

I know that by using the following i am able to move the mouse smoothly over the screen: CGEventRef ourEvent = CGEventCreate(NULL); CGPoint currentPosition = CGEventGetLocation(ourEvent); CGFloat x ...
2
votes
1answer
69 views

How does a mouse work?

This might be kind of a strange question, but how does the software for a mouse work? (specifically on OSX) If I want to move the mouse around on OSX, I've been using this code: ...
1
vote
1answer
479 views

How to listen to cocos2d-x mouse & keyboard events?

I'm running the proj.mac version of their sample (that comes with the cocos2d-x files). I saw that the Mac version has EAGLView.mm which has: - (void)mouseMoved:(NSEvent *)theEvent { ...
-1
votes
2answers
85 views

Instances variables in subclass of NSButton and connecting new button with Interface Builder

In order to access -mouseUp and -mouseDown events in a button I have subclassed NSButton and I also want to store a few extra variables within the object: @interface MoveButton : NSButton{ ...
0
votes
0answers
80 views

Refreshing Mouse Pointer Objective C

I am connecting from one Mac to another mac, and thus when the mouse coordinates are changed in one location, the change must be reflected in the second location. I am using this statement to draw the ...
0
votes
0answers
38 views

How to check the type of my mouse device by using OBJC

I'm working on a Mac OS X application by using SDK 10.8 and I want to check the device type of my mouse, whether it's magic mouse or not. I've done a lot of the searching work, but it seems there's ...
0
votes
2answers
130 views

Changing the mouse position in GLUT?

I'm trying to rotate the camera with the mouse. Moving it isn't a problem, but I need to keep it into one place. I've tried glutWarpPointer() but it slows down the program SIGNIFICANTLY. I'm trying to ...
2
votes
2answers
403 views

Mouse Enter/Exit events on partially hidden NSViews

I have a problem that I think is solvable with some hackery, but I'm very curious if there is an easier way to get the job done without having to do all of that. I have a stack of NSViews ...
1
vote
0answers
128 views

Cocoa Accessibility API consuming mouse clicks

I have encountered a weird problem with one of my OS X apps. The app uses AXAPI to create event taps and to monitor keyboard and mouse events. Some users with OS 10.6-10.7 report that when the app is ...
2
votes
1answer
398 views

How to simulate Mouse Acceleration?

I've written iPhone - Mac, Client - Server app that allows to use mouse via touchpad. Now on every packet sent I move cursor by pecific amount of pixels (now 10px). It isn't accurate. When i change ...
4
votes
1answer
649 views

Why is CGWarpMouseCursorPosition causing a delay? If it is not, what is?

I have code here that restricts the mouse to a region on the screen, it is working relatively well, with only one big problem. The mouse doesn't get moved cleanly/smoothly when running along the edges ...
2
votes
1answer
360 views

Limiting mouse to one display on Mac (Potentially using Cocoa)

I've been feverishly searching for a method by which to limit the user's mouse to one display in a multi-display setup on a Mac. I've stumbled upon this question: Cocoa: Limit mouse to screen, I ...
1
vote
2answers
335 views

How to detect all cursor movements and key presses on a Mac?

What is the best method to detect all cursor movements and key presses on a Mac using objective-c on OSX Lion?
0
votes
2answers
978 views

NSButton catch a mouse click event

I have the code #import <Cocoa/Cocoa.h> @interface MyButton : NSButton { } - (void)mouseDown:(NSEvent *)theEvent; @end #import "ContextMenuButton.h" @implementation MyButton - ...
5
votes
1answer
685 views

Programmatically Disable Mouse & keyboard

I would like to programmatically disable mouse & keyboard input temporarily on a mac (using Objective C/C/Unix) & then reenable them.
1
vote
1answer
539 views

Automating iTunes mouse click in Objective-C

I am trying to automate a left mouse click in iTunes from Objective-C. I am doing the following. first I am listening to iTunes events [[NSDistributedNotificationCenter defaultCenter] ...
3
votes
1answer
600 views

Drawing anywhere on screen in Mac OS X / Objective C

I'm trying to create a little utility that will draw an arbitrary shape on the screen below the mouse pointer (basically like drawing a line that follows the cursor). This could be anywhere on the ...
1
vote
1answer
160 views

mach_msg_trap, - (void) mouseDragged and timer performance

Leopard 10.5.8, XCode 3.1.1; using runModalForWindow to implement (what is intended to be) a high performance mouse tracking mechanism where I have to do real-time complex bitmap modifications. The ...
0
votes
3answers
926 views

How to find the location of the mouse in objective-c

I am making an image editor (just a simple editor for a program I am making), and I need to find the position of the mouse. Is it possible to do this in Objective-C? If so, how? EDIT: I just thought ...
0
votes
0answers
254 views

Mouse Down events in Objective-C? [duplicate]

Possible Duplicate: Mouse Down events in Objective-C I know this question has been asked a lot before, but nothing will work for me. The following code will not do anything at all. This is ...
3
votes
2answers
2k views

Mouse Down events in Objective-C

I know this question has been asked a lot before, but nothing will work for me. The following code will not do anything at all. - (void) mouseDown:(NSEvent*)event { NSLog(@"It worked!"); } I ...
3
votes
2answers
3k views

cocoa application changing mouse cursor?

I have a cocoa application that has a view which is clickable. I cannot figure out how to change the cursor when the user mouses over it. I want to do this so that the user knows that they can click ...
0
votes
1answer
528 views

Can't get useful location from -mouseDown:event

Complete rewrite I now reproduced the issue I had posted about previously in a trivial sample project, and so I have absolutely no idea what I could be doing wrong. Here's what I'm now doing. ...
2
votes
1answer
453 views

Cocoa: Limit mouse to screen

I'm developing a kiosk mode application for OSX. In some circumstances, another screen gets attached. My application runs in fullscreen on one screen using: [self.window.contentView ...
0
votes
1answer
1k views

How to efficiently set Cursor for an NSView?

I have an NSView that is drawing a collection of irregularly shaped (and overlapping) application managed objects: that obviously can't be described by efficiently using non overlapping rectangles. I ...
3
votes
2answers
562 views

How to draw a highlight around mouse cursor

I'd like to be able to display a quick animated "flash" around the mouse cursor (similar to the effect in some screen-recording applications). What would be a good way to go about this? My current ...
7
votes
2answers
2k views

Mouse tracking daemon

I need to write something using Cocoa to surface raw mouse movement data. Optimally, the app would just be a little daemon that would run, passing the data to a socket server which another ...
2
votes
1answer
1k views

mouse click events in an NSView subclass

I have an NSView subclass that gets initialized with an OpenGL context and has a bunch of mouse event handling (onMouseDown, etc...). I have an app using it which has a main Cocoa window that contains ...