Tagged Questions
0
votes
0answers
8 views
Cocoa : Dragging behaving like Moving
It's there some kind a of way that Dragging (moving with a mouse button down) may act like moving on a NSView ?
I'm implementing something that should like a menu : the item is selected on mouseUp: ...
0
votes
1answer
12 views
mouseDragged: Not called in NView subclass
For a custom NSBox I have the following problem I can't get my mouseDragged to get called.
Knowing that : mouseMoved:, mouseEntered:, mouseExited:, mouseUp are all called when needed.
0
votes
2answers
37 views
mouseDragged: is not passed down two subviews?
I am writing a program that has a number of subclassed NSViews (Frame) with varying contents that can be dragged around by the mouse in their superview. All of the views contain one subview, called ...
0
votes
1answer
29 views
Cocoa ignore clicks but still register them?
Is it possible to have a click-through window in cocoa (as in _window.ignoreMouseEvents = TRUE), but still find out when the mouse has been clicked above the window? Or, instead of ignoring the ...
1
vote
1answer
56 views
What method should I call on my NSCell
I am writing a custom NSControl with custom NSCells. It is a control, so it has to respond to the mouse. I created an NSTrackingArea over my control, implemented -mouseEntered:, -mouseExited: and ...
6
votes
2answers
133 views
Simulated MouseEvent not working properly OSX
Back in 2010, Pierre asked this question (his accepted answer doesn't work for me).
I'm having the same problem: I am able to successfully move the mouse around (and off!?!) the screen ...
0
votes
1answer
33 views
NSWindow events at kCGDesktopWindowLevel
I am trying to make an interactive desktop application that replaces the wallpaper image. It sounds like it is not possible to have an NSWindow at that level with events. According to all of the ...
0
votes
2answers
160 views
NSView Does Not Respond To Mouse Events After CABasicAnimation
I have a pageLeft and pageRight animation that animates the position and alpha of 2 views, making a total of 4 simultaneous CABasicAnimations:
Move next page into the view
Move current page out of ...
2
votes
1answer
421 views
How to detect mouse hover on NSButton. Obj-C, Cocoa
I have a Mac application that has two NSButtons on each bottom corner of the window. I have set their Alpha = .5 in the .xib. I want to know how to detect a mouse hover over the button and change the ...
0
votes
1answer
79 views
Global mouse events and fullscreen applications
In the application I'm writing I need to be able to register when the user moves the pointer. To do this I have made use of the NSEvent class method addGlobalMonitorForEventsMatchingMask:handler:. ...
1
vote
1answer
86 views
Global mouse event handling similar to MacOsX' build in screenshot functionality
I know there are several questions on Stackoverflow regarding global mouse events in MacOsX and I've spent the last hours searching for one that helped me out.
What I want to create is a ...
0
votes
0answers
53 views
Remove appearance of two badge icons on button while clicking, cocoa
I have a button with a badge counter on it. when i click on the button ,while clicking,two small badges are drawn but on releasing the mouse it gets back to normal. how can i remove the small badge ...
0
votes
1answer
103 views
Notification for Mouse clicked events in cocoa
I am new to Mac App development, I want Mouse clicked notifications, i.e when we click on mouse a notification must be triggered. Just like keyboard notifications in iOS. What is the notification name ...
1
vote
1answer
323 views
NSButton image shadow on mouseEntered event
I have a borderless NSButton that contains an image and is subclassed with my ButtonEffect class to detect mouseEntered and mouseExited events. My goal is to have just the edge of the image glow as ...
0
votes
2answers
313 views
Tracking cursor position cocoa and returning mouse position relative to window
I thought I would post a question and answer regarding continuously tracking the mouse location in cocoa ( in OSX 10.5.8 using xcode 3.1.4) within a cocoa app.
It is a self answer question because I ...
1
vote
0answers
80 views
Getting continuous drag events for NSTextView
I'm new to NSTextView and AppKit event handling in general, so maybe this is simple. I'm trying to get the proper way to handle continuous drag events on a selected range of text from NSTextView. That ...
1
vote
2answers
388 views
Custom NSStatusItem and NSView not reliably receiving NSTrackingEvents
I have a Status-Bar item only app that Iam trying to get to show a panel on mouseOver. I have the custom status item (and associated view) hooked up and working, but the tracking rect is only ...
0
votes
0answers
19 views
Why is there no NSTrackingAssumeOutside flag like NSTrackingAssumeInside?
I would like an NSTrackingArea created such that it calls mouseEntered: as its first call. Why is an option for this in the form of an NSTrackingAssumeOutside flag corresponding to the ...
0
votes
2answers
195 views
Registering last mouse position for smooth drawing
I use OpenGL for drawing with mouse in view. Everythings looks OK, but when i draw mouse fast it does not draws in every pixel, there shows up some spacing. I add image link here. My current ...
0
votes
1answer
290 views
Mouse Event in Outline View
I have a window which contains a split view. One of the "splits" contains an outline view. I have a window controller (which is the file owner for the window's XIB). The window controller is the ...
0
votes
0answers
165 views
When changing tracking area, the event mouseEntered is not detected
I have two tracking areas defined by:
NSTrackingArea * area1 = [[NSTrackingArea alloc] initWithRect:NSMakeRect(0,0,200,200) options:NSTrackingMouseEnteredAndExited|NSTrackingActiveAlways owner:self ...
0
votes
1answer
360 views
Limiting scroll elasticity in Cocoa (NSScrollView)
I have a cocoa application that has a dozen scrollViews. I love the elasticity, especially in some cases where I'd actually put some kind of "Easter egg" (kinda like the apple logo in the books app. ...
0
votes
1answer
324 views
Objective C, Where to put mouse event methods?
I'm creating my first application and I have a window consisting of multiple subclasses for the views and the window. I have one NSWindowController class, one NSWindow subclass, and three NSView ...
1
vote
1answer
159 views
Is it possible to detect if Magic Mouse/Trackpad is being touched?
Just wondering if there is a way to receive a callback in Cocoa if Magic Mouse or Trackpad is being touched by the user?
I looked into Quartz Events, but it seems I can only get callbacks if the ...
0
votes
1answer
345 views
Cocoa webview ignore mouse events in areas without content
I have a transparent web view which is a large rectangle. The webpage it loads has smaller rectangles that don't fill the whole web view. So in those spaces not occupied by divs, you can see through ...
2
votes
3answers
1k views
Receiving double-click event
I've been searching the Apple docs and the only function I could find pertaining to a double click just returned the acceptable time between clicks for it to be considered a double click.
Can someone ...
7
votes
1answer
670 views
NSWindow: Passing mouse events through window to whatever is underneath
Is it possible to pass mouse events through an NSWindow to whatever is behind it (even if it is a window from another application)?
I am using NSWindow to create a desktop overlay, but would like to ...
2
votes
1answer
580 views
NSView mouseExited
I have an NSView and basically, even when my mouse doesn't leave the defined frame, just moves within it, mouseExited function is called. Is this how is it suppose to be or am I doing something wrong? ...
0
votes
1answer
723 views
NSWindow mouse events
How can I get mouse events for NSWindow? I want to know when a use hovers over a window and clicks a window. Thanks.
2
votes
3answers
1k views
How do I handle a mousedown event inside a window in Cocoa
How do I handle a mousedown event inside a window in Cocoa?
My code:
-(void)mouseDown:(NSEvent *)event {
NSLog(@"yay");
}
I am using Mac OS10.6, in xcode 4.0.1.
EDIT:
Yes, this is in the ...
4
votes
1answer
555 views
How to achieve mouse click-through on NSView with CALayer?
I have a custom borderless NSWindow in the shape of a circle. To do this I use a custom NSView that draws a filled circle.
Mouse clicks on a transparent pixel inside the window's content rect go ...
1
vote
1answer
1k views
Mouse over in a NSView subview
i have a subclass of NSView that handles Mouse events, inside that NSView i have a subview (which is another subclass of NSView). How can i handle Mouse Events for both NSViews.
What i want to ...
2
votes
2answers
735 views
Bring a subview to the top on mouseDown: AND keep receiving events (for dragging)
Ok, basically I have a view with a series of slightly overlapping subviews. When a subview is clicked, it moves to the top (among other things), by a really simple two-liner:
...
0
votes
1answer
354 views
cocoa mousedown on a window and mouse up in another
I am developping a Cocoa application and I have a special need. In my main window, when I mouse down on a certain area, a new window (like a complex tooltip) appears. I want to be able to do:
- mouse ...
0
votes
1answer
533 views
Simulate random position mouse events in Cocoa
I want to build a very rough app which will simulate mouse clicks every 10th of a second at random places on the entire screen. I was thinking of building this in Cocoa/Objective-C. Can anyone point ...
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
3answers
243 views
What are the z-coordinates in Cocoa mouse events for?
Interestingly i didn't find the answer for this seemingly trivial question - Cocoas mouse events have z-coordinates - what are they for?
0
votes
1answer
805 views
Cocoa nextEventMatchingMask not receiving NSMouseMoved event
I created a local event loop and showed up a borderless window (derived from NSPanel),
I found in the event loop there's no NSMouseMoved event received, although I can receive Mouse button down/up ...
0
votes
2answers
183 views
Help with Cocoa: Objects as views?
in my app I want to have a light table to sort photos. Basically it's just a huge view with lots of photos in it and you can drag the photos around. Photos can overlap, they don't fall into a grid ...
2
votes
3answers
1k views
Catching mouseDown events of subviews. (Cocoa osx)
I have a series of nested views and I need to catch the mouseDown event ant do the same thing when any of these views are selected. Is there a way to tell a superview to handle events for its ...
0
votes
2answers
1k views
Mouse event is not detected on my NStableview + cocoa
Hi Guys
I have been trying this for past few days but couldnt figure it out.
I have an application which has a NSOutlineView and a NSTableView. Outlineview takes input a path and displays them in ...
0
votes
2answers
792 views
Open an NSWindow by clicking NSRect in cocoa
In my program I am able to determine whether a mouseclick was made within a certain NSRect. How can I open a new NSWindow by clicking this NSRect?