TweetFollow Us on Twitter

NeXT for Mac Devs
Volume Number:6
Issue Number:12
Column Tag:The Cross Developer

NeXT for Mac Programmers

By C. Keith Ray, Irving, TX

NeXT programming for Mac Programmers

Object oriented programming is a hot topic in the press recently, but people in the industry even now may not understand what all the excitement is about. I am a Macintosh programmer who has lately been developing an application on the NeXT cube, which is today the only machine for the mass market that requires programming in an object-oriented language. (Of course, traditional text-based Unix programming can be done in standard C.) And while it isn’t strictly required, NeXT strongly encourages the use of Interface Builder, a kind of “resource editor” for linking together the objects that comprise a NextStep-using application. Object-oriented programming is, in its simplest explanation, a way of structuring code in a manner somewhat different from the usual methods of structured programming. However, it turns out that dynamic allocation of objects, polymorphism, and inheritance give object-oriented programming a new kind of power that is hard for a traditional programmer to imagine.

An object-oriented language, no matter how well designed, is not of immediate benefit to its users unless a good object-library comes with it. The NextStep library is written in NeXT Inc.’s version of Objective-C; it goes far beyond the minimal library that come with commercial versions of Objective C for other computers. As a very rough estimate, I would say that NextStep has all the functionality of MacApp plus more features, but at a higher level of abstraction (with perhaps less freedom of customization). Not having used MacApp (I’ve only read about it), I can not comment further in this comparison.

The typical method of programming on the NeXT starts with Interface Builder. Starting a new project, you are given a default window with resize, miniaturize, and close controls, a default menu containing a few items, and a default panel for displaying copyright information. Interface Builder has a palette containing selections for additional defined and undefined menu items, panels and windows, and different kinds of controls: buttons, sliders, scrolling-fields, text-fields, etc. You can create custom versions of Interface Builder with additional palette objects. (Panels are windows that would be used as modal or modeless dialogs.) A menu item brings up a an inspector window, which can be used for managing the project’s files as well as textually modifying selected objects. Using Interface Builder is fairly easy for any Mac programmer already familiar with ResEdit, Prototyper, etc., though this program does not have the most straight-forward user-interface. It can be rather frustrating at first, and tedious as your skill grows.

Prototyper on the Macintosh allows linking buttons and menu items to dialogs and windows, to provide a minimal amount of control -- opening or closing windows and dialogs is about all you can do. Prototyper can also be used to generate an editable resource file and C or Pascal code for handling dialogs, windows, scroll bars (with some bugs in the version I used), menus, etc. You can then use that code as the framework for your own programming, and you can rewrite the code as needed. Interface Builder doesn’t work as a code generator in the same manner as Prototyper. It creates a “.nib” file for your project, which seems to hold the data required for the windows, menus, etc. No specifications for the format of the “.nib” have been published as far as I know. (I suspect that Interface Builder takes advantage of archiving methods implemented by all the AppKit classes.) During the link-step of compiling to an executable, data from the “.nib” is put into a mach-file-segment. Mach-file-segments may also hold the bitmap data from TIFF files to be used as icons and pictures in and for the application. The code generated by IB only contains instance variables that will refer to the objects you have used (menus, buttons, whatever), methods to initialize those instance variables, and a main program stub that creates the application-object, tells it to read in the data from the “.nib” segment, and starts it running. You can also write code to dynamically load in .nib files, allowing multiple instances of the same objects. In something almost approximating a SmallTalk browser, you can have Interface Builder generate the Objective-C declarations in a header file for a custom object class.

A major difference between Mac programs and NeXT programs is in the event-handling structure. On the Mac, you have a top-level routine (often the main program) that calls GetNextEvent or WaitNextEvent and branches through a switch or case statement to decide on which routine should handle the most recent event according to the current program state. On the NeXT, you normally create at least one custom object, often a subclass of View, which you link via interface builder to the user-interface objects. When you make the link, you specify what method the object should call in your custom object. If your custom object has not already inherited a definition for that method, then you have to write the code for that method. An example is linking a button named “Launch Rockets” to your custom-view, calling the method “rocketlaunch:sender”. Another example would be to link the menu item “Print” to your custom view, calling the inherited method “PrintPSCode”. The way events reach your code is kept behind the scenes: the application object gets events from the event-queue in a manner similar to the Macintosh, it also knows which windows it has and forwards appropriate events to those windows. The windows forward events to whatever internal objects they know about, and so on through the hierarchy of views and subviews of windows. Eventually an object receives an event that it knows how to handle, and it calls a method to perform the appropriate action. The only code you write are those methods to be called by the user-interface objects. The only time you need to write code for checking events is when you are doing animation, or tracing mouse movements in real time.

