Tagged Questions
NSApplication is the central class in Apple's AppKit framework.
6
votes
1answer
509 views
Cocoa: integrate NSApplication into an existing c++ mainloop
I know, that I am not the first one to try to use Cocoa on OSX together with an existing c/c++ mainloop, but I am not really liking the solutions I came across so far so I came up with a different ...
4
votes
1answer
170 views
In Apple's Cocoa API, why is it important that NSApplicationMain be called from the main thread?
In the documentation for NSApplicationMain, it says:
Creates the application, loads the main nib file from the application’s main bundle, and runs the application. You must call this function from ...
4
votes
2answers
819 views
How to know if a NSWindow is fullscreen in Mac OS X Lion?
I guess I should check if [NSApplication presentationOptions] contains NSFullScreenModeApplicationPresentationOptions, but how do I achieve that?
EDIT: using [NSApplication presentationOptions] ...
4
votes
4answers
489 views
Click-through buttons and not raising the window
The iTunes mini-player (to give just one example) supports click-through where the application isn't brought to the front when the play/pause and volume controls are used.
How is this done?
I've ...
3
votes
1answer
123 views
Why sendAction: doesn't work while performSelector: does?
I have a custom class that supports the target-action mechanism but oddly in this specific case, when I try to call the action by executing:
[NSApp sendAction:action_ to:target_ from:self]
it ...
3
votes
1answer
1k views
How to programmatically make cocoa application active
I've got a background process that makes a transparent window appear when a hotkey is pressed:
[window makeKeyAndOrderFront:nil];
[[content animator] setAlphaValue:1.0]; // alpha was 0.0
... the ...
2
votes
1answer
70 views
Aren't I allowed to override -sendEvent: in my NSApplication subclass?
In my mac os x app, I subclass NSApplication and override it's -sendEvent: method. Apple complains :
The app includes 'OBJC_IVAR_$_NSApplication._delegate' from the framework ...
2
votes
1answer
57 views
Get Application badge of running applications
I'm not sure if this is possible, but I want to get the application badges of other running applications. So I'd like to get the text from Mail's badge or other apps like Adium. I've looked in ...
2
votes
1answer
124 views
How can a Mac app determine the method used to launch it?
I have a Mac OS X application that is also a protocol handler (just as, for example, Safari is a protocol handler for the HTTP and HTTPS protocols). So when a user clicks a link of the form ...
2
votes
1answer
1k views
Cocoa: NSApp beginSheet sets the application delegate?
I am trying to display a custom sheet in my application, but I think I am doing something wrong. While everything seems to be working just fine, I have a rather odd side-effect. (which took hours to ...
2
votes
5answers
819 views
Cocoa: int main function
I'm curious, what role does the int main function play in a Cocoa program? Virtually all of the sample code I've been looking at has only the following code in main.m:
#import <Cocoa/Cocoa.h>
...
2
votes
2answers
677 views
Disabling/enabling an application menu item
In trying to learn the very fundamentals of menu handling. My test app's menubar has 3 menus -- namely "TestApp", "File" and "Help". I find I can remove these menus entirely, simply by calling say:
...
1
vote
0answers
61 views
Cocoa NSApplication not active but receiving mouse events
I'm having a weird issue where I click away from my window. It resigns main and key. Then I click back to it and the view that was clicked on does not respond to the mouse click. But the second ...
1
vote
1answer
82 views
Initiating systemStatusBar doesn't work in applicationDidFinishLaunching
My project is document-based, and the code to load a status menu is only executed if I put it under awakeFromNib.
#import "StatusMenuAppDelegate.h"
@implementation StatusMenuAppDelegate
@synthesize ...
1
vote
0answers
60 views
Minimize all window in mac but every time one window is active
I have added a code to minimize all the running application on NSStatusItem, its a very simple code
[[NSWorkspace sharedWorkspace] hideOtherApplications];
But when i run this application then one ...
1
vote
2answers
121 views
How to connect a menu item to a custom action defined in the NSApplication delegate across nib files?
In my Cocoa app I have two NIB/XIB files that I need to connect:
MainMenu.xib: contains a custom object for the NSApplication delegate object and connects it to the proper outlet in the ...
1
vote
0answers
57 views
Getting the path of ALL the files dropped onto a Mac's dock icon
I'm trying to use the NSApplicationDelegate and the openFiles method to try grabbing the path of a list of random files users would drop on my (Cocoa) App's dock icon.
My solution works flawlessly ...
1
vote
1answer
43 views
Document sheet not responding to keyboard events
I think it's a first responder problem, but I'm not sure. I'm implementing an edit window for data in a table view. Very similar in concept to the UI for editing filter rules in Mail.app.
I have an ...
1
vote
2answers
88 views
PYObjC NSWindow is NoneType?
window = NSApplication.sharedApplication().mainWindow()
window.contentView().addSubview_(chart_view)
The window was made in another section and appears fine but I get this:
:
'NoneType' ...
1
vote
2answers
224 views
Creating NSApplication in cocoa?
I've been searching for quite a while now but simply can't find anything, I already have window which I can create, but now when I tried to call makeKeyAndOrderFront for it, there was no application ...
1
vote
1answer
246 views
NSApplication Delegate Question
I was wondering if - (void)applicationWillTerminate:(NSNotification *)notification is still called when the system shuts down and the application is told to quit.
I'm working on an agent that needs ...
1
vote
1answer
341 views
How do I run code when a user agent process terminates?
What I want
I want a helper app user agent (LSUIElement in Info.plist is True) to add itself to the login items on terminate.
The Problem
I can't get any code to run before the helper app process ...
1
vote
1answer
443 views
NSApplication resigning front most application status: hide v. deactivate
I've got an application that needs to become the front most application after a timer expires and resign the front most status when the timer is started by pressing a button, e.g.
click "start ...
1
vote
1answer
94 views
Dragging Files to NSStatusItem
I was told that the application:openFile: delegate method for NSApp would allow my application to open files by dropping them into the dock, but does this also apply to NSStatusItems in the menu bar? ...
1
vote
1answer
1k views
How to implement custom NSApplication terminate: behavior in Cocoa?
I'm attempting to implement custom termination behavior in a Cocoa application. Normally when my application exits gracefully, it performs final-runtime database cleanup and then exits. This occurs ...
1
vote
2answers
463 views
NSApplication orderFrontStandardAboutPanel: Making my about panel slightly less standard
What are my options, if any, of adding additional, arbitrary data to the standard Cocoa about dialog that is displayed by an NSApplication when it receives a orderFrontStandardAboutPanel message.
1
vote
2answers
432 views
Any good way to set the exit status of a Cocoa application?
I have a Cocoa app which interacts with a server and displays a GUI. If there is a fatal error, I display an alert and exit. I'd like to set the exit status to a non-zero value to reflect that an ...
0
votes
0answers
8 views
Minimize-in-place - Do I need a custom framework
I want to create a system wide minimize-in-place feature that occurs when double-clicking the title bar of any visible window in layer 0.
It seems that this would be a really simple feature to ...
0
votes
0answers
9 views
NSDocument, occasional crash when closing windows
I have a document-based application with two windows for each document, and an NSWindowController subclass for each of them.
My problem is that I regularly have an EXC_BAS_ACCESS error in the ...
0
votes
1answer
30 views
NSApplicationPresentationOptions doesn't work with FIREBREATH
I am trying to customize user experience from the plugin I am working on, my goal is to provide a kiosk style using the options available in COCOA NSApplication, the code is like following:
// Hide ...
0
votes
1answer
52 views
Creating status item - icon shows up, menu doesn't
In a document-based project I am trying to create a status menu. I have a singleton class that builds the status bar, and I am initiating it from an application delegate, as you can see. When I run ...
0
votes
2answers
44 views
Start Cocoa app without showing the main window
I have a simple Cocoa app with a single NSWindow where I can enter some credentials and after the submission the app starts an another process. In case the credentials were entered once and cached I ...
0
votes
1answer
52 views
Not displaying Mouse cursor
I am developing Mac desktop application, where i am capturing the screen using
CGImageRef screenShot = CGWindowListCreateImage(CGRectInfinite, kCGWindowListOptionAll, kCGNullWindowID, ...
0
votes
0answers
48 views
Fire up Cocoa GUI from C++ loop and also passing references
I have a problem... maybe a couple :)
My team has written a client in C++ using Boost and CMake to take care of the platform dependent stuff. Works like a charm! ...sometimes :) Anyway the graphical ...
0
votes
1answer
47 views
Cocoa Dock fires NSApplicationDidChangeScreenParametersNotification
When changing the dock position Cocoa is firing a NSApplicationDidChangeScreenParametersNotification:
The problem is that as for Apple Docs, it should be raised only when
Posted when the ...
0
votes
1answer
124 views
Get NSWindow from kCGWindowNumber
From kCGWindowNumber, how do I get NSWindow ref.
I tried using
[NSApp windowWithWindowNumber:windowNumber]
but I always get a null value.
I need to get the NSWindow to apply [window ...
0
votes
1answer
131 views
NSApplication vs UIApplication
What Is the difference between UIApplication and NSApplication? (As I am not getting it from their documentation...)
Can someone give me some useful links for detailed explanation about their ...
0
votes
0answers
74 views
NSApplication clean shutdown with boost::mutex (and c++ globals in general)
I know that NSApplication does not finish the main() function and thus you should call all your clean up code from applicationWillTerminate delegate function. That generally works but imagine the ...
0
votes
1answer
77 views
Responding to “Hide Others” Mac OS X
I am looking for a notification or callback that is similar to NSWorkspaceDidHideApplicationNotification for when a user chooses "Hide Others" in any running application. I was wondering if anyone ...
0
votes
2answers
488 views
How to quit Application after last window close
I want to close my application when last main window closes. I can not use applicationShouldTerminateAfterLastWindowClosed: for the following reason:
1. Before showing main window one confirmation ...
0
votes
2answers
96 views
How do I initialize a window in Objective-C?
For a Mac graphics application (not iPhone), I need something like a main method in Java, the first method that gets a program going. I've been looking at things like NSViewController and NSWindow ...
0
votes
0answers
31 views
How do i delay a service answer in Cocoa
I'm writing a text editor that can be activated via service. Is there a way to make the calling application wait for my editor to finish its task and then insert my editor's result?
I tried waiting ...
0
votes
0answers
259 views
NSApplication runModalForWindow: and then calling [myWindow close]
if I open a window with [NSApp runModalForWindow:myWindow] and then on the close button action, I first do a [myWindow close] and then a [NSApp stopModal] what should happen?
I was getting some ...
0
votes
1answer
115 views
GNUStep Undefined reference
I am making a program in GNUStep on windows with the following code:
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
int main(int argc, char *argv[]) {
NSApplication ...
0
votes
2answers
85 views
osx and objc - running a second run loop for a plugin?
C programmer here. I'm trying to make a plugin to a running OSX app open its own window, accept a button press, close the window and come back to the plugin - not quit the app.
I've been able to get ...
0
votes
2answers
201 views
Building Mac OS X App instead of console
I have a port of my application, a game, running on Mac OS X. I build with make, and only added a few .mm files to access the necessities from NSApplication, NSWindow and NSOpenGLView.
How do I ...
0
votes
1answer
1k views
Cocoa: Call App Delegate Method from another Class
I'm currently trying to get the path of a file from a drag and drop operation inside of a custom view, and then pass that path to my app delegate. I'm currently using the following:
- ...
0
votes
1answer
399 views
What does NSApp hide: actually do with the NSWindow instances?
I'm working on an NSWindow subclass and I'm running into some strange behavior that makes me question some of my assumptions about how windows work on Mac OS X.
What precisely happens to NSWindow ...
0
votes
1answer
320 views
NSApplication endSheet: has no effect
Ok, this is really stumping me:
I create a modal sheet on a window as
-(IBAction) login: (id) sender {
[NSApp beginSheet:loginWindow
modalForWindow:window
modalDelegate:nil
...
0
votes
1answer
893 views
how to terminate cocoa app in applicationWillFinishLaunching delegate
I have to show the custom license Agreement dialog to the user before they start using my application.So, i have added new window in my mainMenu.xib and showing that window modally using
[NSApp ...