home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 113 / EnigmaAmiga113CD.iso / software / sviluppo / easygui_os12 / source / plugins / ticker_os12.e < prev    next >
Encoding:
Text File  |  2000-06-11  |  595 b   |  31 lines

  1.  
  2. OPT MODULE
  3. OPT PREPROCESS
  4.  
  5. -> RST: Added conditional EASY_OS12 support
  6. #define EASY_OS12
  7.  
  8. #ifdef EASY_OS12
  9.   MODULE 'tools/easygui_os12'
  10. #endif
  11. #ifndef EASY_OS12
  12.   OPT OSVERSION=37
  13.   MODULE 'tools/easygui'
  14. #endif
  15.  
  16. MODULE 'intuition/intuition'
  17.  
  18. EXPORT OBJECT ticker OF plugin
  19. ENDOBJECT
  20.  
  21. PROC min_size(ta,fh) OF ticker IS 0,0
  22.  
  23. PROC will_resize() OF ticker IS FALSE
  24.  
  25. PROC render(ta,x,y,xs,ys,w:PTR TO window) OF ticker IS EMPTY
  26.  
  27. PROC message_test(imsg:PTR TO intuimessage,win:PTR TO window) OF ticker
  28. ENDPROC imsg.class=IDCMP_INTUITICKS
  29.  
  30. PROC message_action(class,qual,code,win) OF ticker IS TRUE
  31.