The source code example is an example of an Objective C program that could be expanded into an arcade game. The main program merely gets the ball rolling, so to speak -- the RocketView class is essentially the entire program. Note that the program is completely passive, it only responds to events, and in this case the events are the initial-window-exposed event, clicking in the launch-rockets button, and choosing Print from the main menu. If you want your program to do something in the absence of events, such as animating the missiles while waiting for other button-presses, you will have to create timer-events to start up and/or continue your animation-loop. The BreakApp example program that comes with the NeXT uses an “Animator” object that simplifies creation of these timer-events, and can also be used to check if a non-timer event has occurred.

Something that old-world (PC, mainframe) programmers may have a very difficult time understanding, is that methods are not separate processes. (You can write code C code to use multiple MACH threads, semaphores, etc., but that depends on operating-system calls not related to Objective-C.) You generally cannot have a method continuously executing and also have other methods respond to external events. Nor are methods like interrupt-routines. You cannot have a method which will be continued automatically after an another method interrupts it. It is possible to poll for events in the Macintosh fashion, and go through a switch or case statement for handling events, but then you can not use Interface Builder to link user-interface objects to call methods in your code, and you lose the other benefit of having the pseudo-resource-file that Interface Builder provides.

The compiler on the NeXT is the GNU C compiler, customized by NeXT to compile Objective-C directly instead of using a preprocessor. The debugger is GNU’s symbolic debugger “gdb”, which uses a command-line syntax and runs under the Shell. The debugger is about as powerful as the THINK C and THINK Pascal symbolic debuggers, though much more inconvenient. Because of the Free Software Foundation’s CopyLeft agreement, you can obtain the source code of the compiler, the debugger, and EMACS, with NeXT’s modifications, for $150 plus an magneto-optical disk.

All in all, the NeXT environment reflects the desire to provide a Macintosh-like interface without duplicating the Macintosh’s difficulty in programming. The goal of making NeXT programming easy to learn and powerful at the same time, has been met with the NextStep object library and Interface Builder. The downside, just like Apple, is that you have to follow the rules.

Next’s Application Kit, Sound Kit, and Music Kit, and Base Objective-C object classes, in alphabetical order with inheritances listed -- all are ultimately descended from Object.

ActionCell : Cell
Application : Responder
Bitmap
Box : View  : Responder
Button : Control : View  : Responder
ButtonCell : ActionCell : Cell
Cell
ChoosePrinter : Panel : Window : Responder
ClipView : View : Responder
Conductor
Control : View  : Responder
Cursor : Bitmap
Envelope
FilePerformer : Performer
FileWriter : Instrument
Font
FontManager
FontPanel  : Panel : Window : Responder
Form : Matrix  : Control : View  : Responder
FormCell : ActionCell : Cell
HashTable
Instrument
List
Listener
Matrix  : Control : View  : Responder
Menu  : Panel : Window : Responder
MenuCell : ButtonCell : ActionCell : Cell
Midi
Note
NoteFilter : Instrument
NoteReceiver
NoteSender
Object (root class)
OpenPanel : SavePanel  : Panel : Window : Responder
Orchestra
PageLayout  : Panel : Window : Responder
Panel : Window : Responder
Part
Partials : WaveTable
PartPerformer : Performer
PartRecorder : Instrument
Pasteboard
PatchTemplate 
Performer
PopUpList : Menu  : Panel : Window : Responder
PrintInfo
PrintPanel  : Panel : Window : Responder
Responder
Samples : WaveTable
SavePanel  : Panel : Window : Responder
Score
ScoreFilePerformer : Fileperformer : Performer 
ScoreFileWriter : FileWriter : Instrument
ScorePerformer
ScoreRecorder
Scroller  : Control : View  : Responder
ScrollView : View  : Responder
SelectionCell : Cell
Slider  : Control : View  : Responder
SliderCell : ActionCell : Cell
Sound
SoundMeter : View : Responder 
SoundView : VIew : Responder
Speaker
Storage
StreamTable : HashTable
SynthData
SynthInstrument : Instrument
SynthPatch
Text : View  : Responder
TextField  : Control : View  : Responder
TextFieldCell : ActionCell : Cell
TuningSystem
UnitGenerator
View  : Responder
WaveTable
Window : Responder
program file RocketApp.m

/* The main program ( RocketApp_main.m ) */

#include <appkit/appkit.h>
#include <stdio.h>

int main(int argc, char * argv[])
{
 id app;

 app = [ Application new ];
 [ app loadFromNibFile: “RocketApp.nib” ];
 [ app run ];  /* this loops until Quit selected. */
 [ app free ];

 exit( 0 );
}
-- the header file RocketView.h --

/* FILE = RocketView.h */

#import <appkit/appkit.h>

#define MAXMISSLES 5

@interface  RocketView : View 
/* subclass of view */
{
 /* all instance variables are private by default. */

 NXPointmisslePositions[MAXMISSLES];
 BOOL   misslesLaunched;
 int    numRockets;

 /* we could have created an array of missle objects and allowed more 
flexibility in modifying this program later... */

 idBlaunchRockets; 
 /* launch rocket button */

 idIFnumberRockets; 
 /* input text field = a Form object */
}

+ newFrame: (const NXRect *) frameRect;
 /* override View’s default newFrame method - this is a “factory method” 
for creating instances of the class. */

- updatedrawing;
 /* draws the missles in the view -- an “instance method” */

- drawSelf: (const NXRect *) rects : (int) rectCount;
 /* override View’s default drawing method -- we don’t call this directly. 
 “drawSelf::” gets called when the window/view objects are first displayed, 
and at certain other times, such as in response to the “printPSCode:” 
message.  By properly defining this routine, the program can automatically 
support printing as well as displaying -- so long as you don’t use certain 
Display PostScript extensions, such as compositing bitmaps! */

- setBlaunchRockers:anObject;
 /* created by interface builder */

- setIFnumberRockets:anObject;
 /* created by interface builder */

/* “setBlaunchRockers:” and “setIFnumberRockets:” are required by Interface 
Builder and the application object’s “loadNibFile:” methods -- these 
link the button and form objects specified in Interface Builder with 
the id-variables used in your code. */

- rocketlaunch:sender;

/* in this program, the sender will always be the button named “Launch 
Rockets” and this routine will be called when the user clicks in this 
button object during execution of this program */

@end
-- program file RocketView.m --

/* FILE = RocketView.m */

#import <appkit/appkit.h>
#import “rocketview.h”

@implementation  RocketView : View
{
 /* repeating the instance-variables part of the object declaration is 
not required by the syntax, but it is permitted and checked to match 
the interface declaration, and I think it is a good idea for documentation 
purposes. */

 NXPointmisslePositions[MAXMISSLES];
 BOOL   misslesLaunched;
 int    numRockets;

 idBlaunchRockets; 
 /* launch rocket button */

 idIFnumberRockets; 
 /* input text field = a Form object */
}

+ newFrame: (const NXRect *) frameRect
 /* override View’s default newFrame method */
{
 int i;

 self = [ super newFrame: frameRect ]; 

/* change self to point to the newly created object-instance, instead 
of pointing to the rocketView Factory object. */

 numRockets = 0;
 for ( i = 0; i < MAXMISSLES ; i++ )
 {
 misslePositions[i].x = (1+i) * 10;
 misslePositions[i].y = 10.0;
 }
 misslesLaunched = NO;

 [self setFlip: NO]; 
 /* keep 0,0 at lower left corner of view */
 
 [self allocateGstate];
 return self; 
}

- updatedrawing
 /* draws the missles in the view */
{
 int i;

 [self lockFocus ];

 if ( misslesLaunched )
 {
 for (i = 0; i < numRockets - 1; i++ )
 { 
 /* draw Very simple missles -- 
 not even animated! */
 PSmoveto( misslePositions[i].x, misslePositions[i].y );
 PSlineto( misslePositions[i].x, misslePositions[i].y + 10.0 );
 PSstroke();
 }
 }
 NXPing(); 

 /* NXPing forces the window manager to update the view on screen -- 
flushes the postscript pipeline */

 [self unlockFocus];

 return self; 

 /* if nothing else, tradition says return self */
}

- drawSelf: (const NXRect *) rects : (int) rectCount
 /* override View’s default drawing method */
{
 /* ignore the rectangles which could be used for limiting the amount 
of drawing required. */

 [ self updatedrawing ];
 return self;
}

- setBlaunchRockers:anObject
 /* created by interface builder */
{
 BlaunchRockers = anObject;
 return self;
}

- setIFnumberRockets:anObject
 /* created by interface builder */
{
 IFnumberRockets = anObject;
 return self;
}

