home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / SHELL.PAK / SHELLAPP.RH < prev    next >
Encoding:
Text File  |  1997-05-06  |  3.2 KB  |  132 lines

  1. //----------------------------------------------------------------------------
  2. //  Project Shell
  3. //  Borland International
  4. //  Copyright ⌐ 1995 Borland International. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    shell.exe Application
  7. //  FILE:         shellapp.h
  8. //  AUTHOR:       The OWL Team
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Constant definitions for all resources defined in shellapp.rc.
  13. //
  14. //----------------------------------------------------------------------------
  15. //#if !defined(shellapp_rh)   // Sentry use file only if it's not already included.
  16. //#define shellapp_rh
  17.  
  18.  
  19. #define IDM_MDI                100             // Menu resource ID and Accelerator IDs
  20.  
  21. //
  22. // CM_FILEnnnn commands (include/owl/editfile.rh except for CM_FILEPRINTPREVIEW)
  23. //
  24. #define CM_MDIFILENEW           24331
  25.  
  26.  
  27. //
  28. // Window commands (include/owl/window.rh)
  29. //
  30. #define CM_EXIT                 24310
  31.  
  32. //
  33. // Windows menu commands (include/owl/mdi.rh)
  34. //
  35. #define CM_CASCADECHILDREN      24361
  36. #define CM_TILECHILDREN         24362
  37. #define CM_TILECHILDRENHORIZ    24363
  38. #define CM_ARRANGEICONS         24364
  39. #define CM_CLOSECHILDREN        24365
  40. #define CM_CREATECHILD          24366
  41.  
  42. //
  43. // Help menu commands.
  44. //
  45. #define CM_HELPABOUT            2009
  46.  
  47.  
  48. //
  49. // About Dialogs
  50. //
  51. #define IDD_ABOUT               22000
  52. #define IDC_VERSION             22001
  53. #define IDC_COPYRIGHT           22002
  54. #define IDC_DEBUG               22003
  55.  
  56.  
  57. //
  58. // OWL defined strings
  59. //
  60.  
  61. //
  62. // Statusbar
  63. //
  64. #define IDS_MODES               32530
  65. #define IDS_MODESOFF            32531
  66.  
  67. //
  68. // EditFile
  69. //
  70. //#define IDS_UNTITLED            32550
  71. //#define IDS_UNABLEREAD          32551
  72. //#define IDS_UNABLEWRITE         32552
  73. //#define IDS_FILECHANGED         32553
  74. //#define IDS_FILEFILTER          32554
  75.  
  76. //
  77. // EditSearch
  78. //
  79. //#define IDS_CANNOTFIND          32540
  80.  
  81.  
  82. //
  83. // General & application exception messages (include/owl/except.rh)
  84. //
  85. #define IDS_UNKNOWNEXCEPTION    32767
  86. #define IDS_OWLEXCEPTION        32766
  87. #define IDS_OKTORESUME          32765
  88. #define IDS_UNHANDLEDXMSG       32764
  89. #define IDS_UNKNOWNERROR        32763
  90. #define IDS_NOAPP               32762
  91. #define IDS_OUTOFMEMORY         32761
  92. #define IDS_INVALIDMODULE       32760
  93. #define IDS_INVALIDMAINWINDOW   32759
  94. #define IDS_VBXLIBRARYFAIL      32758
  95.  
  96. //
  97. // Owl 1 compatibility messages
  98. //
  99. #define IDS_INVALIDWINDOW       32709
  100. #define IDS_INVALIDCHILDWINDOW  32708
  101. #define IDS_INVALIDCLIENTWINDOW 32707
  102.  
  103. //
  104. // TXWindow messages
  105. //
  106. #define IDS_CLASSREGISTERFAIL   32749
  107. #define IDS_CHILDREGISTERFAIL   32748
  108. #define IDS_WINDOWCREATEFAIL    32747
  109. #define IDS_WINDOWEXECUTEFAIL   32746
  110. #define IDS_CHILDCREATEFAIL     32745
  111.  
  112. #define IDS_MENUFAILURE         32744
  113. #define IDS_VALIDATORSYNTAX     32743
  114. #define IDS_PRINTERERROR        32742
  115.  
  116. #define IDS_LAYOUTINCOMPLETE    32741
  117. #define IDS_LAYOUTBADRELWIN     32740
  118.  
  119. //
  120. // TXGdi messages
  121. //
  122. #define IDS_GDIFAILURE          32739
  123. #define IDS_GDIALLOCFAIL        32738
  124. #define IDS_GDICREATEFAIL       32737
  125. #define IDS_GDIRESLOADFAIL      32736
  126. #define IDS_GDIFILEREADFAIL     32735
  127. #define IDS_GDIDELETEFAIL       32734
  128. #define IDS_GDIDESTROYFAIL      32733
  129. #define IDS_INVALIDDIBHANDLE    32732
  130.  
  131. //#endif  // shellapp_rh
  132.