The NSPanel class implements a special kind of window (known as a panel), typically performing an auxiliary function.
0
votes
1answer
16 views
How to prevent mouse event when a sheet display?
I found that the NSView's rightMouseUp could still be active when a sheet display.I used this code.
[NSApp beginSheet:editPanel modalForWindow:window
modalDelegate:self
...
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 = ...
1
vote
0answers
27 views
Is it possible to turn NSNonactivatingPanelMask on and off on an NSPanel
I understand that this use case is atypical, but I've been trying to figure out a way to make an NSPanel non-activating, only in some circumstances.
If an NSPanel is initialized with ...
0
votes
1answer
64 views
Cocoa: Close the app when a HUD panel is closed
I need to close the entire app when the user click on a Panel close button,
I tried:
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication {
return YES;
}
but ...
0
votes
2answers
80 views
How to avoid deallocating a NSPanel when closed by the user
I am developing a small and simple status menu application.
There is a menu and when the user clicks on it, a HUD window (NSPanel) should appear.
This is how I show the panel:
[hudWindow ...
0
votes
2answers
71 views
How to make it from top ? (Cocoa sheet)
I have implemented my sheet (NSPanel) with the following method:
- (void)showInWindow:(NSWindow *)mainWindow {
if (!finestra1)
[NSBundle loadNibNamed:@"XibName" owner:self];
[NSApp ...
0
votes
1answer
260 views
How to create a NSPanel modally popuped from NSWindow (Cocoa programming)
like NSPanel displayed after a button clicked in the NSWindow.
I looked for a lot but there is no simple example.
Thanks for any help.
1
vote
1answer
77 views
NSPanel has black background and text is invisible
I'm trying to make a configure sheet appear for a ScreenSaverView subclass. After a long battle with Xcode, I'm finally getting the configure sheet to appear when "Screen Saver Options" is clicked in ...
0
votes
0answers
87 views
NSPanels disappearing when “Agent” application launched in background
I used the Cocoa "Status Bar" tutorial (http://cocoatutorial.grapewave.com/tag/status-bar/) as a starting point in an attempt to build myself an agent that only appears as a StatusItem.
This ...
4
votes
1answer
98 views
Why my NSPanel doesn't have background of gray color as normal?
My app has an icon in the menubar. A NSPanel shows up when I click the icon. But why does the NSPanel not have a background color like other having gray background NSWindow? My NSPanel's background ...
1
vote
1answer
107 views
In Interface builder, how can I add a custom button to a window title bar?
In my OS X app, using Interface Builder, I have a window that looks like this:
I'd like to add a button to the right-hand side, to achieve this:
If this is possible, how can I do it?
1
vote
1answer
87 views
Switching NSWindows
I have two NSWindows, both with an NSPanel in them. I want to switch windows when a button is pressed. How can this be done? I don't need the old window any more so I just want to show the new one.
0
votes
1answer
84 views
Custom Window Style in Cocoa
OK, this is what I'm trying to do :
I have a custom NSPanel subclass
I want the NSPanel to be borderless (NO title - I'm drawing a titlebar myself) AND resizeable
The thing is that :
once I set ...
0
votes
1answer
122 views
Prevent Escape key from closing an NSPanel with a close box
Does anyone know the best way to prevent an escape key from closing an NSPanel when it's the key window? My panel is a child window and I want it to behave a little more like semi-permanent part of ...
1
vote
1answer
182 views
Is it possible to have focus on an NSPanel without losing focus of other background windows?
I have a custom NSPanel: http://cl.ly/K8SY
I have it set to NSPopUpMenuWindowLevel, the level at which I want it to stay as. An example is the spotlight menu, when you click on it any other focus in ...
0
votes
1answer
61 views
Making a palette permanently active/focused?
Is there a simple way that I can make my application's floating tool palettes permanently active? They are all relevant to the open document, so there is no reason for them to be inactive at any point ...
0
votes
0answers
31 views
Make NSPanel appear on all spaces
In OS X, is there a way to make a NSPanel appear on all spaces (a similar feature is common in Linux)?
Alternatively, is there at least a way to display my NSPanel in Expose etc., and make it able to ...
0
votes
1answer
72 views
Can't hide NSFontPanel on application launch
I'm creating a feature for my application where I want to use the NSFontPanel.
I don't want to have a "Font" menu in my application.
Opening and closing the font panel when a menu item is clicked is ...
1
vote
0answers
50 views
Is this panel brought up correctly?
I'm running xcode 4.2 on Snow Leopard. I am trying to bring up a panel in a Mac application that will display alongside the main window. Here's the code for that:
- ...
0
votes
0answers
102 views
Launching a custom panel from a menulet
moderate newbie here, so please forgive me if I'm missing something basic. I did my best to search for an answer, but couldn't find something that matched what I'm doing.
I'm making a menulet (using ...
0
votes
1answer
74 views
Trying to get an NSPanel from one class to be viewed in a different class?
I've got:
MyWindowController.h
MyWindowController.m
HistoryController.h
HistoryController.m
In MyWindowController.h, there is:
IBOutlet NSPanel* viewInvoice;
And later on:
- ...
1
vote
1answer
130 views
about panel in menubar application is not frontmost when activated
I have an application that lives in the menubar, without a main menu or dock icon. I have a button that triggers [NSApp orderFrontStandardAboutPanel:sender];. When that button is clicked, sometimes, ...
2
votes
2answers
389 views
Cocoa: NSPanel loses parent and other strange behaviour
I have an issue with an NSPanel acting strangely and have created a Sample App to demonstrate this behaviour.
The App was generated from Xcode 4's template and simply creates a panel and then opens ...
0
votes
1answer
119 views
NSPanel loses focus although being modal
I have a strange problem with one of my NSPanels. Starting up my application, I use a simple panel with only an NSTextField and an NSButton to get the player's name. Working on some other stuff on my ...
0
votes
1answer
90 views
Display a sheet but still let my main app do work
The loadFile method starts a NSTimer to load an process a file over time without blocking the application in a while loop. This timer is not firing with the first bit of code, and is with the second ...
0
votes
1answer
153 views
NSPanel Popping up in the wrong space
So, I'm looking through this source, trying to make one of those status bar applications with a custom popover using an NSPanel -
All works fine and dandy. Clicking the menulet calls [panel ...
0
votes
1answer
144 views
Custom Sheet : can't click buttons
I used this source http://www.cats.rwth-aachen.de/library/programming/cocoa
to create my custom sheet.
I created a NSPanel object in existing .xib file and connected with IBOutlet
My source code:
...
3
votes
2answers
219 views
Tabs in iWork-style Inspector panel
how does one get the look of the tab buttons as they appear in iWork '09 Inspector NSPanel?
Closest I could get is NSSegmentedControl with "Small Square" style. Unfortunately, at least under Snow ...
0
votes
1answer
507 views
How to tell when NSPanel gets focus or becomes key?
I am writing a Cocoa/Objective-C app in XCode4, and I need to know when my preferences panel is opened. I need some callback like windowDidBecomeKey; I attempted to follow the solution provided in ...
5
votes
2answers
388 views
NSPanel with “Title Bar” unchecked in Interface Builder does not appear
So I thought I had covered my bases, but apparently I'm missing a key step or two.
I have an NSPanel that is displayed (makeKeyAndOrderFront:) when an NSStatusItem is pressed. Things work great, but ...
1
vote
1answer
191 views
Changing the titlebar height in an NSPanel
I'm trying to change the titlebar height of an NSPanel. I tried the following but it didn't work as expected:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
NSRect f = ...
1
vote
0answers
55 views
Resusing a panel for multiple documents in a document based application
I'm creating a Document-Based Applications and I'd like to use a single NSPanel that is reused across multiple open documents.
I should be able to change settings in the NSPanel for the first open ...
0
votes
1answer
294 views
Initializing Controls in NSPanel
I've got an NSPanel in my app that I use as a data export feature.
How do I initialize the controls in the panel when it's initially displayed? (i.e. using NSDefaults). There doesn't seem to be an ...
2
votes
1answer
105 views
Moving NSPanel by background with some NSViews on it
I have a NSPanel. When the panel is empty, is moves well with holding and dragging it's background. However, If I put something on it, the area covered by new view won't be draggable anymore. As an ...
1
vote
2answers
638 views
HUD NSPanel less transparent
I've been searching for the web but I have not encountered the way to change the HUD's transparency (ALL the panel transparency, including title bar). It's possible to change it?
Thx
0
votes
1answer
3k views
set NSWindow focused
I have an app winth one window and one panel, attached to this window.
steps:
deactivate my app (app opened, but without the focus)
click on a button on panel (panel is focused now, but main window ...
18
votes
1answer
3k views
Tips on NSApp’s ModalForWindow, NSAlert’s ModalForWindow, and ModalSession [closed]
It took me quite a bit of experimentation to clear up some confusion over Objective-C’s “ModalForWindow” language and, subsequently, how to use a modal session. Maybe the following tips will save ...
3
votes
2answers
1k views
Make NSView in NSPanel first responder without key window status
Is it possible to give an NSView inside an NSPanel first responder status without giving the NSPanel key window status (making the main application window resign key)?
Thanks.
3
votes
1answer
323 views
Is it possible to use the blur behind Core Animation(effect) on an NSPanel?
The context menu from dock items is not only translucent but also blurs the contents behind it, Is this effect availible for translucent floating panels? This is the same effect used in Sheet Alert ...
1
vote
2answers
2k views
How to create a float window floating above all other windows just like twitter?
The twitter app has a float window when you click the contextual menu "Tweet",is it a NSPanel?
How to?
3
votes
1answer
1k views
Create a HUD window programmatically
I need to create a HUD-like window programmatically when the user press on my main view. Here's the code I use, but I only get a standard window.
videoWindow= [[NSPanel alloc]
...
0
votes
1answer
243 views
Sheets and long running tasks
I need to run a complex (ie long) task after the user clicks on a button.
The button opens a sheet and the long running operation is started using dispatch_async and other Grand Central Dispatch ...
2
votes
2answers
2k views
EXC_BAD_ACCESS invoking a block
UPDATE | I've uploaded a sample project using the panel and crashing here: http://w3style.co.uk/~d11wtq/BlocksCrash.tar.gz (I know the "Choose..." button does nothing, I've not implemented it yet).
...