- rocketlaunch:sender
 /* in this program, this sender will always be the button named “Launch 
Rockets” and this routine will be called when the user clicks in this 
button object during execution of this program */
{
 int i;

 if ( ! misslesLaunched )
 {
 misslesLaunched = YES;
 i = [ IFnumberRockets intValueAt: 0 ];

 /* get the number of rockets from the string contained in the Form. 
 We specified an initial default value with Interface Builder; at any 
time before pushing the button, the user could change the text to any 
string.  If an integer can not be parsed from the string, we get zero 
as the value. */
 
 if ( i <= MAXMISSLES )
 {
 numRockets = i;
 }
 }
 else
 {
 NXBeep();
 }
 [ self updatedrawing ];
}

@end

List of trademarks

NeXT, NextStep, Interface Builder, Application Kit, Music Kit, and Sound Kit are a trademarks of NeXT, Inc.

Display PostScipt, and PostScript are trademarks of Adobe, Inc.

Unix is a trademark of AT&T.

GDB, GNU C, and GNUemacs, are trademarks of the Free Software Foundation.

Prototyper is a trademark of Smethers-Barns.

Macintosh is a trademark licensed to Apple Computer, Inc.

MacApp is a trademark of Apple Computer, Inc.

 
AAPL
$501.11
Apple Inc.
+2.43
MSFT
$34.64
Microsoft Corpora
+0.15
GOOG
$898.03
Google Inc.
+16.02

MacTech Search:
Community Search:

Software Updates via MacUpdate

