1.1 --- a/Framework/Source/GrowlApplicationBridge.h Tue Sep 11 19:36:44 2007 +0000
1.2 +++ b/Framework/Source/GrowlApplicationBridge.h Sat Sep 05 01:56:08 2009 -0700
1.3 @@ -165,40 +165,6 @@
1.4 clickContext:(id)clickContext
1.5 identifier:(NSString *)identifier;
1.6
1.7 -/*!
1.8 - * @method notifyWithTitle:description:notificationName:iconData:priority:isSticky:clickContext:identifier:
1.9 - * @abstract Send a Growl notification.
1.10 - * @discussion This is the preferred means for sending a Growl notification.
1.11 - * The notification name and at least one of the title and description are
1.12 - * required (all three are preferred). All other parameters may be
1.13 - * <code>nil</code> (or 0 or NO as appropriate) to accept default values.
1.14 - *
1.15 - * If using the Growl-WithInstaller framework, if Growl is not installed the
1.16 - * user will be prompted to install Growl. If the user cancels, this method
1.17 - * will have no effect until the next application session, at which time when
1.18 - * it is called the user will be prompted again. The user is also given the
1.19 - * option to not be prompted again. If the user does choose to install Growl,
1.20 - * the requested notification will be displayed once Growl is installed and
1.21 - * running.
1.22 - *
1.23 - * @param title The title of the notification displayed to the user.
1.24 - * @param description The full description of the notification displayed to the user.
1.25 - * @param notifName The internal name of the notification. Should be human-readable, as it will be displayed in the Growl preference pane.
1.26 - * @param iconData <code>NSData</code> object to show with the notification as its icon. If <code>nil</code>, the application's icon will be used instead.
1.27 - * @param priority The priority of the notification. The default value is 0; positive values are higher priority and negative values are lower priority. Not all Growl displays support priority.
1.28 - * @param isSticky If YES, the notification will remain on screen until clicked. Not all Growl displays support sticky notifications.
1.29 - * @param clickContext A context passed back to the Growl delegate if it implements -(void)growlNotificationWasClicked: and the notification is clicked. Not all display plugins support clicking. The clickContext must be plist-encodable (completely of <code>NSString</code>, <code>NSArray</code>, <code>NSNumber</code>, <code>NSDictionary</code>, and <code>NSData</code> types).
1.30 - * @param identifier An identifier for this notification. Notifications with equal identifiers are coalesced.
1.31 - */
1.32 -+ (void) notifyWithTitle:(NSString *)title
1.33 - description:(NSString *)description
1.34 - notificationName:(NSString *)notifName
1.35 - iconData:(NSData *)iconData
1.36 - priority:(signed int)priority
1.37 - isSticky:(BOOL)isSticky
1.38 - clickContext:(id)clickContext
1.39 - identifier:(NSString *)identifier;
1.40 -
1.41 /*! @method notifyWithDictionary:
1.42 * @abstract Notifies using a userInfo dictionary suitable for passing to
1.43 * <code>NSDistributedNotificationCenter</code>.