Up

NSDataLinkPanel

Authors

Gregory John Casamento (greg_casamento@yahoo.com)
Scott Christley (scottc@net-community.com)

Copyright: (C) 1996, 2003, 2004 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the NSDataLinkPanel class
  2. Software documentation for the NSApplication(NSDataLinkPanel) category

Software documentation for the NSDataLinkPanel class

NSDataLinkPanel : NSPanel

Declared in:
AppKit/NSDataLinkPanel.h
Conforms to:
NSCoding
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


Instance Variables

Method summary

getLink: manager: isMultiple: 

+ (void) getLink: (NSDataLink**)link manager: (NSDataLinkManager**)linkManager isMultiple: (BOOL*)flag;
Availability: Not in OpenStep/MacOS-X

Get the currently selected array of links and thier respective managers. Return the whether or not multiple links are selected in flag.


setLink: manager: isMultiple: 

+ (void) setLink: (NSDataLink*)link manager: (NSDataLinkManager*)linkManager isMultiple: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X

Set the currently selected array of links and their respective managers. If all of the given links should be selected flag should be YES.


sharedDataLinkPanel 

+ (NSDataLinkPanel*) sharedDataLinkPanel;
Availability: Not in OpenStep/MacOS-X

Initializes and returns the shared panel.


accessoryView 

- (NSView*) accessoryView;
Availability: Not in OpenStep/MacOS-X

Add an accessory view to the panel.


encodeWithCoder: 

- (void) encodeWithCoder: (NSCoder*)aCoder;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


getLink: manager: isMultiple: 

- (void) getLink: (NSDataLink**)link manager: (NSDataLinkManager**)linkManager isMultiple: (BOOL*)flag;
Availability: Not in OpenStep/MacOS-X

Get the currently selected array of links and thier respective managers. Return the whether or not multiple links are selected in flag.


initWithCoder: 

- (id) initWithCoder: (NSCoder*)aDecoder;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


pickedBreakAllLinks: 

- (void) pickedBreakAllLinks: (id)sender;
Availability: Not in OpenStep/MacOS-X

Called when the user presses the Break All Links button. Invokes breakAllLinks on the current link manager.


pickedBreakLink: 

- (void) pickedBreakLink: (id)sender;
Availability: Not in OpenStep/MacOS-X

Called when the user presses the Break button. Invokes break on the current link.


pickedOpenSource: 

- (void) pickedOpenSource: (id)sender;
Availability: Not in OpenStep/MacOS-X

Called when the user presses the Open Source button. Invokes openSource on the current link.


pickedUpdateDestination: 

- (void) pickedUpdateDestination: (id)sender;
Availability: Not in OpenStep/MacOS-X

Called when the Update Destination button Invokes updateDestination on the current link.


pickedUpdateMode: 

- (void) pickedUpdateMode: (id)sender;
Availability: Not in OpenStep/MacOS-X

Called when the user selects an update mode from the pull down. Invokes setUpdateMode: on the current link.


setAccessoryView: 

- (void) setAccessoryView: (NSView*)aView;
Availability: Not in OpenStep/MacOS-X

Get the accessory view.


setLink: manager: isMultiple: 

- (void) setLink: (NSDataLink*)link manager: (NSDataLinkManager*)linkManager isMultiple: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X

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

_accessoryView

@protected NSView* _accessoryView;

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.


_breakAllLinksButton

@protected id _breakAllLinksButton;

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.


_breakLinkButton

@protected id _breakLinkButton;

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.


_currentDataLink

@protected NSDataLink* _currentDataLink;

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.


_currentDataLinkManager

@protected NSDataLinkManager* _currentDataLinkManager;

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.


_lastUpdateField

@protected id _lastUpdateField;

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.


_multipleSelection

@protected BOOL _multipleSelection;

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.


_openSourceButton

@protected id _openSourceButton;

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.


_sourceField

@protected id _sourceField;

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.


_updateDestinationButton

@protected id _updateDestinationButton;

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.


_updateModeButton

@protected id _updateModeButton;

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.





Software documentation for the NSApplication(NSDataLinkPanel) category

NSApplication(NSDataLinkPanel)

Declared in:
AppKit/NSDataLinkPanel.h
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

Method summary

orderFrontDataLinkPanel: 

- (void) orderFrontDataLinkPanel: (id)sender;
Availability: Not in OpenStep/MacOS-X

Order the data link panel to the front. If it has not already been instantiated, instantiate it.



Up