home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / text / c_manual / intuition / colourwindow / example.c < prev    next >
C/C++ Source or Header  |  1995-02-27  |  4KB  |  127 lines

  1. /***********************************************************/
  2. /*                                                         */
  3. /* Amiga C Encyclopedia (ACE) V3.0      Amiga C Club (ACC) */
  4. /* -------------------------------      ------------------ */
  5. /*                                                         */
  6. /* Book:    ACM Intuition               Amiga C Club       */
  7. /* Chapter: ColourWindow                Tulevagen 22       */
  8. /* File:    Example.c                   181 41  LIDINGO    */
  9. /* Author:  Anders Bjerin               SWEDEN             */
  10. /* Date:    92-05-01                                       */
  11. /* Version: 1.10                                           */
  12. /*                                                         */
  13. /*   Copyright 1992, Anders Bjerin - Amiga C Club (ACC)    */
  14. /*                                                         */
  15. /* Registered members may use this program freely in their */
  16. /*     own commercial/noncommercial programs/articles.     */
  17. /*                                                         */
  18. /***********************************************************/
  19.  
  20.  
  21.  
  22. /* Include Intuition's and ColourWindow's header file: */
  23. #include <intuition/intuition.h>
  24. #include "ColourWindow.h"
  25.  
  26.  
  27.  
  28. /* ColourWindow needs both the Intuition and Graphics library: */
  29. struct IntuitionBase *IntuitionBase = NULL;
  30. struct GfxBase *GfxBase = NULL;
  31.  
  32.  
  33.  
  34. /* Declare a pointer to a Screen structure: */ 
  35. struct Screen *screen = NULL;
  36.  
  37. /* Declare and initialize a NewScreen structure: */
  38. struct NewScreen screen_data=
  39. {
  40.   0,            /* LeftEdge  Should always be 0. */
  41.   0,            /* TopEdge   Top of the display. */
  42.   640,          /* Width     We are using a high resolution screen. */
  43.   200,          /* Height    Non-Interlaced NTSC (American) display. */
  44.   4,            /* Depth     16 colours. */
  45.   0,            /* DetailPen Text should be drawn with colour reg. 0 */
  46.   1,            /* BlockPen  Blocks should be drawn with colour reg. 1 */
  47.   HIRES,        /* ViewModes High-resolution. (Non-Interlaced) */
  48.   CUSTOMSCREEN, /* Type      A customized screen. */
  49.   NULL,         /* Font      Default font. */
  50.  
  51.   "ColourWindow  V1.10  By Anders Bjerin",  /* Title */
  52.  
  53.   NULL,         /* Gadget    Must for the moment be NULL. */
  54.   NULL          /* BitMap    No special CustomBitMap. */
  55. };
  56.  
  57.  
  58.  
  59. void main();
  60. void CleanUp();
  61.  
  62.  
  63.  
  64. void main()
  65. {
  66.   UBYTE result;
  67.  
  68.  
  69.  
  70.   /* 1. Open the Intuition Library: */
  71.   IntuitionBase = (struct IntuitionBase *)
  72.     OpenLibrary( "intuition.library", 0 );
  73.   if( IntuitionBase == NULL )
  74.     CleanUp( "Could NOT open the Intuition Library!" );
  75.  
  76.  
  77.  
  78.   /* 2. Open the Graphics Library: */
  79.   GfxBase = (struct GfxBase *)
  80.     OpenLibrary( "graphics.library", 0 );
  81.   if( GfxBase == NULL )
  82.     CleanUp( "Could NOT open the Graphics Library!" );
  83.  
  84.  
  85.  
  86.   /* 3. Open the screen: */
  87.   screen = (struct Screen *) OpenScreen( &screen_data );
  88.   if( screen == NULL )
  89.     CleanUp( "Could NOT open the Screen!" );
  90.  
  91.  
  92.  
  93.   result = ColourWindow( screen, "ColourWindow V1.10", 20, 20 );
  94.  
  95.   switch( result )
  96.   {
  97.     case ERROR:  printf("ERROR!\n");  break;
  98.     case OK:     printf("OK!\n");     break;
  99.     case CANCEL: printf("CANCEL!\n"); break;
  100.     case QUIT:   printf("QUIT!\n");   break;
  101.   }
  102.  
  103.  
  104.  
  105.   CleanUp( "THE END" );
  106. }
  107.  
  108.  
  109.  
  110. /* This function will close everything that have been opened: */
  111. void CleanUp( message )
  112. STRPTR message;
  113. {
  114.   if( screen )
  115.     CloseScreen( screen );
  116.   
  117.   if( GfxBase )
  118.     CloseLibrary( GfxBase );
  119.   
  120.   if( IntuitionBase )
  121.     CloseLibrary( IntuitionBase );
  122.  
  123.   printf("%s\n", message );
  124.  
  125.   exit();
  126. }
  127.