|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.rococoa.cocoa.foundation.NSObject
org.rococoa.cocoa.appkit.NSDocument
public abstract class NSDocument
This file was autogenerated by JNAerator,
a tool written by Olivier Chafik that uses a few opensource projects..
For help, please visit NativeLibs4Java, Rococoa, or JNA.
Nested Class Summary | |
---|---|
static class |
NSDocument.__docFlags
|
class |
NSDocument._class_
|
Nested classes/interfaces inherited from interface org.rococoa.cocoa.appkit.categories.NSScripting |
---|
NSScripting._static_ |
Nested classes/interfaces inherited from interface org.rococoa.cocoa.appkit.categories.NSDeprecated |
---|
NSDeprecated._static_ |
Nested classes/interfaces inherited from interface org.rococoa.cocoa.appkit.protocols.NSUserInterfaceValidations |
---|
NSUserInterfaceValidations._static_ |
Nested classes/interfaces inherited from interface org.rococoa.cocoa.foundation.protocols.NSObject |
---|
NSObject._static_ |
Constructor Summary | |
---|---|
NSDocument()
|
Method Summary | |
---|---|
abstract void |
addWindowController(NSWindowController windowController)
Add or remove a window controller from this document's list of attached window controllers, and set the document of the passed-in window controller. |
static NSDocument |
alloc()
|
abstract NSURL |
autosavedContentsFileURL()
|
abstract void |
autosaveDocumentWithDelegate_didAutosaveSelector_contextInfo(org.rococoa.ID delegate,
org.rococoa.Selector didAutosaveSelector,
Pointer contextInfo)
Autosave the document's contents at an appropriate location, and then send the message selected by didAutosaveSelector to the delegate, with the contextInfo as the last argument. |
abstract NSString |
autosavingFileType()
Return the document type that should be used for an autosave operation. |
abstract void |
canCloseDocumentWithDelegate_shouldCloseSelector_contextInfo(org.rococoa.ID delegate,
org.rococoa.Selector shouldCloseSelector,
Pointer contextInfo)
If the document is modified, present a panel to the user informing them that the document is modified and asking if it should be saved. |
abstract void |
close()
Close the document, discarding any as-yet-unsaved modifications. |
static NSDocument |
create()
Factory method |
static NSDocument |
createForURL_withContentsOfURL_ofType_error(NSURL absoluteDocumentURL,
NSURL absoluteDocumentContentsURL,
NSString typeName,
PointerByReference outError)
Factory method |
static NSDocument |
createWithContentsOfURL_ofType_error(NSURL absoluteURL,
NSString typeName,
PointerByReference outError)
Factory method |
static NSDocument |
createWithType_error(NSString typeName,
PointerByReference outError)
Factory method |
abstract NSData |
dataOfType_error(NSString typeName,
PointerByReference outError)
Create and return a data object that contains the contents of this document, formatted to a specified type, or return nil after setting *outError to an NSError that encapsulates the reason why the data object could not be created. |
abstract NSString |
displayName()
Returns a name for this document that is fit for presentation to the user. |
abstract NSDictionary |
fileAttributesToWriteToURL_ofType_forSaveOperation_originalContentsURL_error(NSURL absoluteURL,
NSString typeName,
int saveOperation,
NSURL absoluteOriginalContentsURL,
PointerByReference outError)
Given that a file is being saved, return the attributes that should be written to a file or file package located by a URL, formatted to a specified type, for a particular kind of save operation. |
abstract NSDate |
fileModificationDate()
|
abstract NSString |
fileNameExtensionForType_saveOperation(NSString typeName,
int saveOperation)
For a specified type, and a particular kind of save operation, return a file name extension that can be appended to a base file name. |
abstract boolean |
fileNameExtensionWasHiddenInLastRunSavePanel()
Return YES if a save panel has been presented by this document and the user chose to hide the name extension of the file that was selected in that save panel, NO otherwise. |
abstract NSString |
fileType()
|
abstract NSString |
fileTypeFromLastRunSavePanel()
If a save panel has been presented by this document, and a choice of file type was presented in that panel, return the name of the file type that the user chose. |
abstract NSURL |
fileURL()
|
abstract NSFileWrapper |
fileWrapperOfType_error(NSString typeName,
PointerByReference outError)
Create and return a file wrapper that contains the contents of this document, formatted to a specified type, or return nil after setting *outError to an NSError that encapsulates the reason why the file wrapper could not be created. |
abstract boolean |
hasUnautosavedChanges()
Return YES if the document has changes that have not been autosaved, NO otherwise, as determined by the history of previous invocations of -updateChangeCount:. |
abstract boolean |
hasUndoManager()
|
abstract NSDocument |
init()
The designated initializer. |
abstract NSDocument |
initForURL_withContentsOfURL_ofType_error(NSURL absoluteDocumentURL,
NSURL absoluteDocumentContentsURL,
NSString typeName,
PointerByReference outError)
Initialize a document located by a URL, of a specified type, but by reading the contents for the document from another URL, and return it if successful. |
abstract NSDocument |
initWithContentsOfURL_ofType_error(NSURL absoluteURL,
NSString typeName,
PointerByReference outError)
Initialize a document located by a URL, of a specified type, and return it if successful. |
abstract NSDocument |
initWithType_error(NSString typeName,
PointerByReference outError)
Initialize a new empty document of a specified type, and return it if successful. |
abstract boolean |
isDocumentEdited()
Return YES if the document has changes that have not been saved, NO otherwise, primarily determined by the history of previous invocations of -updateChangeCount:. |
static boolean |
isNativeType(NSString type)
Return YES if instances of this class can be instantiated for the application to play the Editor role, NO otherwise. |
abstract boolean |
keepBackupFile()
Return YES if the old on-disk revision of a document that is being overwritten should be preserved during a NSSaveOperation, NO otherwise. |
abstract void |
makeWindowControllers()
Create the user interface for this document, but don't show it yet. |
abstract boolean |
preparePageLayout(NSPageLayout pageLayout)
Given the page layout panel that -runModalPageLayoutWithPrintInfo:delegate:didRunSelector:contextInfo: is about to present to the user, make any final changes before it is presented, and return YES for success. |
abstract boolean |
prepareSavePanel(NSSavePanel savePanel)
Given the save panel that -runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo: is about to present to the user, make any final changes before it is presented, and return YES for success. |
abstract void |
presentError_modalForWindow_delegate_didPresentSelector_contextInfo(NSError error,
NSWindow window,
org.rococoa.ID delegate,
org.rococoa.Selector didPresentSelector,
Pointer contextInfo)
Methods that are declared by NSResponder and also implemented by NSDocument, even though for historical reasons NSDocument is not a subclass of NSResponder. |
abstract boolean |
presentError(NSError error)
|
abstract void |
printDocument(org.rococoa.ID sender)
The action of the File menu's Print... item item in a document-based application. |
abstract void |
printDocumentWithSettings_showPrintPanel_delegate_didPrintSelector_contextInfo(NSDictionary printSettings,
boolean showPrintPanel,
org.rococoa.ID delegate,
org.rococoa.Selector didPrintSelector,
Pointer contextInfo)
Print the document. |
abstract NSPrintInfo |
printInfo()
|
abstract NSPrintOperation |
printOperationWithSettings_error(NSDictionary printSettings,
PointerByReference outError)
Create a print operation that can be run to print the document's current contents, and return it if successful. |
static NSArray |
readableTypes()
Return the names of the types for which this class can be instantiated for the application to play the Editor or Viewer role. |
abstract boolean |
readFromData_ofType_error(NSData data,
NSString typeName,
PointerByReference outError)
Set the contents of this document by reading from data of a specified type, and return YES if successful. |
abstract boolean |
readFromFileWrapper_ofType_error(NSFileWrapper fileWrapper,
NSString typeName,
PointerByReference outError)
Set the contents of this document by reading from a file wrapper of a specified type, and return YES if successful. |
abstract boolean |
readFromURL_ofType_error(NSURL absoluteURL,
NSString typeName,
PointerByReference outError)
Set the contents of this document by reading from a file or file package located by a URL, of a specified type, and return YES if successful. |
abstract void |
removeWindowController(NSWindowController windowController)
|
abstract void |
revertDocumentToSaved(org.rococoa.ID sender)
The action of the File menu's Revert to Saved item in a document-based application. |
abstract boolean |
revertToContentsOfURL_ofType_error(NSURL absoluteURL,
NSString typeName,
PointerByReference outError)
Discard all unsaved document modifications and replace the document's contents by reading a file or file package located by a URL, of a specified type, and return YES if successful. |
abstract void |
runModalPageLayoutWithPrintInfo_delegate_didRunSelector_contextInfo(NSPrintInfo printInfo,
org.rococoa.ID delegate,
org.rococoa.Selector didRunSelector,
Pointer contextInfo)
Present a page layout panel to the user. |
abstract void |
runModalPrintOperation_delegate_didRunSelector_contextInfo(NSPrintOperation printOperation,
org.rococoa.ID delegate,
org.rococoa.Selector didRunSelector,
Pointer contextInfo)
Run a print operation, possibly with printing UI presented document-modally. |
abstract void |
runModalSavePanelForSaveOperation_delegate_didSaveSelector_contextInfo(int saveOperation,
org.rococoa.ID delegate,
org.rococoa.Selector didSaveSelector,
Pointer contextInfo)
Present a save panel to the user, then try to save the document if the user OKs the panel. |
abstract void |
runPageLayout(org.rococoa.ID sender)
The action of the File menu's Page Setup... item in a document-based application. |
abstract void |
saveDocument(org.rococoa.ID sender)
The action of the File menu's Save item in a document-based application. |
abstract void |
saveDocumentAs(org.rococoa.ID sender)
The action of the File menu's Save As... item in a document-based application. |
abstract void |
saveDocumentTo(org.rococoa.ID sender)
The action of the File menu's Export... item in a document-based application (actually, the menu item goes by different names in different applications; check the Human Interface Guidelines). |
abstract void |
saveDocumentWithDelegate_didSaveSelector_contextInfo(org.rococoa.ID delegate,
org.rococoa.Selector didSaveSelector,
Pointer contextInfo)
If an NSSaveOperation can be performed without further user intervention (at the very least, neither -fileURL nor -fileType return nil), then save the document. |
abstract void |
saveToURL_ofType_forSaveOperation_delegate_didSaveSelector_contextInfo(NSURL absoluteURL,
NSString typeName,
int saveOperation,
org.rococoa.ID delegate,
org.rococoa.Selector didSaveSelector,
Pointer contextInfo)
Save the contents of the document to a file or file package located by a URL, formatted to a specified type, for a particular kind of save operation. |
abstract boolean |
saveToURL_ofType_forSaveOperation_error(NSURL absoluteURL,
NSString typeName,
int saveOperation,
PointerByReference outError)
Save the contents of the document to a file or file package located by a URL, formatted to a specified type, for a particular kind of save operation, and return YES if successful. |
abstract void |
setAutosavedContentsFileURL(NSURL absoluteURL)
The location of the most recently autosaved document contents. |
abstract void |
setFileModificationDate(NSDate modificationDate)
The last known modification date of the document's on-disk representation. |
abstract void |
setFileType(NSString typeName)
The name of the document's format. |
abstract void |
setFileURL(NSURL absoluteURL)
The location of the document's on-disk representation. |
abstract void |
setHasUndoManager(boolean hasUndoManager)
Whether or not the document has an undo manager. |
abstract void |
setPrintInfo(NSPrintInfo printInfo)
The print info for the document. |
abstract void |
setUndoManager(NSUndoManager undoManager)
The document's undo manager. |
abstract void |
setWindow(NSWindow window)
The setter for the "window" IB outlet of this class. |
abstract boolean |
shouldChangePrintInfo(NSPrintInfo newPrintInfo)
Given a print info object that is the result of the user OK'ing the page layout panel presented by -runPageLayout:, return YES if the print info should be set in the document, NO otherwise. |
abstract void |
shouldCloseWindowController_delegate_shouldCloseSelector_contextInfo(NSWindowController windowController,
org.rococoa.ID delegate,
org.rococoa.Selector shouldCloseSelector,
Pointer contextInfo)
If the window controller is one whose closing results in the document being closed too, or there is only one window controller attached to the document, do the exact same thing that -canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo: would do. |
abstract boolean |
shouldRunSavePanelWithAccessoryView()
Return YES if -runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo: should add NSDocument's standard file format accessory view to the save panel, NO otherwise. |
abstract void |
showWindows()
Present the user interface for this document. |
abstract NSUndoManager |
undoManager()
|
abstract void |
updateChangeCount(int change)
Record the fact that a change affecting the value returned by -isDocumentEdited has occurred. |
abstract boolean |
validateUserInterfaceItem(org.rococoa.ID anItem)
Deprecated. use the safer method validateUserInterfaceItem(org.rococoa.cocoa.appkit.protocols.NSValidatedUserInterfaceItem) instead |
abstract boolean |
validateUserInterfaceItem(NSValidatedUserInterfaceItem anItem)
Conformance to the NSUserInterfaceValidations protocol. |
abstract NSError |
willPresentError(NSError error)
|
abstract void |
windowControllerDidLoadNib(NSWindowController windowController)
|
abstract NSArray |
windowControllers()
Return an array of all window controllers that have been added to this document with -addWindowController: but not yet removed with -removeWindowController:. |
abstract void |
windowControllerWillLoadNib(NSWindowController windowController)
Be notified that a window controller will or did load a nib with this document as the nib file's owner. |
abstract NSWindow |
windowForSheet()
Of the windows associated with this document, return the one most appropriate to use as the parent window of a document-modal sheet. |
abstract NSString |
windowNibName()
Return the name of the nib to be used by -makeWindowControllers. |
static NSArray |
writableTypes()
Return the names of the types which this class can save. |
abstract NSArray |
writableTypesForSaveOperation(int saveOperation)
Return the names of the types to which this document can be saved for a kind of save operation. |
abstract boolean |
writeSafelyToURL_ofType_forSaveOperation_error(NSURL absoluteURL,
NSString typeName,
int saveOperation,
PointerByReference outError)
Write the contents of the document to a file or file package located by a URL, formatted to a specified type, for a particular kind of save operation, and return YES if successful. |
abstract boolean |
writeToURL_ofType_error(NSURL absoluteURL,
NSString typeName,
PointerByReference outError)
Write the contents of this document to a file or file package located by a URL, formatted to a specified type, and return YES if successful. |
abstract boolean |
writeToURL_ofType_forSaveOperation_originalContentsURL_error(NSURL absoluteURL,
NSString typeName,
int saveOperation,
NSURL absoluteOriginalContentsURL,
PointerByReference outError)
Write the contents of the document to a file or file package located by a URL, formatted to a specified type, for a particular kind of save operation, and return YES if successful. |
Methods inherited from class org.rococoa.cocoa.foundation.NSObject |
---|
copy, dealloc, description, doesNotRecognizeSelector, finalize, forwardInvocation, id, isKindOfClass, isKindOfClass, methodSignatureForSelector, mutableCopy, release, retain, retainCount |
Methods inherited from class java.lang.Object |
---|
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.rococoa.cocoa.appkit.categories.NSScripting |
---|
orderedDocuments, orderedWindows |
Methods inherited from interface org.rococoa.cocoa.appkit.categories.NSDeprecated |
---|
acceptsBinary, domain, host, imageRectForPaper, isColor, isFontAvailable, isOutputStackInReverseOrder, note |
Methods inherited from interface org.rococoa.cocoa.foundation.protocols.NSObject |
---|
autorelease, class_, conformsToProtocol, hash, isEqual, isKindOfClass, isMemberOfClass, isProxy, performSelector_withObject_withObject, performSelector_withObject, performSelector, respondsToSelector, self, superclass, zone |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSDistantObjectRequestMethods |
---|
connection_handleRequest |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSKeyValueObserverNotification |
---|
didChange_valuesAtIndexes_forKey, didChangeValueForKey_withSetMutation_usingObjects, didChangeValueForKey, willChange_valuesAtIndexes_forKey, willChangeValueForKey_withSetMutation_usingObjects, willChangeValueForKey |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSSoundDelegateMethods |
---|
sound_didFinishPlaying |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSNetServiceDelegateMethods |
---|
netService_didNotPublish, netService_didNotResolve, netService_didUpdateTXTRecordData, netServiceDidPublish, netServiceDidResolveAddress, netServiceDidStop, netServiceWillPublish, netServiceWillResolve |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSRuleEditorDelegateMethods |
---|
ruleEditor_child_forCriterion_withRowType, ruleEditor_displayValueForCriterion_inRow, ruleEditor_numberOfChildrenForCriterion_withRowType, ruleEditor_predicatePartsForCriterion_withDisplayValue_inRow, ruleEditorRowsDidChange |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSLayoutManagerDelegate |
---|
layoutManager_didCompleteLayoutForTextContainer_atEnd, layoutManagerDidInvalidateLayout |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSComboBoxDataSource |
---|
comboBox_completedString, comboBox_indexOfItemWithStringValue, comboBox_objectValueForItemAtIndex, numberOfItemsInComboBox |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSDatePickerCellDelegate |
---|
datePickerCell_validateProposedDateValue_timeInterval, datePickerCell_validateProposedDateValue_timeInterval |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSEditorRegistration |
---|
objectDidBeginEditing, objectDidEndEditing |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSClassDescriptionPrimitives |
---|
attributeKeys, classDescription, inverseForRelationshipKey, toManyRelationshipKeys, toOneRelationshipKeys |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSCoderMethods |
---|
awakeAfterUsingCoder, classForCoder, replacementObjectForCoder |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.AMWorkflowControllerDelegate |
---|
workflowController_didError, workflowController_didRunAction, workflowController_willRunAction, workflowControllerDidRun, workflowControllerDidStop, workflowControllerWillRun, workflowControllerWillStop |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSComboBoxNotifications |
---|
comboBoxSelectionDidChange, comboBoxSelectionIsChanging, comboBoxWillDismiss, comboBoxWillPopUp |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSSavePanelDelegate |
---|
panel_compareFilename_with_caseSensitive, panel_directoryDidChange, panel_isValidFilename, panel_shouldShowFilename, panel_userEnteredFilename_confirmed, panel_willExpand, panelSelectionDidChange |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSKeyValueBindingCreation |
---|
bind_toObject_withKeyPath_options, exposedBindings, infoForBinding, optionDescriptionsForBinding, unbind, valueClassForBinding |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSKeyValueCoding |
---|
dictionaryWithValuesForKeys, mutableArrayValueForKey, mutableArrayValueForKeyPath, mutableSetValueForKey, mutableSetValueForKeyPath, setNilValueForKey, setValue_forKey, setValue_forKeyPath, setValue_forUndefinedKey, setValuesForKeysWithDictionary, validateValue_forKey_error, validateValue_forKeyPath_error, valueForKey, valueForKeyPath, valueForUndefinedKey |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSErrorRecoveryAttempting |
---|
attemptRecoveryFromError_optionIndex_delegate_didRecoverSelector_contextInfo, attemptRecoveryFromError_optionIndex |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSThreadPerformAdditions |
---|
performSelector_onThread_withObject_waitUntilDone_modes, performSelector_onThread_withObject_waitUntilDone, performSelectorInBackground_withObject, performSelectorOnMainThread_withObject_waitUntilDone_modes, performSelectorOnMainThread_withObject_waitUntilDone |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSToolbarNotifications |
---|
toolbarDidRemoveItem, toolbarWillAddItem |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.QTCaptureViewDelegate |
---|
view_willDisplayImage |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSScriptClassDescription |
---|
classCode, className |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSFontPanelValidationAdditions |
---|
validModesForFontPanel |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSAccessibilityAdditions |
---|
accessibilitySetOverrideValue_forAttribute |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSDraggingSource |
---|
draggingSourceOperationMaskForLocal, ignoreModifierKeysWhileDragging, namesOfPromisedFilesDroppedAtDestination |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSConnectionDelegateMethods |
---|
authenticateComponents_withData, authenticationDataForComponents, connection_shouldMakeNewConnection, createConversationForConnection, makeNewConnection_sender |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSPasteboardOwner |
---|
pasteboard_provideDataForType, pasteboardChangedOwner |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSStreamDelegateEventExtensions |
---|
stream_handleEvent |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSDeprecatedKeyValueCoding |
---|
handleQueryWithUnboundKey, handleTakeValue_forUnboundKey, storedValueForKey, takeStoredValue_forKey, takeValue_forKey, takeValue_forKeyPath, takeValuesFromDictionary, unableToSetNilForKey, valuesForKeys |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSKeyedArchiverObjectSubstitution |
---|
classForKeyedArchiver, replacementObjectForKeyedArchiver |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSNetServiceBrowserDelegateMethods |
---|
netServiceBrowser_didFindDomain_moreComing, netServiceBrowser_didFindService_moreComing, netServiceBrowser_didNotSearch, netServiceBrowser_didRemoveDomain_moreComing, netServiceBrowser_didRemoveService_moreComing, netServiceBrowserDidStopSearch, netServiceBrowserWillSearch |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.ABActionDelegate |
---|
actionProperty, performActionForPerson_identifier, shouldEnableActionForPerson_identifier, titleForPerson_identifier |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.QTMovieDelegate |
---|
externalMovie, movie_linkToURL, movie_shouldContinueOperation_withPhase_atPercent_withAttributes, movieShouldLoadData, movieShouldTask |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSDrawerDelegate |
---|
drawerShouldClose, drawerShouldOpen |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSScripting |
---|
copyScriptingValue_forKey_withProperties, newScriptingObjectOfClass_forValueForKey_withContentsValue_properties, scriptingProperties, scriptingValueForSpecifier, setScriptingProperties |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.WebPlugInContainer |
---|
webFrame, webPlugInContainerLoadRequest_inFrame, webPlugInContainerSelectionColor, webPlugInContainerShowStatus |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.WebScripting |
---|
finalizeForWebScript, invokeDefaultMethodWithArguments, invokeUndefinedMethodFromWebScript_withArguments |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.SFChooseIdentityPanelDelegate |
---|
chooseIdentityPanelShowHelp |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSToolbarDelegate |
---|
toolbar_itemForItemIdentifier_willBeInsertedIntoToolbar, toolbarAllowedItemIdentifiers, toolbarDefaultItemIdentifiers, toolbarSelectableItemIdentifiers |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSComparisonMethods |
---|
doesContain, isCaseInsensitiveLike, isEqualTo, isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo, isLike, isNotEqualTo |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSMetadataQueryDelegate |
---|
metadataQuery_replacementObjectForResultObject, metadataQuery_replacementValueForAttribute_value |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.WebDownloadDelegate |
---|
downloadWindowForAuthenticationSheet |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSKeyedArchiverDelegate |
---|
archiver_didEncodeObject, archiver_willEncodeObject, archiver_willReplaceObject_withObject, archiverDidFinish, archiverWillFinish |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.SFAuthorizationViewDelegate |
---|
authorizationViewCreatedAuthorization, authorizationViewDidAuthorize, authorizationViewDidDeauthorize, authorizationViewReleasedAuthorization, authorizationViewShouldDeauthorize |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSWindowDelegate |
---|
window_shouldPopUpDocumentPathMenu, window_willPositionSheet_usingRect, windowShouldClose, windowShouldZoom_toFrame, windowWillResize_toSize, windowWillReturnFieldEditor_toObject, windowWillReturnUndoManager, windowWillUseStandardFrame_defaultFrame |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSAnimationDelegate |
---|
animation_didReachProgressMark, animation_valueForProgress, animationDidEnd, animationDidStop, animationShouldStart |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSKeyValueObservingCustomization |
---|
observationInfo, setObservationInfo |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSDictionaryControllerKeyValuePair |
---|
isExplicitlyIncluded, key, localizedKey, setKey, setLocalizedKey, setValue, value |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSTabViewDelegate |
---|
tabView_didSelectTabViewItem, tabView_shouldSelectTabViewItem, tabView_willSelectTabViewItem, tabViewDidChangeNumberOfTabViewItems |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSApplicationScriptingDelegation |
---|
application_delegateHandlesKey |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSSpeechRecognizerDelegate |
---|
speechRecognizer_didRecognizeCommand |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSURLConnectionDelegate |
---|
connection_didCancelAuthenticationChallenge, connection_didFailWithError, connection_didReceiveAuthenticationChallenge, connection_didReceiveData, connection_didReceiveResponse, connection_willCacheResponse, connection_willSendRequest_redirectResponse, connectionDidFinishLoading |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSControlSubclassNotifications |
---|
controlTextDidBeginEditing, controlTextDidChange, controlTextDidEndEditing |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSOutlineViewNotifications |
---|
outlineViewColumnDidMove, outlineViewColumnDidResize, outlineViewItemDidCollapse, outlineViewItemDidExpand, outlineViewItemWillCollapse, outlineViewItemWillExpand, outlineViewSelectionDidChange, outlineViewSelectionIsChanging |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSPortDelegateMethods |
---|
handlePortMessage |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSFontManagerDelegate |
---|
fontManager_willIncludeFont |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSControlSubclassDelegate |
---|
control_didFailToFormatString_errorDescription, control_didFailToValidatePartialString_errorDescription, control_isValidObject, control_textShouldBeginEditing, control_textShouldEndEditing, control_textView_doCommandBySelector |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSScriptObjectSpecifiers |
---|
indicesOfObjectsByEvaluatingObjectSpecifier, objectSpecifier |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.WebPlugIn |
---|
objectForWebScript, webPlugInDestroy, webPlugInInitialize, webPlugInSetIsSelected, webPlugInStart, webPlugInStop |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.WebJavaPlugIn |
---|
webPlugInGetApplet |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSSpeechSynthesizerDelegate |
---|
speechSynthesizer_didEncounterErrorAtIndex_ofString_message, speechSynthesizer_didEncounterSyncMessage, speechSynthesizer_didFinishSpeaking, speechSynthesizer_willSpeakPhoneme |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.IMVideoDataSource |
---|
getOpenGLBufferContext_pixelFormat, getPixelBufferPixelFormat, getPixelBufferPixelFormat |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSURLClient |
---|
URL_resourceDataDidBecomeAvailable, URL_resourceDidFailLoadingWithReason, URLResourceDidCancelLoading, URLResourceDidFinishLoading |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSKeyedUnarchiverDelegate |
---|
unarchiver_cannotDecodeObjectOfClassName_originalClasses, unarchiver_didDecodeObject, unarchiver_willReplaceObject_withObject, unarchiverDidFinish, unarchiverWillFinish |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSScriptingComparisonMethods |
---|
scriptingBeginsWith, scriptingContains, scriptingEndsWith, scriptingIsEqualTo, scriptingIsGreaterThan, scriptingIsGreaterThanOrEqualTo, scriptingIsLessThan, scriptingIsLessThanOrEqualTo |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSColorPanelResponderMethod |
---|
changeColor |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSDraggingDestination |
---|
concludeDragOperation, concludeDragOperation, draggingEnded, draggingEnded, draggingEntered, draggingEntered, draggingExited, draggingExited, draggingUpdated, draggingUpdated, performDragOperation, performDragOperation, prepareForDragOperation, prepareForDragOperation, wantsPeriodicDraggingUpdates |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSScriptKeyValueCoding |
---|
coerceValue_forKey, insertValue_atIndex_inPropertyWithKey, insertValue_inPropertyWithKey, removeValueAtIndex_fromPropertyWithKey, replaceValueAtIndex_inPropertyWithKey_withValue, valueAtIndex_inPropertyWithKey, valueWithName_inPropertyWithKey, valueWithUniqueID_inPropertyWithKey |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSNibAwaking |
---|
awakeFromNib |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSImageDelegate |
---|
image_didLoadPartOfRepresentation_withValidRows, image_didLoadRepresentation_withStatus, image_didLoadRepresentationHeader, image_willLoadRepresentation |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSTextDelegate |
---|
textDidBeginEditing, textDidChange, textDidEndEditing, textShouldBeginEditing, textShouldEndEditing |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSKeyValueObserving |
---|
observeValueForKeyPath_ofObject_change_context |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.QTMovieViewDelegate |
---|
view_willDisplayImage |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSArchiverCallback |
---|
classForArchiver, replacementObjectForArchiver |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSComboBoxCellDataSource |
---|
comboBoxCell_completedString, comboBoxCell_indexOfItemWithStringValue, comboBoxCell_objectValueForItemAtIndex, numberOfItemsInComboBoxCell |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSFontManagerResponderMethod |
---|
changeFont |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSEditor |
---|
commitEditing, commitEditingWithDelegate_didCommitSelector_contextInfo, discardEditing |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSMenuValidation |
---|
validateMenuItem |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSMenuDelegate |
---|
menu_updateItem_atIndex_shouldCancel, menu_willHighlightItem, menuDidClose, menuHasKeyEquivalent_forEvent_target_action, menuNeedsUpdate, menuWillOpen, numberOfItemsInMenu |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSDistributedObjects |
---|
classForPortCoder, replacementObjectForPortCoder |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSAccessibility |
---|
accessibilityActionDescription, accessibilityActionNames, accessibilityAttributeNames, accessibilityAttributeValue_forParameter, accessibilityAttributeValue, accessibilityFocusedUIElement, accessibilityIsAttributeSettable, accessibilityIsIgnored, accessibilityParameterizedAttributeNames, accessibilityPerformAction, accessibilitySetValue_forAttribute |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSCopyLinkMoveHandler |
---|
fileManager_shouldProceedAfterError, fileManager_willProcessPath |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.SFCertificatePanelDelegate |
---|
certificatePanelShowHelp |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSSpellServerDelegate |
---|
spellServer_checkGrammarInString_language_details, spellServer_didForgetWord_inLanguage, spellServer_didLearnWord_inLanguage, spellServer_findMisspelledWordInString_language_wordCount_countOnly, spellServer_findMisspelledWordInString_language_wordCount_countOnly, spellServer_suggestGuessesForWord_inLanguage |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSWindowNotifications |
---|
windowDidBecomeKey, windowDidBecomeMain, windowDidChangeScreen, windowDidChangeScreenProfile, windowDidDeminiaturize, windowDidEndSheet, windowDidExpose, windowDidMiniaturize, windowDidMove, windowDidResignKey, windowDidResignMain, windowDidResize, windowDidUpdate, windowWillBeginSheet, windowWillClose, windowWillMiniaturize, windowWillMove |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSDrawerNotifications |
---|
drawerDidClose, drawerDidOpen, drawerWillClose, drawerWillOpen |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSKeyValueObserverRegistration |
---|
addObserver_forKeyPath_options_context, removeObserver_forKeyPath |
Methods inherited from interface org.rococoa.cocoa.foundation.categories.NSExceptionHandlerDelegate |
---|
exceptionHandler_shouldHandleException_mask, exceptionHandler_shouldLogException_mask |
Constructor Detail |
---|
public NSDocument()
Method Detail |
---|
public abstract NSDocument init()
-(id)init
init
in class NSObject
public static NSDocument create()
init()
public abstract NSDocument initWithType_error(NSString typeName, PointerByReference outError)
-(id)initWithType:(NSString*) error:(NSError**)
public static NSDocument createWithType_error(NSString typeName, PointerByReference outError)
initWithType_error(org.rococoa.cocoa.foundation.NSString, com.sun.jna.ptr.PointerByReference)
public abstract NSDocument initWithContentsOfURL_ofType_error(NSURL absoluteURL, NSString typeName, PointerByReference outError)
-(id)initWithContentsOfURL:(NSURL*) ofType:(NSString*) error:(NSError**)
public static NSDocument createWithContentsOfURL_ofType_error(NSURL absoluteURL, NSString typeName, PointerByReference outError)
initWithContentsOfURL_ofType_error(org.rococoa.cocoa.foundation.NSURL, org.rococoa.cocoa.foundation.NSString, com.sun.jna.ptr.PointerByReference)
public abstract NSDocument initForURL_withContentsOfURL_ofType_error(NSURL absoluteDocumentURL, NSURL absoluteDocumentContentsURL, NSString typeName, PointerByReference outError)
-(id)initForURL:(NSURL*) withContentsOfURL:(NSURL*) ofType:(NSString*) error:(NSError**)
public static NSDocument createForURL_withContentsOfURL_ofType_error(NSURL absoluteDocumentURL, NSURL absoluteDocumentContentsURL, NSString typeName, PointerByReference outError)
initForURL_withContentsOfURL_ofType_error(org.rococoa.cocoa.foundation.NSURL, org.rococoa.cocoa.foundation.NSURL, org.rococoa.cocoa.foundation.NSString, com.sun.jna.ptr.PointerByReference)
public abstract void setFileType(NSString typeName)
-(void)setFileType:(NSString*)
public abstract NSString fileType()
public abstract void setFileURL(NSURL absoluteURL)
-(void)setFileURL:(NSURL*)
public abstract NSURL fileURL()
public abstract void setFileModificationDate(NSDate modificationDate)
-(void)setFileModificationDate:(NSDate*)
public abstract NSDate fileModificationDate()
public abstract void revertDocumentToSaved(org.rococoa.ID sender)
-(void)revertDocumentToSaved:(id)
public abstract boolean revertToContentsOfURL_ofType_error(NSURL absoluteURL, NSString typeName, PointerByReference outError)
-(BOOL)revertToContentsOfURL:(NSURL*) ofType:(NSString*) error:(NSError**)
public abstract boolean readFromURL_ofType_error(NSURL absoluteURL, NSString typeName, PointerByReference outError)
-(BOOL)readFromURL:(NSURL*) ofType:(NSString*) error:(NSError**)
public abstract boolean readFromFileWrapper_ofType_error(NSFileWrapper fileWrapper, NSString typeName, PointerByReference outError)
-(BOOL)readFromFileWrapper:(NSFileWrapper*) ofType:(NSString*) error:(NSError**)
public abstract boolean readFromData_ofType_error(NSData data, NSString typeName, PointerByReference outError)
-(BOOL)readFromData:(NSData*) ofType:(NSString*) error:(NSError**)
public abstract boolean writeToURL_ofType_error(NSURL absoluteURL, NSString typeName, PointerByReference outError)
-(BOOL)writeToURL:(NSURL*) ofType:(NSString*) error:(NSError**)
public abstract NSFileWrapper fileWrapperOfType_error(NSString typeName, PointerByReference outError)
-(NSFileWrapper*)fileWrapperOfType:(NSString*) error:(NSError**)
public abstract NSData dataOfType_error(NSString typeName, PointerByReference outError)
-(NSData*)dataOfType:(NSString*) error:(NSError**)
public abstract boolean writeSafelyToURL_ofType_forSaveOperation_error(NSURL absoluteURL, NSString typeName, int saveOperation, PointerByReference outError)
-(BOOL)writeSafelyToURL:(NSURL*) ofType:(NSString*) forSaveOperation:(NSSaveOperationType) error:(NSError**)
saveOperation
- @see org.rococoa.cocoa.appkit.AppKitLibrary#NSSaveOperationTypepublic abstract boolean writeToURL_ofType_forSaveOperation_originalContentsURL_error(NSURL absoluteURL, NSString typeName, int saveOperation, NSURL absoluteOriginalContentsURL, PointerByReference outError)
-(BOOL)writeToURL:(NSURL*) ofType:(NSString*) forSaveOperation:(NSSaveOperationType) originalContentsURL:(NSURL*) error:(NSError**)
saveOperation
- @see org.rococoa.cocoa.appkit.AppKitLibrary#NSSaveOperationTypepublic abstract NSDictionary fileAttributesToWriteToURL_ofType_forSaveOperation_originalContentsURL_error(NSURL absoluteURL, NSString typeName, int saveOperation, NSURL absoluteOriginalContentsURL, PointerByReference outError)
-(NSDictionary*)fileAttributesToWriteToURL:(NSURL*) ofType:(NSString*) forSaveOperation:(NSSaveOperationType) originalContentsURL:(NSURL*) error:(NSError**)
saveOperation
- @see org.rococoa.cocoa.appkit.AppKitLibrary#NSSaveOperationTypepublic abstract boolean keepBackupFile()
-(BOOL)keepBackupFile
public abstract void saveDocument(org.rococoa.ID sender)
-(void)saveDocument:(id)
public abstract void saveDocumentAs(org.rococoa.ID sender)
-(void)saveDocumentAs:(id)
public abstract void saveDocumentTo(org.rococoa.ID sender)
-(void)saveDocumentTo:(id)
public abstract void saveDocumentWithDelegate_didSaveSelector_contextInfo(org.rococoa.ID delegate, org.rococoa.Selector didSaveSelector, Pointer contextInfo)
-(void)saveDocumentWithDelegate:(id) didSaveSelector:(SEL) contextInfo:(void*)
public abstract void runModalSavePanelForSaveOperation_delegate_didSaveSelector_contextInfo(int saveOperation, org.rococoa.ID delegate, org.rococoa.Selector didSaveSelector, Pointer contextInfo)
-(void)runModalSavePanelForSaveOperation:(NSSaveOperationType) delegate:(id) didSaveSelector:(SEL) contextInfo:(void*)
saveOperation
- @see org.rococoa.cocoa.appkit.AppKitLibrary#NSSaveOperationTypepublic abstract boolean shouldRunSavePanelWithAccessoryView()
-(BOOL)shouldRunSavePanelWithAccessoryView
public abstract boolean prepareSavePanel(NSSavePanel savePanel)
-(BOOL)prepareSavePanel:(NSSavePanel*)
public abstract boolean fileNameExtensionWasHiddenInLastRunSavePanel()
-(BOOL)fileNameExtensionWasHiddenInLastRunSavePanel
public abstract NSString fileTypeFromLastRunSavePanel()
-(NSString*)fileTypeFromLastRunSavePanel
public abstract void saveToURL_ofType_forSaveOperation_delegate_didSaveSelector_contextInfo(NSURL absoluteURL, NSString typeName, int saveOperation, org.rococoa.ID delegate, org.rococoa.Selector didSaveSelector, Pointer contextInfo)
-(void)saveToURL:(NSURL*) ofType:(NSString*) forSaveOperation:(NSSaveOperationType) delegate:(id) didSaveSelector:(SEL) contextInfo:(void*)
saveOperation
- @see org.rococoa.cocoa.appkit.AppKitLibrary#NSSaveOperationTypepublic abstract boolean saveToURL_ofType_forSaveOperation_error(NSURL absoluteURL, NSString typeName, int saveOperation, PointerByReference outError)
-(BOOL)saveToURL:(NSURL*) ofType:(NSString*) forSaveOperation:(NSSaveOperationType) error:(NSError**)
saveOperation
- @see org.rococoa.cocoa.appkit.AppKitLibrary#NSSaveOperationTypepublic abstract boolean hasUnautosavedChanges()
-(BOOL)hasUnautosavedChanges
public abstract void autosaveDocumentWithDelegate_didAutosaveSelector_contextInfo(org.rococoa.ID delegate, org.rococoa.Selector didAutosaveSelector, Pointer contextInfo)
-(void)autosaveDocumentWithDelegate:(id) didAutosaveSelector:(SEL) contextInfo:(void*)
public abstract NSString autosavingFileType()
-(NSString*)autosavingFileType
public abstract void setAutosavedContentsFileURL(NSURL absoluteURL)
-(void)setAutosavedContentsFileURL:(NSURL*)
public abstract NSURL autosavedContentsFileURL()
public abstract void canCloseDocumentWithDelegate_shouldCloseSelector_contextInfo(org.rococoa.ID delegate, org.rococoa.Selector shouldCloseSelector, Pointer contextInfo)
-(void)canCloseDocumentWithDelegate:(id) shouldCloseSelector:(SEL) contextInfo:(void*)
public abstract void close()
-(void)close
public abstract void runPageLayout(org.rococoa.ID sender)
-(void)runPageLayout:(id)
public abstract void runModalPageLayoutWithPrintInfo_delegate_didRunSelector_contextInfo(NSPrintInfo printInfo, org.rococoa.ID delegate, org.rococoa.Selector didRunSelector, Pointer contextInfo)
-(void)runModalPageLayoutWithPrintInfo:(NSPrintInfo*) delegate:(id) didRunSelector:(SEL) contextInfo:(void*)
public abstract boolean preparePageLayout(NSPageLayout pageLayout)
-(BOOL)preparePageLayout:(NSPageLayout*)
public abstract boolean shouldChangePrintInfo(NSPrintInfo newPrintInfo)
-(BOOL)shouldChangePrintInfo:(NSPrintInfo*)
public abstract void setPrintInfo(NSPrintInfo printInfo)
-(void)setPrintInfo:(NSPrintInfo*)
public abstract NSPrintInfo printInfo()
public abstract void printDocument(org.rococoa.ID sender)
-(void)printDocument:(id)
public abstract void printDocumentWithSettings_showPrintPanel_delegate_didPrintSelector_contextInfo(NSDictionary printSettings, boolean showPrintPanel, org.rococoa.ID delegate, org.rococoa.Selector didPrintSelector, Pointer contextInfo)
-(void)printDocumentWithSettings:(NSDictionary*) showPrintPanel:(BOOL) delegate:(id) didPrintSelector:(SEL) contextInfo:(void*)
public abstract NSPrintOperation printOperationWithSettings_error(NSDictionary printSettings, PointerByReference outError)
-(NSPrintOperation*)printOperationWithSettings:(NSDictionary*) error:(NSError**)
public abstract void runModalPrintOperation_delegate_didRunSelector_contextInfo(NSPrintOperation printOperation, org.rococoa.ID delegate, org.rococoa.Selector didRunSelector, Pointer contextInfo)
-(void)runModalPrintOperation:(NSPrintOperation*) delegate:(id) didRunSelector:(SEL) contextInfo:(void*)
public abstract boolean isDocumentEdited()
-(BOOL)isDocumentEdited
public abstract void updateChangeCount(int change)
-(void)updateChangeCount:(NSDocumentChangeType)
change
- @see org.rococoa.cocoa.appkit.AppKitLibrary#NSDocumentChangeTypepublic abstract void setUndoManager(NSUndoManager undoManager)
-(void)setUndoManager:(NSUndoManager*)
public abstract NSUndoManager undoManager()
public abstract void setHasUndoManager(boolean hasUndoManager)
-(void)setHasUndoManager:(BOOL)
public abstract boolean hasUndoManager()
public abstract void presentError_modalForWindow_delegate_didPresentSelector_contextInfo(NSError error, NSWindow window, org.rococoa.ID delegate, org.rococoa.Selector didPresentSelector, Pointer contextInfo)
-(void)presentError:(NSError*) modalForWindow:(NSWindow*) delegate:(id) didPresentSelector:(SEL) contextInfo:(void*)
public abstract boolean presentError(NSError error)
public abstract NSError willPresentError(NSError error)
public abstract void makeWindowControllers()
-(void)makeWindowControllers
public abstract NSString windowNibName()
-(NSString*)windowNibName
public abstract void windowControllerWillLoadNib(NSWindowController windowController)
-(void)windowControllerWillLoadNib:(NSWindowController*)
public abstract void windowControllerDidLoadNib(NSWindowController windowController)
public abstract void setWindow(NSWindow window)
-(void)setWindow:(NSWindow*)
public abstract void addWindowController(NSWindowController windowController)
-(void)addWindowController:(NSWindowController*)
public abstract void removeWindowController(NSWindowController windowController)
public abstract void showWindows()
-(void)showWindows
public abstract NSArray windowControllers()
-(NSArray*)windowControllers
public abstract void shouldCloseWindowController_delegate_shouldCloseSelector_contextInfo(NSWindowController windowController, org.rococoa.ID delegate, org.rococoa.Selector shouldCloseSelector, Pointer contextInfo)
-(void)shouldCloseWindowController:(NSWindowController*) delegate:(id) shouldCloseSelector:(SEL) contextInfo:(void*)
public abstract NSString displayName()
-(NSString*)displayName
public abstract NSWindow windowForSheet()
-(NSWindow*)windowForSheet
public static NSArray readableTypes()
+(NSArray*)readableTypes
public static NSArray writableTypes()
+(NSArray*)writableTypes
public static boolean isNativeType(NSString type)
+(BOOL)isNativeType:(NSString*)
public abstract NSArray writableTypesForSaveOperation(int saveOperation)
-(NSArray*)writableTypesForSaveOperation:(NSSaveOperationType)
saveOperation
- @see org.rococoa.cocoa.appkit.AppKitLibrary#NSSaveOperationTypepublic abstract NSString fileNameExtensionForType_saveOperation(NSString typeName, int saveOperation)
-(NSString*)fileNameExtensionForType:(NSString*) saveOperation:(NSSaveOperationType)
saveOperation
- @see org.rococoa.cocoa.appkit.AppKitLibrary#NSSaveOperationType@Deprecated public abstract boolean validateUserInterfaceItem(org.rococoa.ID anItem)
validateUserInterfaceItem(org.rococoa.cocoa.appkit.protocols.NSValidatedUserInterfaceItem)
instead
-(BOOL)validateUserInterfaceItem:(id)
validateUserInterfaceItem
in interface NSUserInterfaceValidations
public abstract boolean validateUserInterfaceItem(NSValidatedUserInterfaceItem anItem)
-(BOOL)validateUserInterfaceItem:(id)
validateUserInterfaceItem
in interface NSUserInterfaceValidations
public static NSDocument alloc()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |