Methods which may be optionally implemented by the Growl delegate when used with Growl-WithInstaller.framework.
The methods in this informal protocol will only be called if implemented by the delegate. They allow greater control of the information presented to the user when installing or upgrading Growl from within your application when using Growl-WithInstaller.framework.
growlInstallationInformation |
Return the information to display when installing.
- (NSAttributedString *)growlInstallationInformation;
This information may be as long or short as desired (the window
will be sized to fit it). It will be displayed to the user as an
explanation of what Growl is and what it can do in your application. It
should probably note that no download is required to install.
If this is not implemented, Growl will use a default, localized explanation.
growlInstallationWindowTitle |
Return the title of the installation window.
- (NSString *)growlInstallationWindowTitle;
If not implemented, Growl will use a default, localized title.
growlUpdateInformation |
Return the information to display when upgrading.
- (NSAttributedString *)growlUpdateInformation;
This information may be as long or short as desired (the window
will be sized to fit it). It will be displayed to the user as an
explanation that an updated version of Growl is included in your
application and no download is required.
If this is not implemented, Growl will use a default, localized explanation.
growlUpdateWindowTitle |
Return the title of the upgrade window.
- (NSString *)growlUpdateWindowTitle;
If not implemented, Growl will use a default, localized title.
© The Growl Project (Last Updated May 14, 2005)