home *** CD-ROM | disk | FTP | other *** search
-
- /* Generated by Interface Builder */
-
- #import "MyObject.h"
- #import <appkit/Panel.h>
-
- @implementation MyObject
-
- - alert:sender
- {
- int answer;
- answer = NXRunAlertPanel("Title is here", "This is the Message", "Default", "Option One", "Option Two");
- // Default (right button) returns a 1, Option One a 0, and Option Two a -1
- printf("Answer = %d\n", answer);
- return self;
- }
-
-
- @end
-