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
1answer
32 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
60 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] ...
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 ...
2
votes
1answer
157 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 ...
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 ...
1
vote
2answers
101 views

Show Window without activating (keep application below it active)

I need to show a window (without title bar) above third party applications without my window taking focus. I have tried using an NSPanel and setting enabling non-activating, but that didn't help. ...
3
votes
2answers
182 views

Rounded NSView in a Transparent Window

I'm trying to make a transparent NSWindow with a rounded view in there. I'm trying to have a rounded view with a transparent window. This is what it looks like now: (see the little dots in the ...
0
votes
0answers
62 views

Taking application to full screen

I have a cocoa application for OS X in which I would like to implement a full-screen mode. I know that I can do this using toggleFullScreen: on my NSWindow, but this will simply display the window in ...
0
votes
0answers
78 views

Custom View for NSUSerNotification

Is there any way to display a custom view or window as a NSUserNotification in Mac OS X? I want to display additional information such as an image and as I understand I cannot do that with the ...
3
votes
1answer
112 views

Make NSWindow truly the highest level (above mouse, above mission control/expose)

I was wondering if it is possible to make my NSWindow show above absolutely everything. I current set the window level to CGShieldingWindowLevel using the code... [self ...
0
votes
0answers
41 views

Mac OS X - NSScrollView insertion Logic

I have created an app for Mac OS x which when I run it on the macbook pro 13" only 3 quarter of the application is visible. Now I'm trying to add a NSScrollView and make the whole [_window ...
0
votes
1answer
92 views

Custom animation of views while entering fullscreen mode in os x application

Is there any way to implement an animation (frame changing) for views at the same time, when app is going to full screen? Briefly: I have an app with 1 window, which contains 3 views on it.For some ...
0
votes
1answer
117 views

Understanding NSWindow,NSView,NSBox,NSCollection: compare features for a group of controls

I've been trying to understand the docs for NSWindow,NSView,NSBox,NSCollection in order to make the best choice for my project, but I think I'm missing some things. I need to display 6 items, in a ...
0
votes
0answers
46 views

how to Split the NSWINDOW in xcode?

I created an Mac application. Now they have asked me to change the UI for the application. I have used the tabView and created the UI,Now i want to split the NSWINDOW and keep all the buttons on the ...
2
votes
0answers
106 views

How to display an image on the NSWindow title bar that's half outside

I have a custom NSWindow subclass - INAppStoreWindow (github) with a custom title bar view - and I'd like to do something like this image: As you can see the ribbon is not totally outside the title ...
0
votes
0answers
60 views

Find location of NSWindow title without resorting to private APIs?

I want to know the location of the title bar text when creating a custom NSWindow titlebar background view, so I can position visual elements relative to the title. I've achieved this, but I've had ...
1
vote
1answer
157 views

Cocoa - How do I initialize a view programmatically ?

I have a problem understanding how to initialize a view without hooking it up in my nib-file. So what I want to do is, instead of dragging in a view and assigning it a dedicated class, I want to ...
0
votes
1answer
214 views

Changing view in NSWindow removes contents of view

I am using an NSToolbar and NSWindowController to change the views of an NSWindow. When the toolbar items are selected, the view is successfully changed for the window and the window changes it's ...
0
votes
0answers
117 views

mouse events on transparent nswindow subview

I have a transparent NSWindow created with the following code: ringWindow = [[NSWindow alloc] initWithContentRect:[self frame] ...
1
vote
2answers
102 views

Hide NSView overflow

I'm a web dev guy. The overflow:hidden CSS property tells the render engine to not draw the current view's content across the parent's borders. In my current project, I have a custom NSWindow with a ...
0
votes
3answers
2k views

How to add an NSView to NSWindow in a Cocoa app?

Since the template of an OS X app in Xcode seems to be similar to an empty app template, the following is used to add a view and a button (trying not to use Interface builder for now): - ...
0
votes
1answer
152 views

Screenshot in cocoa mac

I want to achieve a screenshot functionality in cocoa app. The requirement is, After some specified time interval, a view/window (screen capture window) will appear take the screenshot of the complete ...
0
votes
2answers
204 views

NSView OverLaying NSWindow Bottom Bar

For the life of me I cannot figure this out. I am working Xcode for Mountain Lion. I am having trouble adding NSView to an NSSplit View in my main NSWindow. My split view works as expected although ...
1
vote
0answers
254 views

Resizing NSWindows and fixed ratios in Mac OS X

I was looking into making a window that has a fixed ratio when the user resizes the NSWindow element in Mac OS X. I originally tried: - (NSSize)windowWillResize:(NSWindow *)sender ...
0
votes
1answer
132 views

First responder problems

My application is a menu-bar app. It has a panel which holds another view. This view changes, and I each one of those should do it's own key-handling. When I change the first responder, only the ...
1
vote
2answers
443 views

Dynamically resize NSWindow based on NSOutlineView height

I have read many answers to questions about dynamically resizing NSWindows and nothing has quite worked yet. I have built a 'popover' like window to be displayed form the menu bar, I couldn't use ...
0
votes
1answer
179 views

loading a borderless window from a xib with view

I am trying to load a borderless window from a .xib in my program. I can load a borderless window with by overriding [[[NSWindow]] initWithContentRect:styleMask:backing:defer:] as follows: - ...
0
votes
1answer
195 views

Access NSWindow's Element via Child NSView/ViewController

Is it possible to access a NSWindowController's element from a child NSViewController? Essentially I have a NSProgressIndicator that spins on the bottom corner of the NSWindow. This works because my ...
1
vote
2answers
367 views

NSView outside of NSWindow

I have an NSWindow and basically, what I am trying to pop up an NSWindow outside of the bounds of the NSWindow it's in every time a user hovers over the NSWindow. But every time I try to do that, ...
0
votes
2answers
256 views

NSWindow: alternative to -setOpaque:NO

I want to have a window which is like QuickTime X window. An all opaque window with rounded corners. I've obtained it implementing a custom borderless NSWindow with: [window setOpaque:NO]; [window ...
0
votes
2answers
196 views

Same Command, Different Results setFrame: NSView

I'm experiencing what I think is a very strange issue. First and foremost, my application moves UI elements around the screen using the following example command: [view ...
3
votes
3answers
586 views

Why is contentView property of NSWindow of type id?

Why is the contentView property of the NSWindow class of type id instead of NSView This does not make sense to me, why should the contentView be anything other than a NSView subclass. So in my case ...
2
votes
1answer
596 views

Grey border around view when using NSBorderlessWindowMask

I'm having the exact same problem as in this question: Gray border when using NSBorderlessWindowMask However, the accepted answer (as in the comments) of removing the window shadow doesn't seem to ...
0
votes
0answers
83 views

App freezes when button pressed to switch view

I'm currently building an app on Xcode 4 and I want my program to function so that when I press a button, the view switches, but still in the same window (NSWindow). When I press my button, the app ...
5
votes
1answer
995 views

Converting an NSPoint from window coordinates to view coordinates

My application has a custom view that displays a timeline of events. This view is wrapped in an NSScrollView to support horizontal scrolling of the timeline. Using notifications, I've implemented a ...
0
votes
1answer
196 views

NSWindow is nil after awakeFromNib

I have a nib file which has a bunch of views and custom objects in it. One of those objects is a custom controller object. In it's awakeFromNib method I want to access the window that is holding all ...
1
vote
0answers
223 views

Sliding Down A Small NSView Over An Existing NSView

I'm working with a NSWindow that displays various NSViews when buttons are pressed (a settings panel, essentially). I'm trying to get a smaller NSView to slide out with a NSPopUpButton and some ...
1
vote
2answers
911 views

mouseMoved not called

I have a subclassed NSView which is part of a .xib-file of a subclassed NSDocument, which gets alive by the default behaviour of NSDocumentController's openDocument: method. In this subclassed NSView ...
2
votes
1answer
162 views

Clean easy way to expand window according to subviews

I'm developing an application that uses a master-detail paradigm with an NSTableView as the master and an NSView as the detail. The NSView gets populated from another NSViewController's view; I have ...
0
votes
1answer
739 views

How to make NSWindow accept mouseMove events immediately after opening?

I am writing an application using cocoa which, in some point (surprise), opens window. There is a "Hover" functionality in this window, and for that I need to accept mouseMoved events. I managed to ...
1
vote
0answers
43 views

Quartz is drawing on a different window

I am trying to draw some pixels (NSRects that are 1x1) on a NSWindow in mac os, but when I do that it randomly pics a window to draw it on (see below). It is supposed to be on the left window. ...
0
votes
1answer
575 views

How to use JOGL's NEWT model to create a window in Mac OS X

At work I am creating a music visualization program. JOGL was chosen because we needed an API to program 3D graphics and have it work on multiple platforms right away. At the moment, I am using ...
0
votes
2answers
340 views

Fixed object to the right of an NSWindow

I have created an NSView on an NSWindow. I'm trying to "dock" the view to the right side of the window, so that when I scale the window the view will always stay on the right side. Any suggestions?
1
vote
1answer
814 views

Create Drop Shadow for NSView - Cocoa

I'm trying to create a drop shadow surrounding the NSView like how NSWindow does it with its shadow, but I'm having some difficulty. I created a class for the NSView I'm creating the drop shadow for ...
0
votes
1answer
511 views

Problem with Position of NSWindow after changing the ContenView

in my application i hav one NSWindow and different CustomViews... my target is just to change the contenView of the window. i placed the main window in the center of the screen with a button and after ...
0
votes
0answers
166 views

Why would OSX issue drawRect for the wrong window in my app?

I have an image editing application in which there is a tool window with many, many subviews (one panel per image operator, of which there are many, plus additional panels, how many being unknown ...
1
vote
1answer
406 views

Designing views/windows in Mac OSX first time

I am about to tackle my first Mac OSX project after developing for iOS. In my iOS applications, it is clear to me the whole NavigationViewController->MyViewController->MyViews paradigm. A bit more ...
6
votes
5answers
4k views

Get ALL views and subview of NSWindow

Is there a way I can get ALL the views and subviews and subviews of these subviews (you get the idea...) of an NSWindow? Thanks.
0
votes
1answer
717 views

Custom NSWindow content margin causes mess up with autoresizing mask

I'm currently using the method shown in this Cocoa with Love article to create a custom NSWindow subclass. As in the example, I needed to have a roughly 10px margin around the content of the window in ...

1 2