Software:Cocoa text system

From HandWiki

The Cocoa text system (formerly known simply by the primary class name NSText) is the linked network of classes, protocols, interfaces and objects that provide typography and text field editing capabilities and to Cocoa applications on Apple's macOS, where it is the primary text-handling system.[1] Although "extremely complex", the standard text-handling abilities of the Cocoa text system have been widely praised as without peer.[2][3] It is possible to implement a fully featured rich text editor in only a few lines of code.[4][5]

Formerly embodied[6] in developer NeXT Inc.'s OpenStep API specification, and implemented in NeXT's OPENSTEP operating system, and probably also in the earlier NeXTSTEP[citation needed] platform, Cocoa's NSText has additionally been implemented via the OpenStep API specification successfully in third-party implementations such as the free-and-open-source GNUstep.[6]

The Cocoa text system uses a Model–View–Controller design pattern.[7] The view layer is handled by NSTextView and NSTextField, NSLayoutManager and NSTextContainer are the controller layer, and NSTextStorage (a mutable attributed string subclass) is the model.[8]

The Cocoa text system also interacts with Services to provide standard streams functionality in a GUI environment. Users interact with two classes, NSTextField (providing single-line edit fields) or NSTextView (providing multi-line editing). Each NSTextField uses a shared instance of a NSTextView called the "field editor". This was done to reduce high memory requirements that would arise if every field implemented its own NSTextView object graph when only one field can actually have focus at any time.[9]

Cocoa adopts many Emacs keybindings familiar to programmers.[10]

References

  1. Apple Inc. (2014-02-11). "About the Cocoa Text System". https://developer.apple.com/library/mac/documentation/TextFonts/Conceptual/CocoaTextArchitecture/Introduction/Introduction.html. 
  2. Anguish, Scott; Buck, Erik M.; Yacktman, Donald A. (2003). Cocoa Programming. ISBN 9780672322303. https://books.google.com/books?id=AeyX8GqdzPYC&pg=PA357. 
  3. "Arise Aqua!". http://www.stone.com/The_Cocoa_Files/Arise_Aqua_.html. "You’ll build a word processor capable of handling kerning, justification, sub and superscripting, full Unicode support, spell checking, multiple font and paragraph styles, drag and drop of embedded graphics and colors, rulers with adjustable tab stops, reading and writing of conforming RTFD files, all in less than 13 lines of code! You cannot do this in any other development environment on the planet." 
  4. "Rich Text Handling". 2008-03-07. http://commons.oreilly.com/wiki/index.php/Learning_Cocoa_with_Objective-C/Document-Based_Applications/Rich-Text_Handling. 
  5. "Getting Started Developing For Mac OS X". http://www.friday.com/bbum/2002/. "There is very little custom code in TE and what is there is basically only the code necessary to make the AppKit behave like a text editor." 
  6. 6.0 6.1 "GNUstep". gnustep.org. http://www.gnustep.org/. 
  7. "The Cocoa text system's architecture is both modular and layered to enhance its ease of use and flexibility. Its modular design reflects the Model–View–Controller paradigm (originating with Smalltalk-80) where the data, its visual representation, and the logic that links the two are represented by separate objects. In the case of the text system, NSTextStorage holds the model's text data, NSTextContainer models the geometry of the layout area, NSTextView presents the view, and NSLayoutManager intercedes as the controller to make sure that the data and its representation onscreen stay in agreement.". https://developer.apple.com/library/mac/documentation/TextFonts/Conceptual/CocoaTextArchitecture/TextSystemArchitecture/ArchitectureOverview.html#//apple_ref/doc/uid/TP40009459-CH7-SW3. 
  8. Bright, Peter (2008-06-01). "From Win32 to Cocoa: a Windows user's would-be conversion to Mac OS X, Part III". https://arstechnica.com/apple/2008/06/microsoft-learn-from-apple-iii/. 
  9. Dovey, James; Furrow, Ashley Alonzo Hale (4 January 2013). Beginning Objective C. ISBN 9781430243694. https://books.google.com/books?id=nhHB1KBQWr0C&pg=PA196. 
  10. Rus, Jacob (2006-03-20). "Customizing the Cocoa Text System". https://www.hcs.harvard.edu/~jrus/site/cocoa-text.html. 

External links