home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / INTLDEMO.PAK / INTLDEMO.H < prev    next >
C/C++ Source or Header  |  1995-08-29  |  2KB  |  98 lines

  1. #ifndef __INTLDEMO_H
  2. #define __INTLDEMO_H
  3.  
  4. //Menu IDs
  5. #define CM_FILELIST     300
  6.  
  7. #define CM_LOCALEC      310
  8. #define CM_LOCALEUS     311
  9. #define CM_LOCALEUK     312
  10. #define CM_LOCALEFRENCH 313
  11. #define CM_LOCALEGERMAN 314
  12.  
  13. #define CM_LANGUAGEENGLISH      320
  14. #define CM_LANGUAGEFRENCH       321
  15. #define CM_LANGUAGEGERMAN       322
  16.  
  17. #define CM_ISALNUM      400
  18. #define CM_ISALPHA      401
  19. #define CM_ISASCII      402
  20. #define CM_ISCNTRL      403
  21. #define CM_ISDIGIT      404
  22. #define CM_ISGRAPH      405
  23. #define CM_ISLOWER      406
  24. #define CM_ISPRINT      407
  25. #define CM_ISPUNCT      408
  26. #define CM_ISSPACE      409
  27. #define CM_ISUPPER      410
  28. #define CM_ISXDIGIT     411
  29.  
  30. #define CM_SHOWVALUES   500
  31.  
  32.  
  33. //Dialog and control IDs
  34.  
  35. #define LISTDIALOG      100
  36.  
  37. #define ID_FILELISTBOX  100
  38. #define ID_VIEWBUTTON   104
  39. #define ID_TOLOWERBUT   103
  40. #define ID_SORTBUT 102
  41.  
  42. #define ID_FILEVIEWER 200
  43.  
  44. // bitmap button IDs
  45. #define IDB_VIEW ID_VIEWBUTTON + 1000
  46. #define IDB_LVIEW IDB_VIEW + 1000
  47. #define IDB_VIEWD IDB_LVIEW + 1000
  48. #define IDB_LVIEWD IDB_VIEWD + 1000
  49. #define IDB_VIEWF IDB_LVIEWD + 1000
  50. #define IDB_LVIEWF IDB_VIEWF + 1000
  51.  
  52. #define IDB_TOLOWER ID_TOLOWERBUT + 1000
  53. #define IDB_LTOLOWER IDB_TOLOWER + 1000
  54. #define IDB_TOLOWERD IDB_LTOLOWER + 1000
  55. #define IDB_LTOLOWERD IDB_TOLOWERD + 1000
  56. #define IDB_TOLOWERF IDB_LTOLOWERD + 1000
  57. #define IDB_LTOLOWERF IDB_TOLOWERF + 1000
  58.                        
  59. #define IDB_SORT ID_SORTBUT + 1000
  60. #define IDB_LSORT IDB_SORT + 1000
  61. #define IDB_SORTD IDB_LSORT + 1000
  62. #define IDB_LSORTD IDB_SORTD + 1000
  63. #define IDB_SORTF IDB_LSORTD + 1000
  64. #define IDB_LSORTF IDB_SORTF + 1000
  65.  
  66.  
  67.  
  68. //String IDS
  69. #define STR_APPNAME     1
  70. #define STR_LOCALETITLE 16
  71. #define STR_DECIMALPOINT        17
  72. #define STR_THOUSANDSSEP        18
  73. #define STR_GROUPING    19
  74. #define STR_INTCURRSYMBOL       20
  75. #define STR_CURRENCYSYMBOL      21
  76. #define STR_MONDECIMALPOINT 22
  77. #define STR_MONTHOUSANDSSEP     23
  78. #define STR_MONGROUPING 24
  79. #define STR_POSITIVESIGN        25
  80. #define STR_NEGATIVESIGN        26
  81. #define STR_INTFRACDIGITS       27
  82. #define STR_FRACDIGITS 28
  83. #define STR_PCSPRECEDES 29
  84. #define STR_PSEPBYSPACE 30
  85. #define STR_NCSPRECEDES 31
  86. #define STR_NSEPBYSPACE 32
  87. #define STR_PSIGNPOSN   33
  88. #define STR_N_SIGN_POSN 34
  89. #define STR_YES 35
  90. #define STR_NO 36
  91.  
  92. #define STR_CHARACTER 48
  93.  
  94. //Message IDs
  95. #define WM_VALWNDCLOSE WM_USER + 1
  96.  
  97. #endif //__INTLDEMO_H
  98.