home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Tutorial / Cookbook / 02.alert / MyObject.m < prev    next >
Encoding:
Text File  |  1993-01-18  |  392 b   |  20 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "MyObject.h"
  5. #import <appkit/Panel.h>
  6.  
  7. @implementation MyObject
  8.  
  9. - alert:sender
  10. {
  11. int answer;
  12.     answer = NXRunAlertPanel("Title is here", "This is the Message", "Default", "Option One", "Option Two");
  13.     // Default (right button) returns a 1, Option One a 0, and Option Two a -1
  14.     printf("Answer = %d\n", answer);
  15.     return self;
  16. }
  17.  
  18.  
  19. @end
  20.