home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Chip_1997-01_cd.bin / ms95 / disk22 / dir08 / f013040.re_ / f013040.re
Text File  |  1996-04-02  |  3KB  |  79 lines

  1. /*----------------------------------------------------------------------+
  2. |                                    |
  3. | Copyright (1995) Bentley Systems, Inc., All rights reserved.        |
  4. |                                    |
  5. | "AccuDraw", "MicroStation", "MDL", and "MicroCSL" are trademarks of    |
  6. |  Bentley Systems, Inc.                        |
  7. |                                    |
  8. | Limited permission is hereby granted to reproduce and modify this    |
  9. | copyrighted material provided that the resulting code is used only in |
  10. | conjunction with Bentley Systems products under the terms of the    |
  11. | license agreement provided therein, and that this notice is retained    |
  12. | in its entirety in any such reproduction or modification.        |
  13. |                                    |
  14. +----------------------------------------------------------------------*/
  15. /*----------------------------------------------------------------------+
  16. |                                    |
  17. |   adrwdemo.h     Adrwdemo header file                    |
  18. |                                    |
  19. +----------------------------------------------------------------------*/
  20. #if !defined (__adrwdH__)
  21. #define __adrwdH__
  22.  
  23. /*----------------------------------------------------------------------+
  24. |                                    |
  25. |   Include Files                            |
  26. |                                    |
  27. +----------------------------------------------------------------------*/
  28. #define     DIALOGID_Pal        1
  29.  
  30. /*----------------------------------------------------------------------+
  31. |                                    |
  32. |   Item IDs                                |
  33. |                                    |
  34. +----------------------------------------------------------------------*/
  35. #define     TOGGLEID_ShowAxes        1
  36. #define     TOGGLEID_UseCPlane        2
  37.  
  38. /*----------------------------------------------------------------------+
  39. |                                    |
  40. |   Message List ID's                            |
  41. |                                    |
  42. +----------------------------------------------------------------------*/
  43. #define     MSGLIST_commands        0
  44. #define     MSG_cmdLine         1
  45. #define     MSG_cmdCircle        2
  46. #define     MSG_cmdRect         3
  47. #define     MSG_cmdRect2        4
  48. #define     MSG_cmdChange        5
  49.  
  50. #define     MSGLIST_prompts        100
  51. #define     MSG_promptEnterPoint    101
  52. #define     MSG_promptAcceptReject    102
  53.  
  54. /*----------------------------------------------------------------------+
  55. |                                    |
  56. |   Palette Definitions                         |
  57. |                                    |
  58. +----------------------------------------------------------------------*/
  59. #define     ICONCMDFRAMEID_Frame    1
  60.  
  61. #define     ICONCMDID_Line        1
  62. #define     ICONCMDID_Circle        2
  63. #define     ICONCMDID_Rectangle     3
  64. #define     ICONCMDID_Rectangle2    4
  65. #define     ICONCMDID_ChangeCircle    5
  66.  
  67. /*----------------------------------------------------------------------+
  68. |                                    |
  69. |   Local Structure Definitions                     |
  70. |                                    |
  71. +----------------------------------------------------------------------*/
  72. typedef struct adrwdemoinfo
  73.     {
  74.     int     showAxes;
  75.     int     useCPlane;
  76.     } AdrwdemoInfo;
  77.  
  78. #endif /* !defined (__adrwdH__) */
  79.