Paperless 2.3.1 - Digital documents mana...
Paperless is a digital documents manager. Remember when everyone talked about how we would soon be a paperless society? Now it seems like we use paper more than ever. Let's face it - we need and we... Read more
Apple HP Printer Drivers 2.16.1 - For OS...
Apple HP Printer Drivers includes the latest HP printing and scanning software for Mac OS X 10.6, 10.7 and 10.8. For information about supported printer models, see this page.Version 2.16.1: This... Read more
Yep 3.5.1 - Organize and manage all your...
Yep is a document organization and management tool. Like iTunes for music or iPhoto for photos, Yep lets you search and view your documents in a comfortable interface, while offering the ability to... Read more
Apple Canon Laser Printer Drivers 2.11 -...
Apple Canon Laser Printer Drivers is the latest Canon Laser printing and scanning software for Mac OS X 10.6, 10.7 and 10.8. For information about supported printer models, see this page.Version 2.11... Read more
Apple Java for Mac OS X 10.6 Update 17 -...
Apple Java for Mac OS X 10.6 delivers improved security, reliability, and compatibility by updating Java SE 6.Version Update 17: Java for Mac OS X 10.6 Update 17 delivers improved security,... Read more
Arq 3.3 - Online backup (requires Amazon...
Arq is online backup for the Mac using Amazon S3 and Amazon Glacier. It backs-up and faithfully restores all the special metadata of Mac files that other products don't, including resource forks,... Read more
Apple Java 2013-005 - For OS X 10.7 and...
Apple Java for OS X 2013-005 delivers improved security, reliability, and compatibility by updating Java SE 6 to 1.6.0_65. On systems that have not already installed Java for OS X 2012-006, this... Read more
DEVONthink Pro 2.7 - Knowledge base, inf...
Save 10% with our exclusive coupon code: MACUPDATE10 DEVONthink Pro is your essential assistant for today's world, where almost everything is digital. From shopping receipts to important research... Read more
VirtualBox 4.3.0 - x86 virtualization so...
VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers... Read more
Merlin 2.9.2 - Project management softwa...
Merlin is the only native network-based collaborative Project Management solution for Mac OS X. This version offers many features propelling Merlin to the top of Mac OS X professional project... Read more

Briquid Gets Updated with New Undo Butto...
Briquid Gets Updated with New Undo Button, Achievements, and Leaderboards, on Sale for $0.99 Posted by Andrew Stevens on October 16th, 2013 [ | Read more »
Halloween – iLovecraft Brings Frightenin...
Halloween – iLovecraft Brings Frightening Stories From Author H.P. | Read more »
The Blockheads Creator David Frampton Gi...
The Blockheads Creator David Frampton Gives a Postmortem on the Creation Process of the Game Posted by Andrew Stevens on October 16th, 2013 [ permalink ] Hey, a | Read more »
Sorcery! Enhances the Gameplay in Latest...
Sorcery! | Read more »
It Came From Australia: Tiny Death Star
NimbleBit and Disney have teamed up to make Star Wars: Tiny Death Star, a Star Wars take on Tiny Tower. Right now, the game is in testing in Australia (you will never find a more wretched hive of scum and villainy) but we were able to sneak past... | Read more »
FIST OF AWESOME Review
FIST OF AWESOME Review By Rob Rich on October 16th, 2013 Our Rating: :: TALK TO THE FISTUniversal App - Designed for iPhone and iPad A totalitarian society of bears is only the tip of the iceberg in this throwback brawler.   | Read more »
PROVERBidioms Paints English Sayings in...
PROVERBidioms Paints English Sayings in a Picture for Users to Find Posted by Andrew Stevens on October 16th, 2013 [ permalink ] | Read more »
OmniFocus 2 for iPhone Review
OmniFocus 2 for iPhone Review By Carter Dotson on October 16th, 2013 Our Rating: :: OMNIPOTENTiPhone App - Designed for the iPhone, compatible with the iPad OmniFocus 2 for iPhone is a task management app for people who absolutely... | Read more »
Ingress – Google’s Augmented-Reality Gam...
Ingress – Google’s Augmented-Reality Game to Make its Way to iOS Next Year Posted by Andrew Stevens on October 16th, 2013 [ permalink ] | Read more »
CSR Classics is Full of Ridiculously Pre...
CSR Classics is Full of Ridiculously Pretty Classic Automobiles Posted by Rob Rich on October 16th, 2013 [ permalink ] | Read more »

Price Scanner via MacPrices.net

Apple Store Canada offers refurbished 11-inch...
 The Apple Store Canada has Apple Certified Refurbished 2013 11″ MacBook Airs available starting at CDN$ 849. Save up to $180 off the cost of new models. An Apple one-year warranty is included with... Read more
Updated MacBook Price Trackers
We’ve updated our MacBook Price Trackers with the latest information on prices, bundles, and availability on MacBook Airs, MacBook Pros, and the MacBook Pros with Retina Displays from Apple’s... Read more
13-inch Retina MacBook Pros on sale for up to...
B&H Photo has the 13″ 2.5GHz Retina MacBook Pro on sale for $1399 including free shipping. Their price is $100 off MSRP. They have the 13″ 2.6GHz Retina MacBook Pro on sale for $1580 which is $... Read more
AppleCare Protection Plans on sale for up to...
B&H Photo has 3-Year AppleCare Warranties on sale for up to $105 off MSRP including free shipping plus NY sales tax only: - Mac Laptops 15″ and Above: $244 $105 off MSRP - Mac Laptops 13″ and... Read more
Apple’s 64-bit A7 Processor: One Step Closer...
PC Pro’s Darien Graham-Smith reported that Canonical founder and Ubuntu Linux creator Mark Shuttleworth believes Apple intends to follow Ubuntu’s lead and merge its desktop and mobile operating... Read more
MacBook Pro First, Followed By iPad At The En...
French site Info MacG’s Florian Innocente says he has received availability dates and order of arrival for the next MacBook Pro and the iPad from the same contact who had warned hom of the arrival of... Read more
Chart: iPad Value Decline From NextWorth
With every announcement of a new Apple device, serial upgraders begin selling off their previous models – driving down the resale value. So, with the Oct. 22 Apple announcement date approaching,... Read more
SOASTA Survey: What App Do You Check First in...
SOASTA Inc., the leader in cloud and mobile testing announced the results of its recent survey showing which mobile apps are popular with smartphone owners in major American markets. SOASTA’s survey... Read more
Apple, Samsung Reportedly Both Developing 12-...
Digitimes’ Aaron Lee and Joseph Tsai report that Apple and Samsung Electronics are said to both be planning to release 12-inch tablets, and that Apple is currently cooperating with Quanta Computer on... Read more
Apple’s 2011 MacBook Pro Lineup Suffering Fro...
Appleinsider’s Shane Cole says that owners of early-2011 15-inch and 17-inch MacBook Pros are reporting issues with those models’ discrete AMD graphics processors, which in some cases results in the... Read more

Jobs Board

*Apple* Retail - Manager - Apple (United Sta...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, youre a master of them all. In the stores fast-paced, dynamic Read more
*Apple* Support / *Apple* Technician / Mac...
Apple Support / Apple Technician / Mac Support / Mac Set up / Mac TechnicianMac Set up and Apple Support technicianThe person we are looking for will have worked Read more
Senior Mac / *Apple* Systems Engineer - 318...
318 Inc, a top provider of Apple solutions is seeking a new Senior Apple Systems Engineer to be based out of our Santa Monica, California location. We are a Read more
*Apple* Retail - Manager - Apple Inc. (Unite...
Job Summary Keeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, you’re a master of them all. In the store’s fast-paced, Read more
*Apple* Solutions Consultant - Apple (United...
**Job Summary** Apple Solutions Consultant (ASC) - Retail Representatives Apple Solutions Consultants are trained by Apple on selling Apple -branded products Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.