Tagged Questions

4
votes
1answer
83 views

How to change the point to slide a (cocoa) custom sheet?

I would like to use in my Mac App a mainwindow with a title bar with custom height (like sparrow, twitter app, reader for mac and others). I´m using https://github.com/indragiek/INAppStoreWindow for ...
2
votes
1answer
143 views

Displaying a Cocoa Window as a Sheet in Xcode 4 (OSX 10.7.2) with ARC

I'm trying to get a Login Window to display as a sheet from my MainWindow, but whenever I try to implement the AppKit methods an error always pops up for various indistinguishable reasons. None of ...
1
vote
1answer
176 views

can't edit NSTextField in sheet at runtime

When clicking on a button, I'd like to display a sheet with an email+password prompt with options to save and cancel. The UI is all set up, the actions are in place, and the sheet appears and cancels ...
1
vote
1answer
52 views

Cocoa login sheet prevents the user from quitting the application

In my OSX Application I am using a sheet to allow the user to log in. If the user first starts the application the sheet is displayed and the user has to enter his information. Now as long as the ...
1
vote
4answers
6k views

Display WPF modal window/dialog/panel the same way as a NSWindow can be displayed like a sheet in Cocoa

I am looking for a way to display a modal window in WPF the same way as a window in Cocoa can be displayed as a sheet, i.e. it slides down from the titlebar in front of the main parent window. My ...
0
votes
1answer
209 views

NSApp beginSheet creates a sheet very briefly then disappears

[NSApp beginSheet] is used like so: [NSApp beginSheet:[testSheetController window] modalForWindow:[NSApp mainWindow] modalDelegate:nil didEndSelector:nil contextInfo:nil]; Upon ...
0
votes
1answer
117 views

Can a view controller own a sheet?

I want to call a sheet from within a view controller (user clicks on a button and the sheet will be displayed). Can the sheet have a separate window controller (with outlets and actions) or does the ...
0
votes
1answer
133 views

How to consume 'edit' event for NSTableView

Inside a NStableViewDelegate, I use a sheet window to begin a edit operation like this: - (BOOL)tableView:(NSTableView *)aTableView shouldEditTableColumn:(NSTableColumn *)aTableColumn ...
0
votes
1answer
88 views

Setting stringValue of textFiled on inactive sheet

Thanks for the help (again) When raising a sheet in my app I can easily set a default text string located on the sheet object by adding the necessary code that raises the sheet: [textField ...
0
votes
2answers
32 views

Quote Reply Edit Delete Currently Being Moderated Enable interaction with NSWindow when sheet is opened

I'm creating an app that calls a sheet, however, the interaction with the window must stay enabled while the sheet is open. Here's a mock-up: http://twitpic.com/3k382o The user must be able to use ...
0
votes
1answer
122 views

Cocoa / Objective-C : Return values from a sheet?

In my application I open a sheet window for user input. Because the window is complex and has a few textfields and a few buttons I created a separate controller for it (InputWindowController). When ...
0
votes
1answer
107 views

Call a sheet from within an alert causes weird window problems

I decided to use an alert sheet with 2 buttons. When the user clicks the continue button a sheet made from a window should come down. The sheet comes down and the parent window closes along with the ...
0
votes
1answer
809 views

App modal NSPanel / sheet / dialog + NSThread == window hangs?

I'm in the midst of debugging an extremely unusual problem, and I was wondering if anybody might have any insight into what might be going wrong: In a controller class from a NIB, I take an NSPanel ...