Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
1k views

Tips on NSApp’s ModalForWindow, NSAlert’s ModalForWindow, and ModalSession

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 ...
5
votes
2answers
150 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 ...
3
votes
1answer
728 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
228 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 ...
2
votes
1answer
58 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
0answers
19 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 ...
1
vote
1answer
474 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] ...
1
vote
2answers
949 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). ...
0
votes
1answer
22 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
25 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
27 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: ...
0
votes
1answer
46 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
82 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 ...
0
votes
0answers
38 views

Can't show NSPanel from LSUIElement Application

I'm trying to show a NSPanel when my application, a LSUIElement, detectes a change on the filesystem from the background. I've set the NSPanel's (self.uploadPopover) mask is NSNonactivatingPanelMask. ...
0
votes
0answers
43 views

Set webview active when click anywhere in a HUD (NSPanel) window

I have a webview in a HUD window. When I'm working in another application and would like to click on a button in the web view, the HUD window will become active, then I have to click again to actually ...
0
votes
1answer
56 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 = ...
0
votes
1answer
128 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 ...
0
votes
2answers
297 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
856 views

set NSWindow focused

I have an app winth one window and one panel, attached to this window. steps: 1.deactivate my app (app opened, but without the focus) 2.click on a button on panel (panel is focused now, but main ...
0
votes
0answers
130 views

NSImageView Opacity in HUD Panel

I am developing an app which uses a Panel with HUD Style set in Interface Builder. Everything looks fine, the window looks semitransparent and the white texts is shown correctly. But the problem i ...
0
votes
2answers
637 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?
0
votes
1answer
129 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 ...