home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / rkrm.lha / RKRM / Intuition / Images_Text / shadowborder.c < prev    next >
C/C++ Source or Header  |  1992-09-03  |  5KB  |  144 lines

  1. ;/* shadowborder.c - Execute me to compile me with SAS C 5.10
  2. LC -b1 -cfistq -v -y -j73 shadowborder.c
  3. Blink FROM LIB:c.o,shadowborder.o TO shadowborder LIBRARY LIB:LC.lib,LIB:Amiga.lib
  4. quit
  5. */
  6.  
  7. /*
  8. Copyright (c) 1992 Commodore-Amiga, Inc.
  9.  
  10. This example is provided in electronic form by Commodore-Amiga, Inc. for
  11. use with the "Amiga ROM Kernel Reference Manual: Libraries", 3rd Edition,
  12. published by Addison-Wesley (ISBN 0-201-56774-1).
  13.  
  14. The "Amiga ROM Kernel Reference Manual: Libraries" contains additional
  15. information on the correct usage of the techniques and operating system
  16. functions presented in these examples.  The source and executable code
  17. of these examples may only be distributed in free electronic form, via
  18. bulletin board or as part of a fully non-commercial and freely
  19. redistributable diskette.  Both the source and executable code (including
  20. comments) must be included, without modification, in any copy.  This
  21. example may not be published in printed form or distributed with any
  22. commercial product.  However, the programming techniques and support
  23. routines set forth in these examples may be used in the development
  24. of original executable software products for Commodore Amiga computers.
  25.  
  26. All other rights reserved.
  27.  
  28. This example is provided "as-is" and is subject to change; no
  29. warranties are made.  All use is at your own risk. No liability or
  30. responsibility is assumed.
  31. */
  32.  
  33. /*
  34. ** shadowborder.c - program to show the use of an Intuition Border.
  35. */
  36. #define INTUI_V36_NAMES_ONLY
  37.  
  38. #include <exec/types.h>
  39. #include <intuition/intuition.h>
  40.  
  41. #include <clib/exec_protos.h>
  42. #include <clib/dos_protos.h>
  43. #include <clib/intuition_protos.h>
  44.  
  45. #include <stdio.h>
  46.  
  47. #ifdef LATTICE
  48. int CXBRK(void)    { return(0); }  /* Disable Lattice CTRL/C handling */
  49. int chkabort(void) { return(0); }  /* really */
  50. #endif
  51.  
  52. struct Library *IntuitionBase = NULL;
  53.  
  54. #define MYBORDER_LEFT   (0)
  55. #define MYBORDER_TOP    (0)
  56.  
  57. /* This is the border data. */
  58. WORD myBorderData[] =
  59.     {
  60.     0,0, 50,0, 50,30, 0,30, 0,0,
  61.     };
  62.  
  63.  
  64. /*
  65. ** main routine. Open required library and window and draw the images.
  66. ** This routine opens a very simple window with no IDCMP.  See the
  67. ** chapters on "Windows" and "Input and Output Methods" for more info.
  68. ** Free all resources when done.
  69. */
  70. VOID main(int argc, char **argv)
  71. {
  72. struct Screen   *screen;
  73. struct DrawInfo *drawinfo;
  74. struct Window   *win;
  75. struct Border    shineBorder;
  76. struct Border    shadowBorder;
  77.  
  78. ULONG mySHADOWPEN = 1;  /* set default values for pens */
  79. ULONG mySHINEPEN  = 2;  /* in case can't get info...   */
  80.  
  81. IntuitionBase = OpenLibrary("intuition.library",37);
  82. if (IntuitionBase)
  83.     {
  84.     if (screen = LockPubScreen(NULL))
  85.         {
  86.         if (drawinfo = GetScreenDrawInfo(screen))
  87.             {
  88.             /* Get a copy of the correct pens for the screen.
  89.             ** This is very important in case the user or the
  90.             ** application has the pens set in a unusual way.
  91.             */
  92.             mySHADOWPEN = drawinfo->dri_Pens[SHADOWPEN];
  93.             mySHINEPEN  = drawinfo->dri_Pens[SHINEPEN];
  94.  
  95.             FreeScreenDrawInfo(screen,drawinfo);
  96.             }
  97.         UnlockPubScreen(NULL,screen);
  98.         }
  99.  
  100.     /* open a simple window on the workbench screen for displaying
  101.     ** a border.  An application would probably never use such a
  102.     ** window, but it is useful for demonstrating graphics...
  103.     */
  104.     if (win = OpenWindowTags(NULL,
  105.                         WA_PubScreen,  screen,
  106.                         WA_RMBTrap,      TRUE,
  107.                         TAG_END))
  108.         {
  109.         /* set information specific to the shadow component of the border */
  110.         shadowBorder.LeftEdge   = MYBORDER_LEFT + 1;
  111.         shadowBorder.TopEdge    = MYBORDER_TOP + 1;
  112.         shadowBorder.FrontPen   = mySHADOWPEN;
  113.         shadowBorder.NextBorder = &shineBorder;
  114.  
  115.         /* set information specific to the shine component of the border */
  116.         shineBorder.LeftEdge    = MYBORDER_LEFT;
  117.         shineBorder.TopEdge     = MYBORDER_TOP;
  118.         shineBorder.FrontPen    = mySHINEPEN;
  119.         shineBorder.NextBorder  = NULL;
  120.  
  121.         /* the following attributes are the same for both borders. */
  122.         shadowBorder.BackPen    = shineBorder.BackPen   = 0;
  123.         shadowBorder.DrawMode   = shineBorder.DrawMode  = JAM1;
  124.         shadowBorder.Count      = shineBorder.Count     = 5;
  125.         shadowBorder.XY         = shineBorder.XY        = myBorderData;
  126.  
  127.         /* Draw the border at 10,10 */
  128.         DrawBorder(win->RPort,&shadowBorder,10,10);
  129.  
  130.         /* Draw the border again at 100,10 */
  131.         DrawBorder(win->RPort,&shadowBorder,100,10);
  132.  
  133.         /* Wait a bit, then quit.
  134.         ** In a real application, this would be an event loop, like the
  135.         ** one described in the Intuition Input and Output Methods chapter.
  136.         */
  137.         Delay(200);
  138.  
  139.         CloseWindow(win);
  140.         }
  141.     CloseLibrary(IntuitionBase);
  142.     }
  143. }
  144.