#import <CPApplication.h>
Class Methods | |
(CPString) | + defaultThemeName |
(CPApplication) | + sharedApplication |
Class Methods inherited from CPObject | |
(BOOL) | + accessInstanceVariablesDirectly |
(id) | + alloc |
(id) | + allocWithCoder: |
(BOOL) | + automaticallyNotifiesObserversForKey: |
(void) | + cancelPreviousPerformRequestsWithTarget: |
(void) | + cancelPreviousPerformRequestsWithTarget:selector:object: |
(Class) | + class |
(BOOL) | + conformsToProtocol: |
(void) | + exposeBinding: |
(void) | + initialize |
(IMP) | + instanceMethodForSelector: |
(BOOL) | + instancesImplementSelector: |
(BOOL) | + instancesRespondToSelector: |
(BOOL) | + isBindingExclusive: |
(BOOL) | + isSubclassOfClass: |
(CPSet) | + keyPathsForValuesAffectingValueForKey: |
(void) | + load |
(id) | + new |
(void) | + object:performSelector:withObject:afterDelay:inModes: |
(void) | + setVersion: |
(Class) | + superclass |
(int) | + version |
CPApplication is THE way to start up the Cappuccino framework for your application to use. Every GUI application has exactly one instance of CPApplication (or of a custom subclass of CPApplication). Your program's main() function can create that instance by calling the CPApplicationMain
function. A simple example looks like this:
function main(args, namedArgs) { CPApplicationMain(args, namedArgs); }
-(void)applicationDidFinishLaunching:(CPNotification)aNotification; Sent from the notification center after the app initializes, but before receiving events.
aNotification | contains information about the event |
-(void)applicationWillFinishLaunching:(CPNotification)aNotification; Sent from the notification center before the app is initialized.
aNotification | contains information about the event |
Definition at line 2 of file CPApplication.h.
|
implementation |
Aborts the event loop started by -runModalForWindow
:
Definition at line 551 of file CPApplication.j.
|
implementation |
Definition at line 440 of file CPApplication.j.
|
implementation |
Returns the application icon image. By default this is pulled from the CPApplicationIcon key of info.plist.
Definition at line 320 of file CPApplication.j.
|
implementation |
Returns and array of slash seperated arugments to your application. These values are pulled from your window location hash.
For exampled if your application loaded:
index.html#280north/cappuccino/issues
The follow array would be returned:
["280north", "cappuccino", "issues"]
Definition at line 1062 of file CPApplication.j.
|
implementation |
Sets up a modal session with theWindow
.
aWindow | the window to set up the modal session for |
Definition at line 560 of file CPApplication.j.
|
implementation |
Displays a window as a sheet.
aSheet | the window to display as a sheet |
aWindow | the window that will hold the sheet as a child |
aModalDelegate | |
didEndSelector | |
contextInfo |
Definition at line 992 of file CPApplication.j.
|
implementation |
Returns the last event recieved by your application.
Definition at line 977 of file CPApplication.j.
|
implementation |
Definition at line 453 of file CPApplication.j.
|
implementation |
Definition at line 1245 of file CPApplication.j.
|
implementation |
Returns the application's delegate. The app can only have one delegate at a time.
Definition at line 212 of file CPApplication.j.
|
implementation |
If the delegate responds to the given selector it will call the method on the delegate, otherwise the method will be passed to CPResponder.
Reimplemented from CPResponder.
Definition at line 664 of file CPApplication.j.
|
implementation |
Ends a sheet and sends the return code "0".
sheet | - The CPWindow object (sheet) that should be dismissed. |
Definition at line 1041 of file CPApplication.j.
Ends a sheet modal. The following are predefined return codes:
CPRunStoppedResponse CPRunAbortedResponse CPRunContinuesResponse
sheet | - The window object (sheet) to dismiss. |
returnCode | - The return code to send to the delegate. You can use one of the return codes above or a custom value that you define. |
Definition at line 1019 of file CPApplication.j.
|
implementation |
This method is called by -run
before the event loop begins. When it successfully completes, it posts the notification CPApplicationDidFinishLaunchingNotification. If you override -finishLaunching
, the subclass method should invoke the superclass method.
Definition at line 223 of file CPApplication.j.
|
implementation |
Definition at line 721 of file CPApplication.j.
|
implementation |
Definition at line 471 of file CPApplication.j.
|
implementation |
Initializes the Document based application with basic menu functions. Functions are New
, Open
, Undo
, Redo
, Save
, Cut
, Copy
, Paste
.
Reimplemented from CPObject.
Definition at line 129 of file CPApplication.j.
|
implementation |
Definition at line 466 of file CPApplication.j.
|
implementation |
Returns the key window.
Definition at line 675 of file CPApplication.j.
|
implementation |
Returns the application's main menu
Definition at line 730 of file CPApplication.j.
|
implementation |
Returns the main window.
Definition at line 683 of file CPApplication.j.
|
implementation |
Returns the window for the current modal session. If there is no modal session, it returns nil
.
Definition at line 589 of file CPApplication.j.
|
implementation |
Returns a dictionary of the window location named arguments. For example if your location was:
index.html?owner=280north&repo=cappuccino&type=issues
a CPDictionary with the keys:
owner, repo, type
and respective values:
280north, cappuccino, issues
Will be returned.
Definition at line 1149 of file CPApplication.j.
|
implementation |
Returns an array of visible CPWindow objects, ordered by their front to back order on the screen.
Definition at line 712 of file CPApplication.j.
|
implementation |
|
implementation |
Opens the standard about panel with no options.
Definition at line 335 of file CPApplication.j.
|
implementation |
Opens the standard about panel. This method takes a single argument options
. Options is a dictionary that can contain any of the following keys:
ApplicationName - The name of your application. ApplicationIcon - Application icon image. Version - The full version of your application ApplicationVersion - The shorter version number of your application. Copyright - Human readable copyright information.
If you choose not the include any of the above keys, they will default to the following respective keys in your info.plist file.
CPBundleName CPApplicationIcon (through a call to -applicationIconImage, see documentation for that method for more details) CPBundleVersion CPBundleShortVersionString CPHumanReadableCopyright
options | - A dictionary with the aboe listed keys. You can pass nil to default to your plist values. |
Definition at line 364 of file CPApplication.j.
|
implementation |
Definition at line 431 of file CPApplication.j.
|
implementation |
Calls -finishLaunching
method which results in starting the main event loop.
Definition at line 480 of file CPApplication.j.
|
implementation |
Starts a modal event loop for aWindow
aWindow | the window to start the event loop for |
Definition at line 499 of file CPApplication.j.
|
implementation |
Runs a modal session
CPModalSession | the session to run |
Definition at line 569 of file CPApplication.j.
|
implementation |
Sends an action to a target.
anAction | the action to send |
aTarget | the target for the action |
aSender | the action sender |
YES
Definition at line 804 of file CPApplication.j.
|
implementation |
Dispatches events to other objects.
anEvent | the event to dispatch |
Definition at line 608 of file CPApplication.j.
|
implementation |
Sets the applications icon image. This image is used in the default "About" window. By default this value is pulled from the CPApplicationIcon key in your info.plist file.
anImage | - The image to set. |
Definition at line 311 of file CPApplication.j.
|
implementation |
Sets the arguments of your application. That is, set the slash seperated values of an array as the window location hash.
For example if you pass an array:
["280north", "cappuccino", "issues"]
The new window location would be
index.html#280north/cappuccino/issues
args | - An array of arguments. |
Definition at line 1087 of file CPApplication.j.
|
implementation |
Fires a callback function when an event matching a given mask occurs.
If multiple callbacks are set which match the same event, later callbacks take priority over earlier callbacks, unless a new callback is set while an existing callback is being processed in which case it's given the same priority as the currently processing callback.
aCallback | A js function to be fired. aMask An event mask for the next event. |
anExpiration | The date for which this callback expires (not implemented). |
inMode | (not implemented). |
shouldDequeue | YES to remove the event from the queue after calling the callback, NO to deliver it normally. |
Definition at line 947 of file CPApplication.j.
|
implementation |
Sets the delegate for this application. The delegate will receive various notifications caused by user interactions during the application's run. The delegate can choose to react to these events.
aDelegate | the delegate object |
Definition at line 154 of file CPApplication.j.
|
implementation |
Sets the main menu for the application
aMenu | the menu to set for the application |
Definition at line 739 of file CPApplication.j.
|
implementation |
Reimplemented from CPResponder.
Definition at line 744 of file CPApplication.j.
|
implementation |
Assigns a target and action for the next event matching a given event mask. The callback method called will be passed the CPEvent when it fires.
If multiple callbacks are set which match the same event, later callbacks take priority over earlier callbacks, unless a new callback is set while an existing callback is being processed in which case it's given the same priority as the currently processing callback.
aTarget | The target object for the callback. |
aSelector | The selector which should be called on the target object. |
aMask | The mask for a given event which should trigger the callback. |
anExpiration | The date for which the callback expires (not implemented). |
aMode | (not implemented). |
shouldDequeue | YES to remove the event from the queue after calling the callback, NO to deliver it normally. |
Definition at line 969 of file CPApplication.j.
|
implementation |
Synthesized accessor method.
Provided by category CPApplication(CPSynthesizedAccessors).
Definition at line 1502 of file CPApplication.j.
|
implementation |
Returns the singleton instance of the running application. If it doesn't exist, it will be created, and then returned.
Definition at line 116 of file CPApplication.j.
|
implementation |
Stops the modal event loop
Definition at line 543 of file CPApplication.j.
|
implementation |
Stops the event loop started by -runModalForWindow
: and sets the code that -runModalForWindow
: will return.
aCode | the return code for the modal event |
Definition at line 509 of file CPApplication.j.
|
implementation |
Looks for a target that can handle the specified action. Checks for a target in the following order:
anAction | the action to handle |
nil
if no match could be found Definition at line 905 of file CPApplication.j.
|
implementation |
Finds a target for the specified action. If the action is nil
, returns nil
. If the target is not nil
, aTarget
is returned. Otherwise, it calls -targetForAction
: to search for a target.
anAction | the action to find a target for |
aTarget | if not nil , this will be returned not used |
Definition at line 827 of file CPApplication.j.
|
implementation |
Definition at line 287 of file CPApplication.j.
|
implementation |
Synthesized accessor method.
Provided by category CPApplication(CPSynthesizedAccessors).
Definition at line 1494 of file CPApplication.j.
|
implementation |
Tries to perform the action with an argument. Performs the action on itself (if it responds to it), then tries to perform the action on the delegate.
anAction | the action to perform. |
anObject | the argument for the action method |
YES
if the action was performed Reimplemented from CPResponder.
Definition at line 779 of file CPApplication.j.
|
implementation |
Returns an array of the application's CPWindows
Definition at line 703 of file CPApplication.j.
|
implementation |
Returns the CPWindow object corresponding to aWindowNumber
.
Definition at line 691 of file CPApplication.j.