next up previous
Next: Program Appearance Up: Introduction Previous: pen movement operators

The NeXTSTEP operating system

One of the principal advantages of the NeXTSTEP operating system is its use of the PostScript language for all input and output. All includes displaying information on the monitor, reading and writing files from disk, the expected task of printing files on a printer, and even includes transmitting them by modem. Amongst the agreeable conveniences is not having to struggle with a screen dump to save information which was originally presented visually.

The appearance which NeXTSTEP presents to the user is via a File Viewer which is a window filled with either icons or text, as the user prefers. Moving a cursor by mouse (or sometimes keyboard arrows) indicates a choice of file, each one of which responds in its own manner to clicking or dragging. If it is a subdirectory, additional details are shown; if it is a text file, a page will be opened for editing, while programs will simply be loaded and executed.

Besides the TextView window, almost always overlaid as soon as programs begin to execute, there is room around the margins for icons reminding the user of programs and text files which have been held in abeyance, for frequently used programs, and the like. Some space is reserved in the upper left hand corner for the operational menu of the program being executed.

In addition to the mere operating system, which loads and executes programs and interchanges information between different locations, there is an extensive collection of service programs, ranging from language compilers to spelling checkers and even a copy of the Holy Bible. Two of the more important utilities are the Program Manager and the Interface Builder . There is quite an art to filling up the margins of the screen with useful or potentially useful artifacts while still preserving some space in which to maneuver.


  
Figure 2: A REC-R program, running against a background consisting of the File Viewer and some other programs. The dock for permanent programs is visible as a column in the right margin; the menu for the running program occupies a column at the left margin, although it could be moved elsewhere if desired. A corner of File Viewer sits at the upper right, the main window for Interface Builder sits in the background at the lower left.
\begin{figure}
\centering
\begin{picture}
(406,320)
\put(0,0){\epsfxsize=406pt \epsffile{recinsitu.eps}}
\end{picture}
\end{figure}

The Program Manager mostly checks dates on files, to be sure that the source code for a program is not more recent than the object code. To do so, it maintains lists of all kinds of associated material such as header files, icon images, sounds, and what not. The Interface Builder permits non-verbal programming, in the sense that windows can be created, stocked with assorted artifacts, and have them interconnected, all through the suitable interpretation of mouse movements. Much programming can be accomplished in those terms, at least during the stages of initial layout.

Going beyond simple tinkering, one needs to use the language Objective C which is a mixture of ${\sf C^{++}}$ and SmallTalk. The latter uses Methods, which are statements with the syntax [destination operation xxx :argument1 xxx :argument2 ...], where xxx denotes arbitrary intercalcated text, usually taking the form of helpful comments or comprising pieces of the body of a simple declaration in which the arguments are embedded. The destination is an Object, which is really a fancy name for a program to be executed1. SmallTalk envisioned parallel programming, in which several independent programs could communicate with one another by exchanging messages coordinating their activities.

A familiarity with Objective C will be necessary to follow the program listings which are about to be described. In the process it cannot be avoided noticing that NeXTSTEP already includes a vast number of predefined methods destined to manage the user interface. They are all located in a directory, together with supporting information, which can be consulted online, or selectively printed out for further enlightenment.


next up previous
Next: Program Appearance Up: Introduction Previous: pen movement operators
Microcomputadoras
2001-01-10