an apple class that defines objects that manage and coordinate the windows an application displays on the screen
1
vote
1answer
15 views
how to move NSWindow to a particular screen?
In my app I need to be able to move my app's windows between the screens programmatically. I'm working on my MacBookPro and I'm connected to DELL monitor. So what I want to do is to have a method that ...
0
votes
0answers
7 views
InAppStoreWindow, how to reposition the NSView in NSWindow's title bar when resize?
I'm using InAppStorewindow (https://github.com/indragiek/INAppStoreWindow) to cuztomize my NSWindows's title bar. What i'm trying to do is to add a logo (image) to my title bar in center position:
...
0
votes
1answer
25 views
How to group several windows together and place them into particular location on the screen?
I have 5 different windows in my app that are on the screen simultaneously. It really bothers me sometimes that they are spread out on the screen after I use the app for a while. So I want to make an ...
0
votes
1answer
11 views
setAspectRatio doesn't work until the window is resized
In my app I have a main window where I play some video using AVPlayer. In order to force a particular aspect ratio I'm using setAspectRatio: method. I placed it in my app's windowControllerDidLoadNib: ...
3
votes
1answer
19 views
Unexpected behavior of NSTextView (because of titlebar-less NSWindow?)
I have a NSWindow (my main window) and a child window (positioned NSWindowBelow the main window) that has a NSTextView. The child window doesn't have a title bar, nor shadow and its transparent.
...
2
votes
0answers
30 views
Is it possible to clip a child NSWindow to its parent?
I have a borderless NSWindow that I'm adding as a child window to the main window of the app. In a particular mode the child window may lie partially outside the frame of the parent window then it ...
0
votes
0answers
7 views
AppDelegate stops getting windowDidResize
I have a single window cocoa app. In appDidFinishLaunching I have [[self window] setDelegate: self]. When the app first launches windowDidResize gets called without issue. After a few actions, it ...
0
votes
1answer
21 views
Show up a custom UI somewhere on screen
I've programmed a custom UI which looks like this: http://www.youtube.com/watch?v=XLsrVVhEs94
Currently it is only working within a NSView itself but I want it to show up in every corner of my ...
0
votes
2answers
37 views
Hiding opaque NSView in transparent NSWindow leaves behind shadow
What's the trick to clearing out shadows left behind after hiding an opaque NSView inside a transparent NSWindow?
0
votes
1answer
50 views
Resize child window in sync with parent NSWindow
I have an NSWindow, now I need to show a small window something like popover, but without the angle on top. I tried this with Sheet, but sheet is modal only.
So I created a custom window that is ...
1
vote
0answers
29 views
Creating NSWindow programmatically in Mono using MonoMac.dll Ref
This question here is because I am trying two routes to the same conclusion.
I have an application that is written in c# and I am now porting to the mac. This is working using Mono.
I am using a Mac ...
0
votes
1answer
33 views
Make NSBezierPath to stay relative to the NSView on windowResize
In my program I'm drawing some shapes inside an NSView using NSBezierPath. Everything works and looks great except when I resize the window.
Example
Initial drawing
Window resize
Does anyone ...
0
votes
0answers
11 views
Is it possible to make keyboard focus on nswindow without making app active?
I'm writing simple chat that works in floating mode. But I can't make it work with fullscreen Power Point. When I click on NSTextField it makes app active and Power Point exits full screen mode :( – ...
0
votes
1answer
33 views
How to make a window on the topmost of all application?
How to make a window on the topmost of all application? I have tried this:
http://whomwah.com/2009/04/11/using-cocoa-to-keep-an-app-window-always-on-top/
but it dones't work.
0
votes
0answers
34 views
NSWindow prevent window ordering when clicking on title bar
[NSApp preventWindowOrdering] is good for NSView with shouldDelayWindowOrderingForEvent and acceptsFirstMouse. Have anybody implemented same feature for NSWindow's titlebar??
0
votes
0answers
62 views
Bring the NSView to front in Cocoa for OSX
In my app I have two NSViews layered on top of each other. Both of them were created in the Nib, not programmatically. View1 has the following setup:
[view1 setWantsLayer:YES];
[[[self view1] layer] ...
6
votes
2answers
183 views
NSWindow - borderless, transparent window - flickering shadow when animating window height
Here's another NSWindow question ... I've got borderless window, transparent, which is created in this way ...
- (id)initWithView:(NSView *)view anchorPoint:(NSPoint)anchorPoint ...
-2
votes
0answers
31 views
Open a NSWindow subclass with zoom effect [closed]
I want to achieve the same effect that already exist in the dock with the grid stack : the window enlarges until it reaches that final size and becomes less transparent
Any Idea how to do that ?
0
votes
2answers
46 views
Show NSWindow on right click in NSTableView
I'd like to display an NSWindow when right clicking an item in an NSTableView, similarly to how the available outlets are shown in Interface Builder when you right click an object:
Unfortunately ...
0
votes
1answer
43 views
NSWindow's top position is jumping during resize (auto layout)
I do heavily use auto layout in my new project, but I've got one issue related to NSWindow during resizing ...
NSWindow is borderless window,
during initial setup, frame of this window is set based ...
0
votes
1answer
24 views
how to make a window visible after close it?
My app is menu status bar app, I mean the app contains icon in menu status bar and a window. The icon in dock is hidden. what I need to implement is that after the user click the status bar icon, the ...
4
votes
0answers
37 views
Unable to resize NSPanel after initial sizing
I want to resize an NSPanel when a user dismisses an item. I can initially size it perfectly:
[super awakeFromNib];
_mustNotAutoSize=FALSE;
// Make a fully skinned panel
NSPanel *panel = ...
0
votes
1answer
23 views
Scrollable large NSDocument on Macbook Pro 13" XGA display
I'm having all kinds of trouble understanding how NSWindows can have larger documents than the window bounds in them.
Unfortunately, layout and contents prevents me from simply shrinking the document ...
0
votes
1answer
34 views
Hooking Event at NSWindow
I'm making popup tooltip in NSWindow, like following XCode tooltip
If user press a button, popup is shown. It is easy.
But after that, if user press any button in this window, popup should be ...
0
votes
1answer
44 views
How to Resize a window based on size of customView in COCOA (OS X)?
I am very new to Apple applications development, I make any mistakes in asking these question try to forgive me.
Actually I am having a Window of size 350 X 470, in these window I am having one ...
0
votes
1answer
24 views
How to make a custom window resizable from all sides
How can I make an NSWindow subclass resizable from all sides, even if using NSBorderlessWindowMask ?
0
votes
0answers
28 views
Call a function when Window loaded in a Cocoa Mac App (NSWindow Class)
I've created a Cocoa Desktop Project and created a class with name "MyWindow" from "NSWindow" object and set Window's class to MyWindow in XIB file.
I want to call a function when window is loaded. ...
0
votes
1answer
34 views
Resizing an NSWindow setup as a childwindow
Let me rephrase the question:
How can I keep a child NSWindow (added to a main NSWindow using addChildWindow) the same size as the main window?
Old question:
I have two NSWindows: an uiWindow and ...
2
votes
1answer
163 views
OS X application in full screen mode on two monitor setup
Basically I would like to run OS X application in full screen mode on two monitors. There is no specific layout I would like to accomplish, I would just like to zoom in application to use whole two ...
0
votes
1answer
50 views
get windowController for a window
I able to find current opened window as :
NSWindow *currentWindow = [NSApp keyWindow];
But how can i know which class controls this window, i.e. Window controller for the above window?
0
votes
0answers
11 views
Quartz2d Draw to 2 different CGContextRef in two different windows simultaneously
Is there a way to draw two different windows with two different CGContextRef simultaneously?
For example if I had two NSWindows side by side and wanted one to receive mouse events to draw in the ...
0
votes
0answers
29 views
Tell if we are transitioning to or from fullscreen mode. Cocoa
I can use (([self styleMask] & NSFullScreenWindowMask) == NSFullScreenWindowMask) to figure out whether we are in full screen mode or not, however I also need to tell if we are currently ...
0
votes
0answers
69 views
NSWindow in front of all apps + ignores space/fullscreen transitions
I'm working on an application for "fading out" a screen to hide the weird OS X full screen transition. In 10.7, I was able to do this by creating an NSWindow and using setCollectionBehavior to force ...
0
votes
0answers
37 views
Transparent NSWindow refreshes oddly
I'm loading my app's NSWindow from a xib file (along with the menubar, etc.)
I have some setup code in my view controller's awakeFromNib vis:
[appWindow setOpaque: NO];
[appWindow ...
1
vote
1answer
51 views
How to make a keyboard Shortcut <Command + S> to save from multiple windows
OK, I am having a project having many xib's and each xib contains many nswindows.
I need to use a keyboard shortcut to save for each of the window.
Do I need to create muliple mainMenu NSMenuItems ...
0
votes
0answers
21 views
Correct size for desktop image using NSScreen size
I'm trying to make a simple app that covers the desktop icons with a subclassed NSWindow. The background of the window is set to the same image as the desktop image. This creates the allusion that the ...
0
votes
0answers
20 views
Printing the NSWindow title in a DTrace script
I can write a simple dtrace script to tell me each time the -orderOut method is called in my program.
#pragma D option quiet
objc$target::-orderOut?:entry
{
printf( "%30s %10s %x %x\n", ...
0
votes
0answers
22 views
OS X Window set to level NSScreenSaverWindowLevel hides tooltip
I have a window that is set to be "always on top" via "[self.window setLevel:NSScreenSaverWindowLevel];", however this seems to have the adverse side affect of hiding associated tooltips as well. ...
0
votes
1answer
45 views
Obj-C: Checking if a window exists in a thread
He, I programmatically create a window in a thread when a button in my main window is clicked. If this button is clicked again, the window closes. Fine. But when the user closes the window via its ...
0
votes
1answer
30 views
Problems with borderless window content disappearing
If I remove this method from my view everything works fine (no content disappears if I click on a button), so this is definitely the cause.
I'm trying to make a window that is rounded and has a ...
0
votes
2answers
59 views
How can i split a nswindow?
So I am trying to emulate the new cleanlymac app. It looks like it has two windows on top of each other, one without the traffic lights and the other with it, but they were treated as one. That had ...
5
votes
1answer
116 views
NSPanel not receiving mousedragged event
I have a borderless NSPanel, when I first launch it and it has focus I can drag it around and the mousedragged method gets triggered correctly, however when I switch focus to another app and then ...
1
vote
2answers
75 views
Cocoa Open a fullscreen window on the second screen maintaining the app visible on the first
I'm developing an app on OSX 10.7 and I'm trying and the goal is to open some images on a second screen while the app has to run normally on the first.
So the code is the following:
NSScreen *screen ...
0
votes
0answers
17 views
window topleft coordinate is incorrect in mouseDragged when dragging window titlebar
I drag a window titlebar, the window moves. but in mouseDragged function, the window topleft coordinate is incorrect that it remain the coordinate when mouse down.
3
votes
0answers
66 views
Snapping an NSWindows in place while the user is moving it
What would be the best way to snap an NSWindow to some location while the user is moving it?
I have tried using windowDidMove, for mouse down events, but this function is called for every single ...
1
vote
1answer
54 views
AXWindowMoved (via AXObserver) - continuous updates?
Is there any other method available to get continuous updates instead of kAXWindowMovedNotification (accessibility api - listened to via AXObserver) that just sends the notification much later than ...
1
vote
1answer
51 views
Add vertical scroll bar to document-based Mac app's window
I'm looking at MyDocument.xib in Interface Builder and I can't for the life of me find how to add a vertical scrollbar.
It's set to 768x756 minimum size and 768x1024 maximum size. It starts out at ...
0
votes
1answer
30 views
Remove NSWindowController
I have a borderless window that I close via a menubar item attached to this action (in the window controller):
- (void)closeMenuBar
{
[[self window] close];
[[NSApp delegate] closeMenubar];
}
...
1
vote
2answers
77 views
Draggable NSWindow flickering
I have created a draggable NSWindow that can be dragged via it's contents. It does not have a title bar (borderless).
The dragging works fine, but there's a flicker every so often. It seems the ...
0
votes
2answers
51 views
How to set delegates to access from different methods
I have some code where I'm trying to show my prefwindow with a method, but I cut out the rest and left the window init and the other method. So how would I access objects across methods?
#import ...






