Up
Authors
- Gregory John Casamento (
greg_casamento@yahoo.com
)
-
- Scott Christley (
scottc@net-community.com
)
-
Copyright: (C) 1996, 2003, 2004 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSDataLinkPanel.h
Availability: OpenStep
Description forthcoming.
Instance Variables
Method summary
+ (void)
getLink: (
NSDataLink**)link
manager: (
NSDataLinkManager**)linkManager
isMultiple: (BOOL*)flag;
Availability: OpenStep
Get the currently selected array of links and thier
respective managers. Return the whether or not
multiple links are selected in flag.
+ (void)
setLink: (
NSDataLink*)link
manager: (
NSDataLinkManager*)linkManager
isMultiple: (BOOL)flag;
Availability: OpenStep
Set the currently selected array of links and their
respective managers. If all of the given links
should be selected flag should be
YES
.
+ (
NSDataLinkPanel*)
sharedDataLinkPanel;
Availability: OpenStep
Initializes and returns the shared panel.
- (
NSView*)
accessoryView;
Availability: OpenStep
Add an accessory view to the panel.
- (void)
getLink: (
NSDataLink**)link
manager: (
NSDataLinkManager**)linkManager
isMultiple: (BOOL*)flag;
Availability: OpenStep
Get the currently selected array of links and thier
respective managers. Return the whether or not
multiple links are selected in flag.
- (void)
pickedBreakAllLinks: (id)sender;
Availability: OpenStep
Called when the user presses the Break All Links
button. Invokes breakAllLinks on the current link
manager.
- (void)
pickedBreakLink: (id)sender;
Availability: OpenStep
Called when the user presses the Break button.
Invokes break on the current link.
- (void)
pickedOpenSource: (id)sender;
Availability: OpenStep
Called when the user presses the Open Source button.
Invokes openSource on the current link.
- (void)
pickedUpdateDestination: (id)sender;
Availability: OpenStep
Called when the Update Destination button Invokes
updateDestination on the current link.
- (void)
pickedUpdateMode: (id)sender;
Availability: OpenStep
Called when the user selects an update mode from the
pull down. Invokes setUpdateMode: on the current link.
- (void)
setAccessoryView: (
NSView*)aView;
Availability: OpenStep
Get the accessory view.
- (void)
setLink: (
NSDataLink*)link
manager: (
NSDataLinkManager*)linkManager
isMultiple: (BOOL)flag;
Availability: OpenStep
Set the currently selected array of links and their
respective managers. If all of the given links
should be selected flag should be
YES
.
Instance Variables for NSDataLinkPanel Class
@protected NSView* _accessoryView;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected id _breakAllLinksButton;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected id _breakLinkButton;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSDataLink* _currentDataLink;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSDataLinkManager* _currentDataLinkManager;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected id _lastUpdateField;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected BOOL _multipleSelection;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected id _openSourceButton;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected id _sourceField;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected id _updateDestinationButton;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected id _updateModeButton;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
- Declared in:
- AppKit/NSDataLinkPanel.h
Availability: OpenStep
Description forthcoming.
Method summary
- (void)
orderFrontDataLinkPanel: (id)sender;
Availability: OpenStep
Order the data link panel to the front. If it has not
already been instantiated, instantiate it.
Up