0
votes
1answer
11 views
NSWindow does not respond to keystroke command-s
Hello,
it may pre very simple, but cannot find it:
I have three windows in three separate NIBs in my application. One is opened when a new document is opened, the other two can be opened from the …
0
votes
3answers
28 views
Why am I getting “does not support archiving” in my NSWindow subclass ?
Hi all - I have the following class:
@interface SpWindow : NSWindow <NSCoding> {
BOOL _editMode;
SpBgView *bgView;
} ...
... which I then call archive on. My encode method is as follows:
…
1
vote
1answer
27 views
click on the Menu bar item to show a window
Here's my code:
if ([window isVisible]) {
[NSApp activateIgnoringOtherApps:YES];
[window orderOut:nil];
return;
}
[NSApp activateIgnoringOtherApps:YES];
[window makeKeyAndOrderFront:nil];
…
1
vote
1answer
47 views
Hotkeys? Key events?
Hi,
I'm trying to make a window open when the user pressed Cmd + L but how can I make my controller object listen to that particular key combination?
1
vote
2answers
31 views
How to center NSSegmentedControl
Hi,
I've added an NSSegmentedControl to a pane on an horizontal split view on a normal window. I thought that adjusting the springs would make the segmented control centre itself automatically, but …
1
vote
2answers
70 views
Centering Windows on screen
Short and sweet: How can I tell Interface Builder to center a window on a user's screen? I've seen the positioning tool on the inspector, but eyeballing doesn't always land as squarely as I like. Is …
0
votes
0answers
77 views
Custom NSStatusItem with custom view - Use NSWindow, NSView, custom NSMenuItem?
I'm trying to create a LSUIElement app that behaves like Spotlight, CoverSutra and other apps of that type. I managed to create a custom NSStatusItem, which popups up an NSWindow but the problem is …
1
vote
2answers
72 views
Graying out an NSWindow’s content
I have an NSWindow with 2 NSViews (an NSSplitView and a custom NSView). Accessing the data to populate these views can take some time. During this period, I'd like to gray out the content of these …
0
votes
3answers
44 views
makeKeyAndOrderFront only does the latter.
I am trying to open one window from another using makeKeyAndOrderFront. The new window appears, but does not receive focus.
The code for the main window is:
#import "SecondWindowController.h"
…
0
votes
2answers
53 views
set custom length and width NSWindow
For my application I want to set a custom length and width for my NSWindow from within the application itself. I have everything set up (the NSTextfields) however I'm stumped with how I should do it. …
3
votes
1answer
111 views
Fade in/Fade out for MAAttachedWindow
I'm using Matt Gemmell's MAAttachedWindow (http://mattgemmell.com/source) with an NSStatusItem to display a custom view in the menu bar. I'm confused as to how to get it to fade in and fade out. …
0
votes
3answers
102 views
Why do I have to call showWindow on my NSWindowController twice on 10.5?
I've got a subclass of an NSWindowController that I'm using to load a window from a nib and show it on the screen. Below is the code that is called when I want to show the window. On 10.6 when …
1
vote
4answers
224 views
How to create a transparent window with non-rectangular buttons?
I am looking to make a custom window which would look something like this (never mind the quick photoshop):
The main problem I have is not to make the window transparent (although I guess any info …
1
vote
3answers
137 views
Dimming NSWindow and layer NSView on top
Is there any way I could dim my NSWindow (basically putting a black transparent layer over top of it that you cannot click through) and then layer a custom NSView on top?
1
vote
2answers
119 views
setOpaque:YES vs setBackgroundColor:[NSColor clearColor]
I'm going through a tutorial on drawing a custom [shaped] window with cocoa by subclassing NSWindow.
The tutorial states that in initializer developer should do the following:
[self setOpaque:NO];
…
