home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / opendc12.zip / od124os2.exe / od12osp1.exe / pkg / ja_JP / iodclock.odz / iodclock.idl < prev    next >
Text File  |  1997-04-02  |  3KB  |  112 lines

  1. //#====START_GENERATED_PROLOG======================================
  2. //#
  3. //#
  4. //#   COMPONENT_NAME: odclockpart
  5. //#
  6. //#   CLASSES: none
  7. //#
  8. //#   ORIGINS: 27
  9. //#
  10. //#
  11. //#   (C) COPYRIGHT International Business Machines Corp. 1995,1996
  12. //#   All Rights Reserved
  13. //#   Licensed Materials - Property of IBM
  14. //#   US Government Users Restricted Rights - Use, duplication or
  15. //#   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  16. //#
  17. //#   IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  18. //#   ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  19. //#   PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  20. //#   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  21. //#   USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  22. //#   OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  23. //#   OR PERFORMANCE OF THIS SOFTWARE.
  24. //#
  25. //#====END_GENERATED_PROLOG========================================
  26. //#
  27. // @(#)Z 1.11 com/src/samples/clock/iodclock.idl, odclockpart, od96os2, odos29712d 97/03/21 17:45:26 (96/10/09 19:22:26)
  28. #ifdef __PRIVATE__
  29. //#
  30. //#     File:           iodclock.idl
  31. //#
  32. //#     Contains:       IDL description of Clock Part
  33. //#
  34. //#     Written by:
  35. //#
  36. //#     Copyright:      (c) 1996 by IBM Corp., all rights reserved.
  37. //#
  38. #else
  39. //#     Copyright:      (c) 1996 by IBM Corp., all rights reserved.
  40. #endif
  41.  
  42.  
  43. #ifndef _Clock_
  44. #define _Clock_
  45.  
  46. // Include ShapePart and M_ShapePart definitions.
  47. #include "iodshape.idl"
  48.  
  49. //===================================================================================================
  50. // Classes defined in this interface
  51. //===================================================================================================
  52. interface Clock;
  53. interface M_Clock;
  54.  
  55.  
  56. //===================================================================================================
  57. // Clock Implementation
  58. //===================================================================================================
  59.  
  60. interface Clock : ShapePart
  61. {
  62.         void      InvalidateHands(in ODFacet facet, in ODFrame frame);
  63. #ifdef __SOMIDL__
  64.         implementation
  65.         {
  66.                 functionprefix = Clock;
  67.                 metaclass     = M_Clock;
  68.                 majorversion = 1;
  69.                 minorversion = 0;
  70.                 dllname = "iodclock.dll";
  71.  
  72.         releaseorder:
  73.                InvalidateHands;
  74.  
  75.  
  76.         override:
  77.                CommonInit,
  78.                Draw,
  79.                Externalize,
  80.                HandleEvent;
  81.  
  82.  
  83. //===================================================================================================
  84. // Clock variables
  85. //===================================================================================================
  86.  
  87.          float ClockPtx[359];  // x coordinate for each of 360 degrees
  88.          float ClockPty[359];  // y coordinate for each of 360 degrees
  89.  
  90.  
  91.         };
  92. #endif
  93. };
  94.  
  95. interface M_Clock : M_ShapePart
  96. {
  97.  
  98. #ifdef __SOMIDL__
  99.   implementation
  100.   {
  101.     functionprefix = M_Clock;
  102.     override:
  103.       clsGetODPartHandlerName,
  104.       clsGetODPartHandlerDisplayName,
  105.       clsGetODPartKinds,
  106.       clsGetOLE2ClassId,
  107.       clsGetWindowsIconFileName;
  108.   };
  109. #endif
  110. };
  111. #endif  // _Clock_
  112.