home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / LSW270SR.ZIP / widget / xwph / dlgids.h < prev   
C/C++ Source or Header  |  2001-05-01  |  90KB  |  2,178 lines

  1.  
  2. /*
  3.  *@@sourcefile dlgids.h:
  4.  *      this file declares all the dialog id's common to
  5.  *      all XWorkplace components, but only those which are needed
  6.  *      by both the XFolder code and the NLS resource DLLs.
  7.  *
  8.  *      This file is #include'd by the XFolder C code itself
  9.  *      and all the .RC and .DLG files.
  10.  *
  11.  *      Changes for V0.9.0:
  12.  *      -- lots of new IDs, of course, for all the new dialogs.
  13.  *         Note: even the existing IDs have mostly been redefined.
  14.  *      -- greatly rearranged this file, because I was finally
  15.  *         unable to find anything in here any more.
  16.  *      -- dialog ID's for Treesize and NetscapeDDE have been moved
  17.  *         into this file to allow for NLS for these two programs.
  18.  *
  19.  *      Since these dialog ID's are shared across all of XWorkplace,
  20.  *      we need to have "number spaces" for the different developers.
  21.  *      If you add resources to XFLDRxxx.DLL, add your "number space"
  22.  *      to the list below. Do not add resources which are part of
  23.  *      another developer's number space, or we'll get into trouble.
  24.  *
  25.  *      NOTE: The ID's in this file are limited to 12000. All resource
  26.  *            ID's must be below that number because numbers above that
  27.  *            are reserved for other XWorkplace parts. For example,
  28.  *            the animated mouse pointers use ID's 0x7000 (28672) and
  29.  *            above. V0.9.4 (2000-06-15) [umoeller]
  30.  *
  31.  *      Current number spaces:
  32.  *      -- Ulrich Möller:  200-12000
  33.  */
  34.  
  35. /*
  36.  *      Copyright (C) 1997-2000 Ulrich Möller.
  37.  *      This file is part of the XWorkplace source package.
  38.  *      XWorkplace is free software; you can redistribute it and/or modify
  39.  *      it under the terms of the GNU General Public License as published
  40.  *      by the Free Software Foundation, in version 2 as it comes in the
  41.  *      "COPYING" file of the XWorkplace main distribution.
  42.  *      This program is distributed in the hope that it will be useful,
  43.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  44.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  45.  *      GNU General Public License for more details.
  46.  */
  47.  
  48. #ifndef DLGIDS_HEADER_INCLUDED
  49.     #define DLGIDS_HEADER_INCLUDED
  50.  
  51. /* Naming conventions:
  52.    All ID's (= def's for integers) begin with "ID_",
  53.    then comes an abbreviation of the context of the ID:
  54.    -    XF   for XFolder,
  55.    -    XS   for XWorkplace settings (XFldSystem, XFldWPS, Desktop),
  56.    -    OS   for "OS/2 Kernel" settings
  57.    -    XC   for XWPSetup object ("XWorkplace Setup", new with V0.9.0),
  58.    -    XL   for XWPClassList object ("WPS Class List", new with V0.9.0)
  59.    -    CR   for XCenter object (V0.9.7 (2000-11-39) [umoeller])
  60.    -    AM   for XWPAdmin V0.9.11 (2001-04-22) [umoeller],
  61.    -    SD   for XShutdown,
  62.    -    XT   for XWPTrashCan,
  63.    -    FN   for fonts,
  64.    -    WP   for previously undocumented WPS ID's,
  65.    -    TS   for Treesize;
  66.    then comes an abbreviation of the ID type:
  67.    -    M    for a menu template,
  68.    -    MI   for a menu item,
  69.    -    D    for a dialog template,
  70.    -    DI   for a dialog item;
  71.    -    H    for a help panel res id.
  72.  
  73.    Example:
  74.         ID_SDDI_SKIPAPP is a dlg item ID for use with XShutdown
  75.                         (the "Skip" button in the status window).
  76. */
  77.  
  78. // XFolder version flags; since this file is
  79. // #include'd in the NLS DLLs also, this string
  80. // will be readable as a resource in the NLS DLL
  81. #define XFOLDER_VERSION        "0.9.11"
  82.  
  83. // this sets the minimum version number for NLS DLLS
  84. // which XFolder will accept
  85. #define MINIMUM_NLS_VERSION    "0.9.11"
  86.  
  87. // icons / bitmaps
  88. #define ID_ICON1               100
  89. #define ID_ICON2               101
  90. #define ID_ICONDLG             102
  91. #define ID_ICONSHUTDOWN        103
  92.  
  93. #define ID_STARTICON1          104
  94. #define ID_STARTICON2          105
  95. #define ID_SHUTICON1           106
  96. #define ID_SHUTICON2           107
  97.  
  98. #define ID_ICONSYS             108
  99. #define ID_ICONWPS             109
  100.  
  101. #define ID_ICONSDANIM1         110
  102. #define ID_ICONSDANIM2         111
  103. #define ID_ICONSDANIM3         112
  104. #define ID_ICONSDANIM4         113
  105. #define ID_ICONSDANIM5         114
  106.  
  107. // #define ID_ICONMENUARROW4      115 removed V0.9.7 (2001-01-26) [umoeller]
  108. // #define ID_ICONMENUARROW3      116
  109.  
  110. #define ID_ICONXWPCONFG        117
  111. #define ID_ICONXWPLIST         118
  112. #define ID_ICONXWPSOUND        119
  113. #define ID_ICONXWPSCREEN       120
  114.  
  115. #define ID_ICONXWPTRASHEMPTY   121
  116. #define ID_ICONXWPTRASHFILLED  122
  117.  
  118. #define ID_ICONXWPMEDIA        123
  119. #define ID_ICONXWPSTRING       124
  120. #define ID_ICONXMMCDPLAY       125
  121. #define ID_ICONXMMVOLUME       126
  122. #define ID_ICONXCENTER         127
  123. #define ID_ICONXMINI           128
  124.  
  125. #define ID_ICONXWPADMIN        129  // added V0.9.9 (2001-02-08) [umoeller]
  126.  
  127. #define ID_XFLDRBITMAP         130
  128.  
  129. #define ID_XWPBIGLOGO          131
  130.  
  131. #define ID_ICON_CDEJECT        140
  132. #define ID_ICON_CDNEXT         141
  133. #define ID_ICON_CDPAUSE        142
  134. #define ID_ICON_CDPLAY         143
  135. #define ID_ICON_CDPREV         144
  136. #define ID_ICON_CDSTOP         145
  137.  
  138. #define ID_ICONXWPFONTCLOSED   150
  139. #define ID_ICONXWPFONTOPEN     151
  140. #define ID_ICONXWPFONTOBJ      152
  141.  
  142. // icons used by "diskfree" widget
  143. #define ID_ICON_DRIVE          160
  144. #define ID_POINTER_HAND        161
  145. #define ID_ICON_DRIVE_CD       162
  146. #define ID_ICON_DRIVE_LAN      163
  147. #define ID_ICON_DRIVE_NORMAL   164
  148.  
  149. /******************************************
  150.  * generics                        < 100  *
  151.  ******************************************/
  152.  
  153. /* notebook buttons; these must be < 100
  154.    so that they can be moved for Warp 4
  155.    notebooks */
  156. #define DID_APPLY              98
  157. #define DID_HELP               97
  158. #define DID_UNDO               96
  159. #define DID_DEFAULT            95
  160. #define DID_OPTIMIZE           94
  161. #define DID_REFRESH            93
  162. #define DID_SHOWTOOLTIPS       92           // always used for tooltip controls, V0.9.0
  163. #define DID_TOOLTIP            91           // always used for tooltip controls, V0.9.0
  164.  
  165. /* DID_OK and DID_CANCEL are def'd somewhere in os2.h */
  166.  
  167. /* Notebook pages */
  168. // #define ID_XSD_SET5INTERNALS        409  // removed (V0.9.0)
  169. // #define ID_XSD_SETTINGS_DTP2        407  // removed (V0.9.0)
  170. // #define ID_XCD_FILEOPS              412  // removed (V0.9.0)
  171.  
  172. /******************************************
  173.  *  "real" dialogs                >= 200  *
  174.  ******************************************/
  175.  
  176. // for product info
  177. #define ID_XFD_PRODINFO                 200
  178. #define ID_XFD_PRODLOGO                 201
  179. #define ID_XFDI_XFLDVERSION             202
  180.  
  181. // "Select by name" dlg items
  182. #define ID_XFD_SELECTSOME               210
  183. #define ID_XFDI_SOME_ENTRYFIELD         211
  184. #define ID_XFDI_SOME_SELECT             212
  185. #define ID_XFDI_SOME_DESELECT           213
  186. #define ID_XFDI_SOME_SELECTALL          214
  187. #define ID_XFDI_SOME_DESELECTALL        215
  188.  
  189. // generic dlg text
  190. #define ID_XFD_GENERICDLG               220
  191. #define ID_XFDI_GENERICDLGTEXT          221
  192. #define ID_XFDI_GENERICDLGICON          222
  193.  
  194. // "Title clash" dlg
  195. #define ID_XFD_TITLECLASH               230
  196. #define ID_XFDI_CLASH_TXT1              231
  197. #define ID_XFDI_CLASH_RENAMENEW         232
  198. #define ID_XFDI_CLASH_RENAMENEWTXT      233
  199. #define ID_XFDI_CLASH_REPLACE           234
  200. #define ID_XFDI_CLASH_APPEND            235
  201. #define ID_XFDI_CLASH_RENAMEOLD         236
  202. #define ID_XFDI_CLASH_RENAMEOLDTXT      237
  203. #define ID_XFDI_CLASH_DATEOLD           238
  204. #define ID_XFDI_CLASH_TIMEOLD           239
  205. #define ID_XFDI_CLASH_SIZEOLD           240
  206. #define ID_XFDI_CLASH_DATENEW           241
  207. #define ID_XFDI_CLASH_TIMENEW           242
  208. #define ID_XFDI_CLASH_SIZENEW           243
  209.  
  210. // bootup status
  211. #define ID_XFD_BOOTUPSTATUS             250
  212. #define ID_XFD_ARCHIVINGSTATUS          251
  213. #define ID_XFDI_BOOTUPSTATUSTEXT        252
  214.  
  215. // "Startup panic" dialog, V0.9.0
  216. #define ID_XFD_STARTUPPANIC             260
  217. #define ID_XFDI_PANIC_SKIPBOOTLOGO      261
  218. #define ID_XFDI_PANIC_SKIPXFLDSTARTUP   262
  219. #define ID_XFDI_PANIC_SKIPQUICKOPEN     263
  220. #define ID_XFDI_PANIC_NOARCHIVING       264
  221. #define ID_XFDI_PANIC_DISABLEFEATURES   265
  222. #define ID_XFDI_PANIC_DISABLEREPLICONS  266
  223. #define ID_XFDI_PANIC_REMOVEHOTKEYS     267
  224. #define ID_XFDI_PANIC_DISABLEPAGEMAGE   268
  225. #define ID_XFDI_PANIC_DISABLEMULTIMEDIA 269
  226.  
  227. /* Dialog box templates */
  228. #define ID_XFD_NOCONFIG                 270
  229. #define ID_XFD_NOOBJECT                 271
  230. #define ID_XFD_LIMITREACHED             272
  231. #define ID_XFD_WRONGVERSION             273
  232.  
  233. #define ID_XFD_NOTEXTCLIP               280
  234. // #define ID_XFD_NOICONVIEW               281      removed V0.9.2 (2000-03-04) [umoeller]
  235.  
  236. #define ID_XFD_WELCOME                  290
  237. #define ID_XFD_CREATINGCONFIG           291
  238.  
  239. #define ID_XFD_STARTUPSTATUS            292
  240.  
  241. #define ID_XFD_FILEOPSSTATUS            293
  242. #define ID_XSDI_SOURCEFOLDER            294
  243. #define ID_XSDI_SOURCEOBJECT            295
  244. #define ID_XSDI_SUBOBJECT               296
  245. #define ID_XSDI_TARGETFOLDER            297
  246. #define ID_XSDI_TARGETFOLDER_TXT        298
  247.  
  248. // generic container page
  249. #define ID_XFD_CONTAINERPAGE            300
  250. #define ID_XFDI_CNR_CNR                 301
  251. #define ID_XFDI_CNR_GROUPTITLE          302
  252.  
  253. // "Run" dialog V0.9.9 (2001-03-07) [umoeller]
  254. #define ID_XFD_RUN                      350
  255. #define ID_XFD_RUN_COMMAND              351
  256. #define ID_XFD_RUN_STARTUPDIR           352
  257. #define ID_XFD_RUN_FULLPATH             353
  258. #define ID_XFD_RUN_MINIMIZED            354
  259. #define ID_XFD_RUN_AUTOCLOSE            355
  260.  
  261. /******************************************
  262.  * "Workplace Shell" (XFldWPS)     >= 500 *
  263.  ******************************************/
  264.  
  265. // "View" page (added V0.9.0)
  266. #define ID_XSD_FOLDERVIEWS              500
  267. // #define ID_XSDI_ADDINTERNALS            501  // removed (V0.9.0)
  268. // #define ID_XSDI_REPLICONS               501  // removed (V0.9.0)
  269. #define ID_XSDI_FULLPATH                502
  270. #define ID_XSDI_KEEPTITLE               503
  271. #define ID_XSDI_MAXPATHCHARS            504
  272. #define ID_XSDI_MAXPATHCHARS_TX1        505
  273. #define ID_XSDI_MAXPATHCHARS_TX2        506
  274. #define ID_XSDI_TREEVIEWAUTOSCROLL      507
  275. #define ID_XSDI_FDRDEFAULTDOC           508
  276. #define ID_XSDI_FDRDEFAULTDOCVIEW       509
  277. #define ID_XSDI_FDRAUTOREFRESH          501     // added V0.9.9 (2001-02-06) [umoeller]
  278.  
  279. // "Remove menu items" page
  280. #define ID_XSD_SET2REMOVEMENUS          510
  281. #define ID_XSDI_FIND                    511
  282. #define ID_XSDI_SORT                    512
  283. #define ID_XSDI_SELECT                  513
  284. #define ID_XSDI_WARP4DISPLAY            514
  285. #define ID_XSDI_ARRANGE                 515
  286. #define ID_XSDI_INSERT                  516
  287. #define ID_XSDI_CHECKDISK               517
  288. #define ID_XSDI_FORMATDISK              518
  289. #define ID_XSDI_HELP                    519
  290. #define ID_XSDI_CRANOTHER               520
  291. #define ID_XSDI_COPY                    521
  292. #define ID_XSDI_MOVE                    522
  293. #define ID_XSDI_SHADOW                  523
  294. #define ID_XSDI_DELETE                  524
  295. #define ID_XSDI_PICKUP                  525
  296. #define ID_XSDI_LOCKINPLACE             526
  297. #define ID_XSDI_PRINT                   527
  298. #define ID_XSDI_LOCKINPLACE_NOSUB       528 // V0.9.7 (2000-12-10) [umoeller]
  299.  
  300. // new menu items
  301. #define ID_XSD_SET25ADDMENUS            530
  302. #define ID_XSDI_FILEATTRIBS             531
  303. #define ID_XSDI_COPYFILENAME            532
  304. #define ID_XSDI_MOVE4REFRESH            533
  305. #define ID_XSDI_SELECTSOME              534
  306. #define ID_XSDI_FLDRVIEWS               535
  307. #define ID_XSDI_FOLDERCONTENT           536
  308. #define ID_XSDI_FC_SHOWICONS            537
  309.  
  310. // "XFolder Internals": removed with V0.9.0
  311.  
  312. // "Config folder menu items" page
  313. #define ID_XSD_SET26CONFIGMENUS         540
  314. #define ID_XSDI_CASCADE                 541
  315. #define ID_XSDI_REMOVEX                 542
  316. #define ID_XSDI_APPDPARAM               543
  317.  
  318. #define ID_XSDI_TPL_DONOTHING           544
  319. #define ID_XSDI_TPL_EDITTITLE           545
  320. #define ID_XSDI_TPL_OPENSETTINGS        546
  321. #define ID_XSDI_TPL_POSITION            547
  322.  
  323. // "snap to grid" page
  324. #define ID_XSD_SET3SNAPTOGRID           550
  325. #define ID_XSDI_SNAPTOGRID              511
  326. #define ID_XSDI_GRID_X                  512
  327. #define ID_XSDI_GRID_Y                  513
  328. #define ID_XSDI_GRID_CX                 514
  329. #define ID_XSDI_GRID_CY                 515
  330.  
  331. // "folder hotkeys" page
  332. #define ID_XSD_SET4ACCELS               560
  333. #define ID_XSDI_ACCELERATORS            561
  334. #define ID_XSDI_LISTBOX                 562
  335. #define ID_XSDI_DESCRIPTION             563
  336. #define ID_XSDI_DESCRIPTION_TX1         564     // text
  337. #define ID_XSDI_CLEARACCEL              565
  338. #define ID_XSDI_SHOWINMENUS             566     // V0.9.2 (2000-03-08) [umoeller]
  339. #define ID_XSDI_SETACCEL                567     // V0.9.9 (2001-04-04) [umoeller]
  340.  
  341. // "status bars" page 1
  342. #define ID_XSD_SET27STATUSBARS          570
  343. #define ID_XSDI_ENABLESTATUSBAR         571
  344. #define ID_XSDI_SBFORICONVIEWS          572
  345. #define ID_XSDI_SBFORTREEVIEWS          573
  346. #define ID_XSDI_SBFORDETAILSVIEWS       574
  347. #define ID_XSDI_SBSTYLE_3RAISED         575
  348. #define ID_XSDI_SBSTYLE_3SUNKEN         576
  349. #define ID_XSDI_SBSTYLE_4RECT           577
  350. #define ID_XSDI_SBSTYLE_4MENU           578
  351.  
  352. // "status bars" page 2
  353. #define ID_XSD_SET28STATUSBARS2         580
  354. #define ID_XSDI_SBTEXTNONESEL           581
  355. #define ID_XSDI_SBCURCLASS              582
  356. #define ID_XSDI_SBSELECTCLASS           583
  357. #define ID_XSDI_SBTEXT1SEL              584
  358. #define ID_XSDI_SBTEXTMULTISEL          585
  359. #define ID_XSDI_DEREFSHADOWS_SINGLE     586     // new V0.9.5 (2000-10-07) [umoeller]
  360. #define ID_XSDI_DEREFSHADOWS_MULTIPLE   587     // new V0.9.5 (2000-10-07) [umoeller]
  361.  
  362. // extended "sort" page
  363. #define ID_XSD_SETTINGS_FLDRSORT        590
  364. #define ID_XSDI_ALWAYSSORT              591
  365. #define ID_XSDI_SORTLISTBOX             592
  366. //  #define ID_XSDI_REPLACESORT      675    // removed (V0.9.0)
  367. #define ID_XSDI_SORTTEXT                593
  368.  
  369. // "File types" page (new with V0.9.0)
  370. #define ID_XSD_FILETYPES                600     // "File types" page in XFldWPS (V0.9.0)
  371. #define ID_XSDI_FT_GROUP                601
  372. #define ID_XSDI_FT_CONTAINER            602
  373. #define ID_XSDI_FT_FILTERS_TXT          603
  374. #define ID_XSDI_FT_FILTERSCNR           604
  375. #define ID_XSDI_FT_ASSOCS_TXT           605
  376. #define ID_XSDI_FT_ASSOCSCNR            606
  377.  
  378. // "Import WPS Filters" dialog (V0.9.0
  379. #define ID_XSD_IMPORTWPS                610     // "Import WPS filter" dlg (V0.9.0)
  380. #define ID_XSDI_FT_TYPE                 611
  381. #define ID_XSDI_FT_FILTERLIST           612
  382. #define ID_XSDI_FT_NEW                  613
  383. #define ID_XSDI_FT_SELALL               614
  384. #define ID_XSDI_FT_DESELALL             615
  385. #define ID_XSDI_FT_UNKNOWNONLY          616
  386.  
  387. // "New file type" dialog (V0.9.0)
  388. #define ID_XSD_NEWFILETYPE              620     // "New File type" dlg (V0.9.0)
  389. #define ID_XSD_NEWFILTER                621     // "New Filter" dlg (V0.9.0)
  390. #define ID_XSDI_FT_ENTRYFIELD           622
  391. #define ID_XSDI_FT_TITLE                623
  392.  
  393. /******************************************
  394.  * Instance settings notebooks     >=700  *
  395.  ******************************************/
  396.  
  397. // XFolder page in folder notebook
  398. // (also uses some ID's def'd above)
  399. #define ID_XSD_SETTINGS_FLDR1           710
  400. #define ID_XSDI_FAVORITEFOLDER          711
  401. #define ID_XSDI_QUICKOPEN               712
  402.  
  403. // "Internals" page in all object notebooks
  404. #define ID_XSD_OBJECTDETAILS            720
  405. #define ID_XSDI_DTL_CNR                 721
  406. #define ID_XSDI_DTL_HOTKEY              722
  407. #define ID_XSDI_DTL_HOTKEY_TXT          723
  408. #define ID_XSDI_DTL_CLEAR               724
  409. #define ID_XSDI_DTL_SETUP_ENTRY         725
  410. #define ID_XSDI_DTL_SET                 726
  411.  
  412. // "File" page replacement (XFolder, XFldDataFile, V0.9.0)
  413. #define ID_XSD_FILESPAGE1               730
  414. #define ID_XSDI_FILES_REALNAME          731
  415. #define ID_XSDI_FILES_CREATIONDATE      732
  416. #define ID_XSDI_FILES_CREATIONTIME      733
  417. #define ID_XSDI_FILES_LASTWRITEDATE     734
  418. #define ID_XSDI_FILES_LASTWRITETIME     735
  419. #define ID_XSDI_FILES_LASTACCESSDATE    736
  420. #define ID_XSDI_FILES_LASTACCESSTIME    737
  421. #define ID_XSDI_FILES_ATTR_ARCHIVED     738
  422. #define ID_XSDI_FILES_ATTR_READONLY     739
  423. #define ID_XSDI_FILES_ATTR_HIDDEN       740
  424. #define ID_XSDI_FILES_ATTR_SYSTEM       741
  425. #define ID_XSDI_FILES_SUBJECT           742
  426. #define ID_XSDI_FILES_COMMENTS          743
  427. #define ID_XSDI_FILES_KEYPHRASES        744
  428. #define ID_XSDI_FILES_VERSION           745
  429. #define ID_XSDI_FILES_FILESIZE          746
  430. #define ID_XSDI_FILES_EASIZE            747
  431. #define ID_XSDI_FILES_WORKAREA          748     // added V0.9.1 (99-12-20) [umoeller]
  432.  
  433. #define ID_XSD_FILESPAGE2               760
  434. #define ID_XSDI_FILES_EALIST            761
  435. #define ID_XSDI_FILES_EAINFO            762
  436. #define ID_XSDI_FILES_EACONTENTS        763
  437.  
  438. // "Details" page replacement (XFldDisk, V0.9.0)
  439. #define ID_XSD_DISK_DETAILS             770
  440. #define ID_XSDI_DISK_LABEL              771
  441. #define ID_XSDI_DISK_FILESYSTEM         772
  442. #define ID_XSDI_DISK_SECTORSIZE         775
  443. #define ID_XSDI_DISK_TOTAL_SECTORS      776
  444. #define ID_XSDI_DISK_TOTAL_BYTES        777
  445. #define ID_XSDI_DISK_ALLOCATED_SECTORS  778
  446. #define ID_XSDI_DISK_ALLOCATED_BYTES    779
  447. #define ID_XSDI_DISK_AVAILABLE_SECTORS  780
  448. #define ID_XSDI_DISK_AVAILABLE_BYTES    781
  449. #define ID_XSDI_DISK_CHART              782
  450.  
  451. // "Module" page (XFldProgramFile, V0.9.0)
  452. #define ID_XSD_PGMFILE_MODULE           789
  453. #define ID_XSDI_PROG_FILENAME           781
  454. #define ID_XSDI_PROG_PARAMETERS         782
  455. #define ID_XSDI_PROG_WORKINGDIR         783
  456. #define ID_XSDI_PROG_EXEFORMAT          784
  457. #define ID_XSDI_PROG_TARGETOS           785
  458. #define ID_XSDI_PROG_VENDOR             786
  459. #define ID_XSDI_PROG_VERSION            787
  460. #define ID_XSDI_PROG_DESCRIPTION        788
  461.  
  462. // "Types" page in XFldDataFile V0.9.9 (2001-03-27) [umoeller]
  463. #define ID_XSD_DATAF_TYPES              820
  464. #define ID_XSDI_DATAF_AVAILABLE_TXT     821
  465. #define ID_XSDI_DATAF_AVAILABLE_CNR     822
  466. #define ID_XSDI_DATAF_GROUP             825
  467.  
  468. /******************************************
  469.  * XWPSound (V0.9.0)              >= 1000  *
  470.  ******************************************/
  471.  
  472. #define ID_XSD_XWPSOUND                 1000    // new "Sounds" page (XWPSound, V0.9.0)
  473. #define ID_XSD_NEWSOUNDSCHEME           1001    // "New Sound Scheme" dlg, V0.9.0
  474.  
  475. #define ID_XSDI_SOUND_ENABLE            1002
  476. #define ID_XSDI_SOUND_SCHEMES_DROPDOWN  1003
  477. #define ID_XSDI_SOUND_SCHEMES_SAVEAS    1004
  478. #define ID_XSDI_SOUND_SCHEMES_DELETE    1005
  479. #define ID_XSDI_SOUND_EVENTSLISTBOX     1006
  480. #define ID_XSDI_SOUND_FILE              1007
  481. #define ID_XSDI_SOUND_BROWSE            1008
  482. #define ID_XSDI_SOUND_PLAY              1009
  483. #define ID_XSDI_SOUND_COMMONVOLUME      1010
  484. #define ID_XSDI_SOUND_VOLUMELEVER       1011
  485.  
  486. /******************************************
  487.  * XWPSetup (V0.9.0)             >= 1100   *
  488.  ******************************************/
  489.  
  490. // XWPSetup info page (V0.9.0)
  491. // all IDs changed V0.9.9 (2001-03-07) [umoeller]
  492. // NOOOO... these IDs must NEVER be changed, or the
  493. // whole system will blow up if the NLS DLL is changed
  494. // to an outdated version... going back to old codes
  495. // V0.9.9 (2001-04-04) [umoeller]
  496. #define ID_XCD_STATUS                   1100
  497. #define ID_XCDI_INFO_KERNEL_RELEASE     1101
  498. // #define ID_XCDI_INFO_KERNEL_BUILD       1102     removed V0.9.2 (2000-02-20) [umoeller]
  499. // #define ID_XCDI_INFO_KERNEL_LOCALE      1103
  500. #define ID_XCDI_INFO_AWAKEOBJECTS       1103
  501. #define ID_XCDI_INFO_WPSTHREADS         1104
  502. #define ID_XCDI_INFO_WPSRESTARTS        1105
  503. // #define ID_XCDI_INFO_WORKERSTATUS       1106     removed V0.9.9 (2001-03-07)
  504. // #define ID_XCDI_INFO_FILESTATUS         1107     removed V0.9.9 (2001-03-07)
  505. // #define ID_XCDI_INFO_QUICKSTATUS        1108     removed V0.9.9 (2001-03-07)
  506. #define ID_XCDI_INFO_SOUNDSTATUS        1109
  507. #define ID_XCDI_INFO_HOOKSTATUS         1110
  508. #define ID_XCDI_INFO_LANGUAGE           1111
  509. #define ID_XCDI_INFO_NLS_RELEASE        1112
  510. #define ID_XCDI_INFO_NLS_AUTHOR         1113
  511.  
  512. // 1120 is occupied below... we can't change that V0.9.9 (2001-04-04) [umoeller]
  513. #define ID_XCDI_INFO_KERNEL_GROUP       1121
  514. #define ID_XCDI_INFO_KERNEL_RELEASE_TXT 1122
  515. #define ID_XCDI_INFO_AWAKEOBJECTS_TXT   1123
  516. #define ID_XCDI_INFO_WPSTHREADS_TXT     1124
  517. #define ID_XCDI_INFO_WPSRESTARTS_TXT    1125
  518. #define ID_XCDI_INFO_SOUNDSTATUS_TXT    1126
  519. #define ID_XCDI_INFO_HOOKSTATUS_TXT     1127
  520. #define ID_XCDI_INFO_LANGUAGE_GROUP     1129
  521. #define ID_XCDI_INFO_LANGUAGE_TXT       1130
  522. #define ID_XCDI_INFO_NLS_RELEASE_TXT    1131
  523. #define ID_XCDI_INFO_NLS_AUTHOR_TXT     1132
  524.  
  525. // XWPSetup "Features" page (V0.9.0)
  526. #define ID_XCD_FEATURES                 1120
  527. #define ID_XCDI_CONTAINER               1140
  528. #define ID_XCDI_SETUP                   1141
  529.  
  530. // XWPSetup first page V0.9.6 (2000-11-04) [umoeller]
  531. #define ID_XCD_FIRST                    1150
  532.  
  533.  
  534. // XWPSetup "File operations" page (V0.9.0)
  535. // #define ID_XCD_FILEOPS                  1150
  536. // #define ID_XCDI_EXTASSOCS               1151
  537. // #define ID_XCDI_IGNOREFILTERS           1152
  538. // #define ID_XCDI_CLEANUPINIS             1153
  539. // #define ID_XCDI_REPLFILEEXISTS          1154
  540. // #define ID_XCDI_REPLDRIVENOTREADY       1155
  541.  
  542. // XWPSetup "Paranoia" page (V0.9.0)
  543. #define ID_XCD_PARANOIA                 1160
  544. #define ID_XCDI_VARMENUOFFSET           1161
  545. #define ID_XCDI_NOFREAKYMENUS           1162
  546. #define ID_XCDI_NOSUBCLASSING           1163
  547. #define ID_XCDI_NOWORKERTHREAD          1164
  548. #define ID_XCDI_USE8HELVFONT            1165
  549. #define ID_XCDI_NOEXCPTBEEPS            1166
  550. #define ID_XCDI_WORKERPRTY_SLIDER       1167
  551. #define ID_XCDI_WORKERPRTY_BEEP         1168
  552. // the following two are for the descriptive texts;
  553. // they must have higher IDs, or the help panels won't work
  554. #define ID_XCDI_WORKERPRTY_TEXT1        1169
  555. #define ID_XCDI_WORKERPRTY_TEXT2        1170
  556.  
  557. // XWPSetup "Objects" page (V0.9.0)
  558. #define ID_XCD_OBJECTS                  1180
  559. #define ID_XCD_OBJECTS_SYSTEM           1181
  560. #define ID_XCD_OBJECTS_XWORKPLACE       1182
  561. #define ID_XCD_OBJECTS_CONFIGFOLDER     1183
  562.  
  563. // logo window
  564. #define ID_XFDI_LOGOBITMAP              1190
  565.  
  566. // "Installed XWorkplace Classes" dlg
  567. #define ID_XCD_XWPINSTALLEDCLASSES      1250
  568.  
  569. #define ID_XCDI_XWPCLS_XFLDOBJECT       1251
  570. #define ID_XCDI_XWPCLS_XFOLDER          1252
  571. #define ID_XCDI_XWPCLS_XFLDDISK         1253
  572. #define ID_XCDI_XWPCLS_XFLDDESKTOP      1254
  573. #define ID_XCDI_XWPCLS_XFLDDATAFILE     1255
  574. #define ID_XCDI_XWPCLS_XFLDPROGRAMFILE  1256
  575. #define ID_XCDI_XWPCLS_XWPSOUND         1257
  576. #define ID_XCDI_XWPCLS_XWPMOUSE         1258
  577. #define ID_XCDI_XWPCLS_XWPKEYBOARD      1259
  578.  
  579. #define ID_XCDI_XWPCLS_XWPSETUP         1260
  580. #define ID_XCDI_XWPCLS_XFLDSYSTEM       1261
  581. #define ID_XCDI_XWPCLS_XFLDWPS          1262
  582. #define ID_XCDI_XWPCLS_XFLDSTARTUP      1263
  583. #define ID_XCDI_XWPCLS_XFLDSHUTDOWN     1264
  584. #define ID_XCDI_XWPCLS_XWPCLASSLIST     1265
  585. #define ID_XCDI_XWPCLS_XWPTRASHCAN      1266
  586.  
  587. // new classes with V0.9.3
  588. #define ID_XCDI_XWPCLS_XWPSCREEN        1267
  589. #define ID_XCDI_XWPCLS_XWPSTRING        1268
  590.  
  591. // new classes with V0.9.4
  592. #define ID_XCDI_XWPCLS_XWPMEDIA         1269
  593.  
  594. // new classes with V0.9.7
  595. #define ID_XCDI_XWPCLS_XCENTER          1270
  596.  
  597. // new classes with V0.9.10
  598. #define ID_XCDI_XWPCLS_XWPFONTS         1271
  599.  
  600. /******************************************
  601.  * XWPScreen ("Screen", PageMage) >= 1400 *
  602.  ******************************************/
  603.  
  604. #define ID_SCD_PAGEMAGE_GENERAL         1400
  605. #define ID_SCDI_PGMG1_X_SLIDER          1401
  606. #define ID_SCDI_PGMG1_X_TEXT2           1402
  607. #define ID_SCDI_PGMG1_Y_SLIDER          1403
  608. #define ID_SCDI_PGMG1_Y_TEXT2           1404
  609. // 1405 to 1414 moved to ID_SCD_PAGEMAGE_WINDOW
  610. #define ID_SCDI_PGMG1_ARROWHOTKEYS      1415
  611. #define ID_SCDI_PGMG1_HOTKEYS_CTRL      1416
  612. #define ID_SCDI_PGMG1_HOTKEYS_SHIFT     1417
  613. #define ID_SCDI_PGMG1_HOTKEYS_ALT       1418
  614. #define ID_SCDI_PGMG1_WRAPAROUND        1419
  615. #define ID_SCDI_PGMG1_VALUESET          1420
  616.  
  617. #define ID_SCD_PAGEMAGE_COLORS          1430
  618. #define ID_SCDI_PGMG2_DTP_INACTIVE      1431
  619. #define ID_SCDI_PGMG2_DTP_ACTIVE        1432
  620. #define ID_SCDI_PGMG2_DTP_BORDER        1433
  621. #define ID_SCDI_PGMG2_WIN_INACTIVE      1434
  622. #define ID_SCDI_PGMG2_WIN_ACTIVE        1435
  623. #define ID_SCDI_PGMG2_WIN_BORDER        1436
  624. #define ID_SCDI_PGMG2_TXT_INACTIVE      1437
  625. #define ID_SCDI_PGMG2_TXT_ACTIVE        1438
  626.  
  627. #define ID_SCD_PAGEMAGE_STICKY          1450
  628. #define ID_SCDI_PGMG_STICKY_CNR         1451
  629.  
  630. #define ID_SCD_PAGEMAGE_NEWSTICKY       1460
  631. #define ID_SCD_PAGEMAGE_COMBO_STICKIES  1461
  632.  
  633. #define ID_SCD_PAGEMAGE_WINDOW          1470
  634. #define ID_SCDI_PGMG1_SHOWWINDOWS       1471
  635. #define ID_SCDI_PGMG1_SHOWWINTITLES     1472
  636. #define ID_SCDI_PGMG1_CLICK2ACTIVATE    1473
  637. #define ID_SCDI_PGMG1_TITLEBAR          1474
  638. #define ID_SCDI_PGMG1_PRESERVEPROPS     1475
  639. #define ID_SCDI_PGMG1_STAYONTOP         1476
  640. #define ID_SCDI_PGMG1_FLASHTOTOP        1477
  641. #define ID_SCDI_PGMG1_FLASH_TXT1        1478
  642. #define ID_SCDI_PGMG1_FLASH_SPIN        1479
  643. #define ID_SCDI_PGMG1_FLASH_TXT2        1480
  644.  
  645.  
  646. /******************************************
  647.  * XFldSystem ("OS/2 Kernel")    >= 1500  *
  648.  ******************************************/
  649.  
  650. #define ID_OSD_SETTINGS_KERNEL1         1500
  651. #define ID_OSD_SETTINGS_KERNEL2         1501
  652. #define ID_OSDI_CURRENTTHREADS          1502
  653. #define ID_OSDI_MAXTHREADS              1503
  654. #define ID_OSDI_MAXWAIT                 1504
  655. #define ID_OSDI_PRIORITYDISKIO          1505
  656. #define ID_OSDI_CURRENTSWAPSIZE         1506
  657. #define ID_OSDI_PHYSICALMEMORY          1507
  658. #define ID_OSDI_MINSWAPSIZE             1508
  659. #define ID_OSDI_MINSWAPFREE             1509
  660. #define ID_OSDI_SWAPPATH                1510
  661.  
  662. // FAT page; this is also used by the driver dialogs
  663. #define ID_OSD_SETTINGS_FAT             1521
  664. #define ID_OSDI_FSINSTALLED             1522
  665. #define ID_OSDI_CACHESIZE               1523
  666. #define ID_OSDI_CACHESIZE_TXT           1524
  667. #define ID_OSDI_CACHESIZE_AUTO          1525
  668. #define ID_OSDI_CACHE_THRESHOLD         1526
  669. #define ID_OSDI_CACHE_THRESHOLD_TXT     1527
  670. #define ID_OSDI_CACHE_LAZYWRITE         1528
  671. #define ID_OSDI_CACHE_MAXAGE            1529
  672. #define ID_OSDI_CACHE_BUFFERIDLE        1530
  673. #define ID_OSDI_CACHE_DISKIDLE          1531
  674. #define ID_OSDI_AUTOCHECK               1532
  675. #define ID_OSDI_AUTOCHECK_PROPOSE       1533
  676. #define ID_OSDI_HPFS386INI_GROUP        1534
  677. #define ID_OSDI_HPFS386INI_CNR          1535
  678.  
  679. #define ID_OSD_SETTINGS_ERRORS          1540
  680. #define ID_OSDI_AUTOFAIL                1541
  681. #define ID_OSDI_SUPRESSPOPUPS           1542
  682. #define ID_OSDI_SUPRESSP_DRIVE          1543
  683. #define ID_OSDI_REIPL                   1544
  684.  
  685. #define ID_OSD_SETTINGS_WPS             1550
  686. #define ID_OSDI_AUTO_PROGRAMS           1551
  687. #define ID_OSDI_AUTO_TASKLIST           1552
  688. #define ID_OSDI_AUTO_CONNECTIONS        1553
  689. #define ID_OSDI_AUTO_LAUNCHPAD          1554
  690. #define ID_OSDI_AUTO_WARPCENTER         1555
  691. #define ID_OSDI_RESTART_YES             1556
  692. #define ID_OSDI_RESTART_NO              1557
  693. #define ID_OSDI_RESTART_FOLDERS         1558
  694. #define ID_OSDI_RESTART_REBOOT          1559
  695. #define ID_OSDI_AUTOREFRESHFOLDERS      1560
  696.  
  697. // "System paths" page (V0.9.0)
  698. #define ID_OSD_SETTINGS_SYSPATHS        1570
  699. #define ID_OSD_NEWSYSPATH               1571   // "New System Path" dlg
  700. #define ID_OSDI_PATHDROPDOWN            1572
  701. #define ID_OSDI_PATHLISTBOX             1573
  702. #define ID_OSDI_PATHNEW                 1574
  703. #define ID_OSDI_PATHDELETE              1575
  704. #define ID_OSDI_PATHEDIT                1576
  705. #define ID_OSDI_PATHUP                  1577
  706. #define ID_OSDI_PATHDOWN                1578
  707. #define ID_OSDI_VALIDATE                1579
  708. #define ID_OSDI_PATHINFOTXT             1580
  709. #define ID_OSDI_DOUBLEFILES             1581
  710.  
  711. #define ID_OSD_FILELIST                 1582
  712. #define ID_OSDI_FILELISTSYSPATH1        1583
  713. #define ID_OSDI_FILELISTSYSPATH2        1584
  714. #define ID_OSDI_FILELISTCNR             1585
  715.  
  716. // "Drivers" page (V0.9.0)
  717. #define ID_OSD_SETTINGS_DRIVERS         1590
  718. #define ID_OSDI_DRIVR_CNR               1591
  719. #define ID_OSDI_DRIVR_STATICDATA        1592
  720. #define ID_OSDI_DRIVR_PARAMS            1593
  721. #define ID_OSDI_DRIVR_CONFIGURE         1594
  722. #define ID_OSDI_DRIVR_APPLYTHIS         1595 // "Apply", non-notebook button
  723. #define ID_OSDI_DRIVR_GROUP1            1596
  724. #define ID_OSDI_DRIVR_GROUP2            1597
  725. #define ID_OSDI_DRIVR_PARAMS_TXT        1598
  726.  
  727. #define ID_OSD_DRIVER_HPFS386           1600
  728. #define ID_OSD_DRIVER_FAT               1601
  729. #define ID_OSD_DRIVER_HPFS              1602
  730.  
  731. #define ID_OSD_DRIVER_CDFS              1610
  732. #define ID_OSDI_CDFS_JOLIET             1611
  733. #define ID_OSDI_CDFS_KANJI              1612
  734. #define ID_OSDI_CDFS_CACHESLIDER        1613
  735. #define ID_OSDI_CDFS_CACHETXT           1614
  736. #define ID_OSDI_CDFS_SECTORSSLIDER      1615
  737. #define ID_OSDI_CDFS_SECTORSTXT         1616
  738. #define ID_OSDI_CDFS_INITDEFAULT        1617
  739. #define ID_OSDI_CDFS_INITQUIET          1618
  740. #define ID_OSDI_CDFS_INITVERBOSE        1619
  741.  
  742. // "IBM1S506" dialog; do not modify these IDs, because
  743. // the TMF file uses these too
  744. #define ID_OSD_DRIVER_IBM1S506          1620
  745. #define ID_OSDI_S506_INITQUIET          1621
  746. #define ID_OSDI_S506_INITVERBOSE        1622
  747. #define ID_OSDI_S506_INITWAIT           1623
  748. #define ID_OSDI_S506_DSG                1624
  749. #define ID_OSDI_S506_ADAPTER0           1625
  750. #define ID_OSDI_S506_ADAPTER1           1626
  751. #define ID_OSDI_S506_A_IGNORE           1627
  752. #define ID_OSDI_S506_A_RESET            1628
  753. #define ID_OSDI_S506_A_BASEADDR_CHECK   1629
  754. #define ID_OSDI_S506_A_BASEADDR_ENTRY   1630
  755. #define ID_OSDI_S506_A_IRQ_CHECK        1631
  756. #define ID_OSDI_S506_A_IRQ_SLIDER       1632
  757. #define ID_OSDI_S506_A_IRQ_TXT          1633
  758. #define ID_OSDI_S506_A_DMA_CHECK        1634
  759. #define ID_OSDI_S506_A_DMA_SPIN         1635
  760. #define ID_OSDI_S506_A_DSGADDR_CHECK    1636
  761. #define ID_OSDI_S506_A_DSGADDR_ENTRY    1637
  762. #define ID_OSDI_S506_A_BUSMASTER        1638
  763. #define ID_OSDI_S506_UNIT0              1639
  764. #define ID_OSDI_S506_UNIT1              1640
  765. #define ID_OSDI_S506_UNIT2              1641
  766. #define ID_OSDI_S506_UNIT3              1642
  767. #define ID_OSDI_S506_U_BUSMASTER        1643
  768. #define ID_OSDI_S506_U_RECOVERY_CHECK   1644
  769. #define ID_OSDI_S506_U_RECOVERY_SLIDER  1645
  770. #define ID_OSDI_S506_U_RECOVERY_TXT     1646
  771. #define ID_OSDI_S506_U_GEO_CHECK        1647
  772. #define ID_OSDI_S506_U_GEO_ENTRY        1648
  773. #define ID_OSDI_S506_U_SMS              1652
  774. #define ID_OSDI_S506_U_LBA              1653
  775. #define ID_OSDI_S506_U_DASD             1654
  776. #define ID_OSDI_S506_U_FORCE            1655
  777. #define ID_OSDI_S506_U_ATAPI            1656
  778. #define ID_OSDI_S506_NEWPARAMS          1657
  779.  
  780. #define ID_OSDI_DANIS506_CLOCK_CHECK        1660
  781. #define ID_OSDI_DANIS506_CLOCK_SLIDER       1661
  782. #define ID_OSDI_DANIS506_CLOCK_TXT          1662
  783. #define ID_OSDI_DANIS506_GBM                1663
  784. #define ID_OSDI_DANIS506_FORCEGBM           1664
  785. #define ID_OSDI_DANIS506_MGAFIX             1665
  786. #define ID_OSDI_DANIS506_U_TIMEOUT_CHECK    1666
  787. #define ID_OSDI_DANIS506_U_TIMEOUT_SPIN     1667
  788. #define ID_OSDI_DANIS506_U_RATE_CHECK       1668
  789. #define ID_OSDI_DANIS506_U_RATE_UDMA_TXT    1669
  790. #define ID_OSDI_DANIS506_U_RATE_UDMA_SPIN   1670
  791. #define ID_OSDI_DANIS506_U_RATE_MWDMA_TXT   1671
  792. #define ID_OSDI_DANIS506_U_RATE_MWDMA_SPIN  1672
  793. #define ID_OSDI_DANIS506_U_RATE_PIO_TXT     1673
  794. #define ID_OSDI_DANIS506_U_RATE_PIO_SPIN    1674
  795. #define ID_OSDI_DANIS506_U_REMOVEABLE       1675
  796.  
  797. // syslevel page V0.9.2 (2000-03-08) [umoeller]
  798.             // uses generic cnr page
  799. // #define ID_OSD_SETTINGS_SYSLEVEL            1900
  800. // #define ID_OSDI_SYSLEVEL_CNR                1901
  801.  
  802. /******************************************
  803.  * XWPClassList (V0.9.0)                   *
  804.  ******************************************/
  805.  
  806. // class list dialog (left part of split view)
  807. #define ID_XLD_CLASSLIST                2000
  808.  
  809. // class info dialog (top right part of split view)
  810. #define ID_XLD_CLASSINFO                2001
  811.  
  812. // method info dialog (bottom right part of split view)
  813. #define ID_XLD_METHODINFO               2002
  814.  
  815. // other dlgs
  816. #define ID_XLD_SELECTCLASS              2003
  817. #define ID_XLD_REGISTERCLASS            2004
  818.  
  819. // class list dlg items
  820. #define ID_XLDI_INTROTEXT               2010
  821. #define ID_XLDI_CNR                     2011
  822. #define ID_XLDI_TEXT2                   2012
  823. #define ID_XLDI_CLASSICON               2014
  824. #define ID_XLDI_CLASSNAME               2015
  825. #define ID_XLDI_REPLACEDBY              2016
  826. #define ID_XLDI_CLASSTITLE              2017
  827. #define ID_XLDI_CLASSMODULE             2018
  828. #define ID_XLDI_CLASSNAMETXT            2019
  829. #define ID_XLDI_REPLACEDBYTXT           2020
  830. #define ID_XLDI_CLASSTITLETXT           2021
  831. #define ID_XLDI_CLASSMODULETXT          2022
  832. #define ID_XLDI_DLL                     2023
  833. #define ID_XLDI_BROWSE                  2024
  834. #define ID_XLDI_ICON                    2025
  835. #define ID_XLDI_ICONTXT                 2026
  836. #define ID_XLDI_RADIO_CLASSMETHODS      2027
  837. #define ID_XLDI_RADIO_INSTANCEMETHODS   2028
  838.  
  839. // class list notebook settings page
  840. #define ID_XLD_SETTINGS                 2030
  841. #define ID_XLDI_SHOWSOMOBJECT           2031    // corresponds to IDL instance setting
  842. #define ID_XLDI_SHOWMETHODS             2032    // corresponds to IDL instance setting
  843.  
  844. /******************************************
  845.  * XFldDesktop                    >=2100  *
  846.  ******************************************/
  847.  
  848. #define ID_XSD_STARTUPFOLDER        442     // "Startup" page in XFldStartup;
  849.                                             // new with V0.9.0
  850.  
  851. // "Menu items" page (V0.9.0)
  852. #define ID_XSD_DTP_MENUITEMS            2100
  853. #define ID_XSDI_DTP_SORT                2101
  854. #define ID_XSDI_DTP_ARRANGE             2102
  855. #define ID_XSDI_DTP_SYSTEMSETUP         2103
  856. #define ID_XSDI_DTP_LOCKUP              2104
  857. #define ID_XSDI_DTP_SHUTDOWN            2105
  858. #define ID_XSDI_DTP_SHUTDOWNMENU        2106
  859. #define ID_XSDI_DTP_LOGOFFNETWORKNOW    2107 // V0.9.7 (2000-12-13) [umoeller]
  860.  
  861. // XFldDesktop "Startup" page  (V0.9.0)
  862. #define ID_XSD_DTP_STARTUP              2110
  863. #define ID_XSDI_DTP_BOOTLOGO            2111
  864. #define ID_XSDI_DTP_LOGO_TRANSPARENT    2112
  865. #define ID_XSDI_DTP_LOGO_BLOWUP         2113
  866. #define ID_XSDI_DTP_LOGOFRAME           2114
  867. #define ID_XSDI_DTP_LOGOBITMAP          2115
  868. #define ID_XSDI_DTP_TESTLOGO            2116
  869. #define ID_XSDI_DTP_CREATESTARTUPFLDR   2117
  870. #define ID_XSDI_DTP_LOGOFILETXT         2118
  871. #define ID_XSDI_DTP_LOGOFILE            2119
  872. #define ID_XSDI_DTP_LOGO_BROWSE         2120
  873. #define ID_XSDI_DTP_BOOTUPSTATUS        2121
  874. #define ID_XSDI_DTP_NUMLOCKON           2122  // added V0.9.1 (2000-02-09) [umoeller]
  875.  
  876. // XFldDesktop "Shutdown" page (V0.9.0)
  877. #define ID_XSD_DTP_SHUTDOWN             2125
  878. #define ID_SDDI_REBOOT                  2126
  879. #define ID_SDDI_ANIMATE_SHUTDOWN        2127
  880. #define ID_SDDI_ANIMATE_REBOOT          2128
  881. #define ID_SDDI_APMPOWEROFF             2129
  882. #define ID_SDDI_DELAY                   2130
  883. #define ID_SDDI_CONFIRM                 2131
  884. #define ID_SDDI_WARPCENTERFIRST         2132
  885. #define ID_SDDI_AUTOCLOSEVIO            2133
  886. #define ID_SDDI_LOG                     2134
  887.  
  888. #define ID_SDDI_CREATESHUTDOWNFLDR      2135
  889. #define ID_SDDI_SHOWSTARTUPPROGRESS     2136
  890.  
  891. #define ID_SDDI_STARTUP_INITDELAY_TXT1  2137
  892. #define ID_SDDI_STARTUP_INITDELAY_SLID  2138
  893. #define ID_SDDI_STARTUP_INITDELAY_TXT2  2139
  894. #define ID_SDDI_STARTUP_OBJDELAY_TXT1   2140
  895. #define ID_SDDI_STARTUP_OBJDELAY_SLID   2141
  896. #define ID_SDDI_STARTUP_OBJDELAY_TXT2   2142
  897. #define ID_SDDI_STARTUP_REBOOTSONLY     2143
  898. #define ID_SDDI_STARTUP_EVERYWPSRESTART 2144
  899.  
  900. #define ID_SDDI_REBOOTEXT               2145
  901. #define ID_SDDI_AUTOCLOSEDETAILS        2146
  902. #define ID_SDDI_APMVERSION              2147
  903. #define ID_SDDI_APMVERSION_TXT          2148
  904. #define ID_SDDI_APMSYS                  2149
  905. #define ID_SDDI_APMSYS_TXT              2150
  906.  
  907. #define ID_SDDI_SAVEINIS_TXT            2151
  908. #define ID_SDDI_SAVEINIS_LIST           2152
  909.  
  910. // XFldDesktop "Archives" replacement page (V0.9.0)
  911. #define ID_XSD_DTP_ARCHIVES             2155
  912. #define ID_XSDI_ARC_ENABLE              2156
  913. #define ID_XSDI_ARC_ALWAYS              2157
  914. #define ID_XSDI_ARC_NEXT                2158
  915. #define ID_XSDI_ARC_INI                 2159
  916. #define ID_XSDI_ARC_INI_SPIN            2160
  917. #define ID_XSDI_ARC_INI_SPINTXT1        2161
  918. #define ID_XSDI_ARC_DAYS                2162
  919. #define ID_XSDI_ARC_DAYS_SPIN           2163
  920. #define ID_XSDI_ARC_DAYS_SPINTXT1       2164
  921. #define ID_XSDI_ARC_SHOWSTATUS          2165
  922. #define ID_XSDI_ARC_ARCHIVES_SPIN       2166
  923.  
  924. // "extended reboot" / "auto-close" dlg items
  925. #define ID_XSD_REBOOTEXT                2170
  926. #define ID_XSDI_XRB_LISTBOX             2171
  927. #define ID_XSDI_XRB_NEW                 2172
  928. #define ID_XSDI_XRB_DELETE              2173
  929. #define ID_XSDI_XRB_UP                  2174
  930. #define ID_XSDI_XRB_DOWN                2175
  931. #define ID_XSDI_XRB_ITEMNAME            2176
  932. #define ID_XSDI_XRB_COMMAND             2177
  933. #define ID_XSDI_XRB_PARTITIONS          2178     // added  (V0.9.0)
  934.  
  935. #define ID_XSD_AUTOCLOSE                2180
  936. #define ID_XSDI_ACL_WMCLOSE             2181
  937. #define ID_XSDI_ACL_CTRL_C              2182
  938. #define ID_XSDI_ACL_KILLSESSION         2183
  939. #define ID_XSDI_ACL_SKIP                2184
  940.  
  941. #define ID_XSDI_ACL_STORE               2185    // added V0.9.1 (99-12-10)
  942.  
  943. #define ID_XSDI_PARTITIONSFIRST         2190    // menu item of first submenu on "Partitions" button (V0.9.0)
  944.  
  945. /******************************************
  946.  * XWPTrashCan (V0.9.0)                   *
  947.  ******************************************/
  948.  
  949. #define ID_XTD_SETTINGS                 3000
  950. // #define ID_XTDI_DELETE                  3001
  951. // #define ID_XTDI_EMPTYSTARTUP            3002
  952. // #define ID_XTDI_EMPTYSHUTDOWN           3003
  953. #define ID_XTDI_CONFIRMEMPTY            3004
  954. #define ID_XTDI_CONFIRMDESTROY          3005
  955.  
  956. #define ID_XTD_DRIVES                   3020
  957. #define ID_XTDI_UNSUPPORTED_LB          3021
  958. #define ID_XTDI_SUPPORTED_LB            3022
  959. #define ID_XTDI_ADD_SUPPORTED           3023
  960. #define ID_XTDI_REMOVE_SUPPORTED        3024
  961.  
  962. #define ID_XTD_ICONPAGE                 3030
  963. #define ID_XTDI_ICON_TITLEMLE           3031
  964.  
  965.  
  966. /******************************************
  967.  * XWPKeyboard (V0.9.0)          >= 3200   *
  968.  ******************************************/
  969.  
  970. // #define ID_XSD_KEYB_OBJHOTKEYS          3200
  971. // #define ID_XSDI_HOTK_CNR                3201
  972.  
  973. // #define ID_XSD_KEYB_FUNCTIONKEYS        3220
  974. // #define ID_XSDI_FUNCK_CNR               3221
  975.  
  976. #define ID_XSD_KEYB_EDITFUNCTIONKEY     3230
  977. #define ID_XSDI_FUNCK_DESCRIPTION_EF    3231
  978. #define ID_XSDI_FUNCK_SCANCODE_EF       3232
  979. #define ID_XSDI_FUNCK_MODIFIER          3233
  980.  
  981. /******************************************
  982.  * XWPMouse    (V0.9.0)          >= 3400   *
  983.  ******************************************/
  984.  
  985. #define ID_XSD_MOUSE_MOVEMENT           3400
  986. #define ID_XSDI_MOUSE_SLIDINGFOCUS      3401
  987. #define ID_XSDI_MOUSE_FOCUSDELAY_TXT1   3402
  988. #define ID_XSDI_MOUSE_FOCUSDELAY_SLIDER 3403
  989. #define ID_XSDI_MOUSE_FOCUSDELAY_TXT2   3404
  990. #define ID_XSDI_MOUSE_BRING2TOP         3405
  991. #define ID_XSDI_MOUSE_IGNORESEAMLESS    3406
  992. #define ID_XSDI_MOUSE_IGNOREDESKTOP     3407
  993. #define ID_XSDI_MOUSE_IGNOREPAGEMAGE    3408
  994. #define ID_XSDI_MOUSE_IGNOREXCENTER     3409    // V0.9.7 (2000-12-08) [umoeller]
  995. #define ID_XSDI_MOUSE_AUTOHIDE_CHECK    3410
  996. #define ID_XSDI_MOUSE_AUTOHIDE_TXT1     3411
  997. #define ID_XSDI_MOUSE_AUTOHIDE_SLIDER   3412
  998. #define ID_XSDI_MOUSE_AUTOHIDE_TXT2     3413
  999. #define ID_XSDI_MOUSE_SLIDINGMENU       3414
  1000. #define ID_XSDI_MOUSE_MENUDELAY_TXT1    3415
  1001. #define ID_XSDI_MOUSE_MENUDELAY_SLIDER  3416
  1002. #define ID_XSDI_MOUSE_MENUDELAY_TXT2    3417
  1003. #define ID_XSDI_MOUSE_MENUHILITE        3418
  1004. #define ID_XSDI_MOUSE_CONDCASCADE       3419    // V0.9.6 (2000-10-27) [umoeller]
  1005.  
  1006. #define ID_XSD_MOUSE_CORNERS            3430
  1007. #define ID_XSDI_MOUSE_RADIO_TOPLEFT     3431
  1008. #define ID_XSDI_MOUSE_RADIO_TOPRIGHT    3432
  1009. #define ID_XSDI_MOUSE_RADIO_BOTTOMLEFT  3433
  1010. #define ID_XSDI_MOUSE_RADIO_BOTTOMRIGHT 3434
  1011. #define ID_XSDI_MOUSE_RADIO_TOP         3435
  1012. #define ID_XSDI_MOUSE_RADIO_LEFT        3436
  1013. #define ID_XSDI_MOUSE_RADIO_RIGHT       3437
  1014. #define ID_XSDI_MOUSE_RADIO_BOTTOM      3438
  1015. #define ID_XSDI_MOUSE_INACTIVEOBJ       3439
  1016. #define ID_XSDI_MOUSE_SPECIAL_CHECK     3440
  1017. #define ID_XSDI_MOUSE_SPECIAL_DROP      3441
  1018. #define ID_XSDI_MOUSE_OPEN_CHECK        3442
  1019. #define ID_XSDI_MOUSE_OPEN_CNR          3443
  1020. #define ID_XSDI_MOUSE_CORNERSIZE_SLIDER 3444
  1021.  
  1022. #define ID_XSD_MOUSEMAPPINGS2           3450
  1023. #define ID_XSDI_MOUSE_CHORDWINLIST      3451
  1024. #define ID_XSDI_MOUSE_SYSMENUMB2        3452
  1025. #define ID_XSDI_MOUSE_MB3SCROLL         3453
  1026. #define ID_XSDI_MOUSE_MB3PIXELS_TXT1    3454
  1027. #define ID_XSDI_MOUSE_MB3PIXELS_SLIDER  3455
  1028. #define ID_XSDI_MOUSE_MB3PIXELS_TXT2    3456
  1029. #define ID_XSDI_MOUSE_MB3LINEWISE       3457
  1030. #define ID_XSDI_MOUSE_MB3AMPLIFIED      3458
  1031. #define ID_XSDI_MOUSE_MB3AMP_TXT1       3459
  1032. #define ID_XSDI_MOUSE_MB3AMP_SLIDER     3460
  1033. #define ID_XSDI_MOUSE_MB3AMP_TXT2       3461
  1034. #define ID_XSDI_MOUSE_MB3SCROLLREVERSE  3462
  1035. //#define ID_XSDI_MOUSE_MB3CLK2MB1DBLCLK  3463
  1036. #define ID_XSDI_MOUSE_MB3CLICK_DROP     3465    // added V0.9.9 (2001-03-14) [lafaix]
  1037.  
  1038. /******************************************
  1039.  * XCenter (V0.9.7)         >= 3600       *
  1040.  ******************************************/
  1041.  
  1042. #define ID_CRD_SETTINGS_VIEW            3600
  1043. #define ID_CRDI_VIEW_TOPOFSCREEN        3601
  1044. #define ID_CRDI_VIEW_BOTTOMOFSCREEN     3602
  1045. #define ID_CRDI_VIEW_ALWAYSONTOP        3603
  1046. #define ID_CRDI_VIEW_ANIMATE            3604
  1047. #define ID_CRDI_VIEW_AUTOHIDE           3605
  1048. #define ID_CRDI_VIEW_PRTY_SLIDER        3608
  1049. #define ID_CRDI_VIEW_PRTY_TEXT          3609
  1050. #define ID_CRDI_VIEW_REDUCEWORKAREA     3610
  1051. #define ID_CRDI_VIEW_AUTOHIDE_TXT1      3611    // added V0.9.9 (2001-03-09) [umoeller]
  1052. #define ID_CRDI_VIEW_AUTOHIDE_SLIDER    3612    // added V0.9.9 (2001-03-09) [umoeller]
  1053. #define ID_CRDI_VIEW_AUTOHIDE_TXT2      3613    // added V0.9.9 (2001-03-09) [umoeller]
  1054.  
  1055. #define ID_CRD_SETTINGS_VIEW2           3650
  1056. #define ID_CRDI_VIEW2_3DBORDER_SLIDER   3651
  1057. #define ID_CRDI_VIEW2_3DBORDER_TEXT     3652
  1058. #define ID_CRDI_VIEW2_BDRSPACE_SLIDER   3653
  1059. #define ID_CRDI_VIEW2_BDRSPACE_TEXT     3654
  1060. #define ID_CRDI_VIEW2_WGTSPACE_SLIDER   3655
  1061. #define ID_CRDI_VIEW2_WGTSPACE_TEXT     3656
  1062. #define ID_CRDI_VIEW2_FLATBUTTONS       3657
  1063. #define ID_CRDI_VIEW2_SUNKBORDERS       3658
  1064. #define ID_CRDI_VIEW2_ALL3DBORDERS      3659
  1065. #define ID_CRDI_VIEW2_SIZINGBARS        3660
  1066.  
  1067. #define ID_CRD_WINLISTWGT_SETTINGS      3700
  1068. #define ID_CRDI_FILTERS_CURRENTLB       3701
  1069. #define ID_CRDI_FILTERS_REMOVE          3702
  1070. #define ID_CRDI_FILTERS_NEWCOMBO        3703
  1071. #define ID_CRDI_FILTERS_ADD             3704
  1072.  
  1073. #define ID_CRD_HEALTHWGT_SETTINGS       3710
  1074. #define ID_CRDI_SETUP_STRING            3711
  1075.  
  1076. #define ID_CRD_DISKFREEWGT_SETTINGS     3720
  1077.  
  1078. /******************************************
  1079.  * XWPString (V0.9.3)       >= 3800       *
  1080.  ******************************************/
  1081.  
  1082. #define ID_XSD_XWPSTRING_PAGE           3800
  1083. #define ID_XSD_XWPSTRING_STRING_MLE     3801
  1084. #define ID_XSD_XWPSTRING_OBJ_CNR        3802
  1085. #define ID_XSD_XWPSTRING_OBJ_CLEAR      3803
  1086. #define ID_XSD_XWPSTRING_CONFIRM        3804
  1087.  
  1088.  
  1089. /******************************************
  1090.  * XWPFont V0.9.9           >= 3900
  1091.  ******************************************/
  1092.  
  1093. #define ID_FND_SAMPLETEXT               3900
  1094. #define ID_FNDI_SAMPLETEXT_MLE          3901
  1095.  
  1096. /******************************************
  1097.  * XWPAdmin V0.9.11         >= 4000
  1098.  ******************************************/
  1099.  
  1100. #define ID_AMD_USER                     4000
  1101. #define ID_AMDI_USER_USERNAME           4001
  1102. #define ID_AMDI_USER_USERID             4002
  1103. #define ID_AMDI_USER_GROUPNAME          4003
  1104. #define ID_AMDI_USER_GROUPID            4004
  1105.  
  1106. /******************************************
  1107.  *          Shutdown defs                 *
  1108.  ******************************************/
  1109.  
  1110. #define ID_SDICON                       4100   // shutdown icon
  1111.  
  1112. /* dlg templates */
  1113. #define ID_SDD_MAIN                     4200
  1114. #define ID_SDD_STATUS                   4201
  1115. #define ID_SDD_CONFIRM                  4202
  1116. #define ID_SDD_CAD                      4203
  1117. #define ID_SDD_CLOSEVIO                 4204
  1118. #define ID_SDD_CONFIRMWPS               4205
  1119. #define ID_SDD_BOOTMGR                  4206
  1120.  
  1121. /* dlg items */
  1122. #define ID_SDDI_LISTBOX                 4301
  1123. #define ID_SDDI_BEGINSHUTDOWN           4302
  1124. #define ID_SDDI_CANCELSHUTDOWN          4303
  1125. #define ID_SDDI_TEXTSHUTTING            4304
  1126. #define ID_SDDI_PROGRESSBAR             4305
  1127. #define ID_SDDI_STATUS                  4306
  1128. #define ID_SDDI_SKIPAPP                 4307
  1129. #define ID_SDDI_PERCENT                 4309
  1130. #define ID_SDDI_MESSAGEAGAIN            4310
  1131. #define ID_SDDI_VDMAPPTEXT              4311
  1132. #define ID_SDDI_WPS_CLOSEWINDOWS        4312
  1133. #define ID_SDDI_ICON                    4313
  1134. #define ID_SDDI_BOOTMGR                 4314
  1135. #define ID_SDDI_WPS_STARTUPFOLDER       4315
  1136. #define ID_SDDI_SHUTDOWNONLY            4316
  1137. #define ID_SDDI_STANDARDREBOOT          4317
  1138. #define ID_SDDI_REBOOTTO                4318
  1139. #define ID_SDDI_EMPTYTRASHCAN           4319
  1140. #define ID_SDDI_CONFIRM_TEXT            4320  // V0.9.5 (2000-08-10) [umoeller]
  1141.  
  1142. /* command defs (used in the Shutdown wnd proc) */
  1143. #define ID_SDMI_CLOSEITEM               4400
  1144. #define ID_SDMI_UPDATESHUTLIST          4402
  1145. #define ID_SDMI_UPDATEPROGRESSBAR       4403
  1146. // #define ID_SDMI_FLUSHBUFFERS            4404     removed V0.9.9 (2001-04-04) [umoeller]
  1147. #define ID_SDMI_CLOSEVIO                4405
  1148. // #define ID_SDMI_PREPARESAVEWPS          4406     removed V0.9.9 (2001-04-04) [umoeller]
  1149. // #define ID_SDMI_SAVEWPSITEM             4407     removed V0.9.9 (2001-04-04) [umoeller]
  1150. // #define ID_SDMI_SAVEWPS                 4407     removed V0.9.9 (2001-04-04) [umoeller]
  1151. // #define ID_SDMI_BEGINCLOSINGITEMS       4408     removed V0.9.12 (2001-04-29) [umoeller]
  1152. // #define ID_SDMI_CLEANUPANDQUIT          4409     removed V0.9.9 (2001-04-04) [umoeller]
  1153.  
  1154. /******************************************
  1155.  *          Menu IDs                      *
  1156.  ******************************************/
  1157.  
  1158. // generic help menu item in various menus
  1159. #define ID_XFMI_HELP                    (WPMENUID_USER+1000) // added V0.9.0
  1160.  
  1161. // context menu in "WPS Classes" container;
  1162. // all the identifiers have changed with V0.9.0
  1163. #define ID_XLM_CLASS_SEL                (WPMENUID_USER+1001)
  1164. // #define ID_XLM_CLASS_NOSEL              (WPMENUID_USER+1002)
  1165. #define ID_XLMI_REGISTER                (WPMENUID_USER+1003)
  1166. #define ID_XLMI_DEREGISTER              (WPMENUID_USER+1004)
  1167. #define ID_XLMI_REPLACE                 (WPMENUID_USER+1005)
  1168. #define ID_XLMI_UNREPLACE               (WPMENUID_USER+1006)
  1169. #define ID_XLMI_CREATEOBJECT            (WPMENUID_USER+1007)
  1170. #define ID_XLM_METHOD_SEL               (WPMENUID_USER+1010)
  1171. #define ID_XLM_METHOD_NOSEL             (WPMENUID_USER+1011)
  1172. #define ID_XLM_METHOD_SORT              (WPMENUID_USER+1012)
  1173. #define ID_XLMI_METHOD_SORT_INDEX       (WPMENUID_USER+1013)
  1174. #define ID_XLMI_METHOD_SORT_NAME        (WPMENUID_USER+1014)
  1175. #define ID_XLMI_METHOD_SORT_INTRO       (WPMENUID_USER+1015)
  1176. #define ID_XLMI_METHOD_SORT_OVERRIDE    (WPMENUID_USER+1016)
  1177. #define ID_XLMI_REFRESH_VIEW            (WPMENUID_USER+1017) // V0.9.6 (2000-11-12) [umoeller]
  1178.  
  1179. // "File types" container
  1180. #define ID_XSM_FILETYPES_SEL            (WPMENUID_USER+1020)
  1181. #define ID_XSM_FILETYPES_NOSEL          (WPMENUID_USER+1021)
  1182. #define ID_XSMI_FILETYPES_DELETE        (WPMENUID_USER+1022)
  1183. #define ID_XSMI_FILETYPES_NEW           (WPMENUID_USER+1023)
  1184. #define ID_XSMI_FILETYPES_PICKUP        (WPMENUID_USER+1024)
  1185. #define ID_XSMI_FILETYPES_DROP          (WPMENUID_USER+1025)
  1186. #define ID_XSMI_FILETYPES_CANCELDRAG    (WPMENUID_USER+1026)
  1187. #define ID_XSMI_FILETYPES_EXPORT        (WPMENUID_USER+1027)
  1188. #define ID_XSMI_FILETYPES_IMPORT        (WPMENUID_USER+1028)
  1189.  
  1190. // "Filters" container on "File types" page
  1191. #define ID_XSM_FILEFILTER_SEL           (WPMENUID_USER+1030)
  1192. #define ID_XSM_FILEFILTER_NOSEL         (WPMENUID_USER+1031)
  1193. #define ID_XSMI_FILEFILTER_DELETE       (WPMENUID_USER+1035)
  1194. #define ID_XSMI_FILEFILTER_NEW          (WPMENUID_USER+1036)
  1195. #define ID_XSMI_FILEFILTER_IMPORTWPS    (WPMENUID_USER+1037)
  1196.  
  1197. // "Associations" container on "File types" page
  1198. #define ID_XSM_FILEASSOC_SEL            (WPMENUID_USER+1040)
  1199. #define ID_XSM_FILEASSOC_NOSEL          (WPMENUID_USER+1041)
  1200. #define ID_XSMI_FILEASSOC_DELETE        (WPMENUID_USER+1042)
  1201.  
  1202. // "Objects" menus on XWPSetup "Objects" page
  1203. #define ID_XSM_OBJECTS_SYSTEM           (WPMENUID_USER+1050)
  1204. #define ID_XSM_OBJECTS_XWORKPLACE       (WPMENUID_USER+1051)
  1205.  
  1206. // "Driver" menus on XFldSystem "Drivers" page
  1207. #define ID_XSM_DRIVERS_SEL              (WPMENUID_USER+1100)
  1208. #define ID_XSM_DRIVERS_NOSEL            (WPMENUID_USER+1101)
  1209. #define ID_XSMI_DRIVERS_CMDREFHELP      (WPMENUID_USER+1102)
  1210.  
  1211. // "Hotkey" menus on XWPKeyboard "Hotkeys" page
  1212. #define ID_XSM_HOTKEYS_SEL              (WPMENUID_USER+1120)
  1213. #define ID_XSMI_HOTKEYS_PROPERTIES      (WPMENUID_USER+1121)
  1214. #define ID_XSMI_HOTKEYS_OPENFOLDER      (WPMENUID_USER+1122)
  1215. #define ID_XSMI_HOTKEYS_REMOVE          (WPMENUID_USER+1123)
  1216.  
  1217. // "Function keys" menus on XWPKeyboard "Function keys" page
  1218. // V0.9.3 (2000-04-18) [umoeller]
  1219. #define ID_XSM_FUNCTIONKEYS_SEL         (WPMENUID_USER+1130)
  1220. #define ID_XSMI_FUNCK_EDIT              (WPMENUID_USER+1131)
  1221. #define ID_XSMI_FUNCK_DELETE            (WPMENUID_USER+1132)
  1222.  
  1223. #define ID_XSM_FUNCTIONKEYS_NOSEL       (WPMENUID_USER+1133)
  1224. #define ID_XSMI_FUNCK_NEW               (WPMENUID_USER+1134)
  1225.  
  1226. // "Sticky windows" context menus on XWPScreen "PageMage Sticky" page
  1227. // V0.9.4 (2000-07-10) [umoeller]
  1228. #define ID_XSM_STICKY_NOSEL             (WPMENUID_USER+1140)
  1229. #define ID_XSMI_STICKY_NEW              (WPMENUID_USER+1141)
  1230.  
  1231. #define ID_XSM_STICKY_SEL               (WPMENUID_USER+1142)
  1232. #define ID_XSMI_STICKY_DELETE           (WPMENUID_USER+1143)
  1233.  
  1234. /* XCenter main button menu V0.9.7 (2000-11-30) [umoeller] */
  1235. /* changed all IDs to above WPMENUID_USER (0x6500) because
  1236.    otherwise we cause conflicts with the WPS menu IDs
  1237.    V0.9.11 (2001-04-25) [umoeller] */
  1238. #define ID_CRM_XCENTERBUTTON            (WPMENUID_USER+1144)
  1239. // menu items; these only need to be unique within the menu
  1240. #define ID_CRMI_SEP1                    0x7f00
  1241. #define ID_CRMI_SEP2                    0x7f01
  1242. #define ID_CRMI_SUSPEND                 0x7f02
  1243. #define ID_CRMI_LOGOFF                  0x7f03
  1244. #define ID_CRMI_RESTARTWPS              0x7f04
  1245. #define ID_CRMI_SHUTDOWN                0x7f05
  1246. #define ID_CRMI_RUN                     0x7f06
  1247.  
  1248. #define ID_CRM_WIDGET                   0x7f07
  1249. #define ID_CRMI_PROPERTIES              0x7f08
  1250. #define ID_CRMI_HELP                    0x7f09
  1251. #define ID_CRMI_REMOVEWGT               0x7f0a
  1252.  
  1253. #define ID_FNM_SAMPLE                   (WPMENUID_USER+1145)
  1254.  
  1255. #define ID_XSM_PAGEMAGECTXTMENU         220
  1256.  
  1257. // The following menu ID's (with _OFS_ in their names)
  1258. // are _variable_ menu ID's: XFolder will add the value
  1259. // on the "XFolder Internals" page ("menu item id offset")
  1260. // to them to avoid ID conflicts. This value is stored
  1261. // internally in the GlobalSettings structure.
  1262. #define ID_XFMI_OFS_SEPARATOR           (WPMENUID_USER+1)
  1263. #define ID_XFMI_OFS_PRODINFO            (WPMENUID_USER+2)
  1264. #define ID_XFMI_OFS_REFRESH             (WPMENUID_USER+3)
  1265. #define ID_XFMI_OFS_SNAPTOGRID          (WPMENUID_USER+4)
  1266. #define ID_XFMI_OFS_OPENPARENT          (WPMENUID_USER+5)
  1267. #define ID_XFMI_OFS_OPENPARENTANDCLOSE  (WPMENUID_USER+6)
  1268. #define ID_XFMI_OFS_CLOSE               (WPMENUID_USER+7)
  1269. #define ID_XFM_OFS_SHUTDOWNMENU         (WPMENUID_USER+9)       // new with V0.9.0
  1270. // #define ID_XFMI_OFS_XSHUTDOWN           (WPMENUID_USER+10)      // new with V0.9.0
  1271.                                                     // removed V0.9.3 (2000-04-26) [umoeller]
  1272. #define ID_XFMI_OFS_OS2_SHUTDOWN        (WPMENUID_USER+10)      // new with V0.9.3 (2000-04-26) [umoeller]
  1273. #define ID_XFMI_OFS_RESTARTWPS          (WPMENUID_USER+11)
  1274.  
  1275. #define ID_XFMI_OFS_FLDRCONTENT         (WPMENUID_USER+12)
  1276. #define ID_XFMI_OFS_DUMMY               (WPMENUID_USER+13)
  1277. #define ID_XFMI_OFS_COPYFILENAME_MENU   (WPMENUID_USER+14)      // menu item
  1278. #define ID_XFMI_OFS_COPYFILENAME_SHORT  (WPMENUID_USER+15)      // folder hotkeys
  1279. #define ID_XFMI_OFS_COPYFILENAME_FULL   (WPMENUID_USER+16)      // folder hotkyes
  1280. #define ID_XFMI_OFS_BORED               (WPMENUID_USER+17)
  1281. #define ID_XFMI_OFS_SELECTSOME          (WPMENUID_USER+18)
  1282. #define ID_XFMI_OFS_PROCESSCONTENT      (WPMENUID_USER+19)
  1283.  
  1284. #define ID_XFMI_OFS_CONTEXTMENU         (WPMENUID_USER+20)
  1285.  
  1286. #define ID_XFMI_OFS_SORTBYCLASS         (WPMENUID_USER+21)
  1287. #define ID_XFMI_OFS_SORTBYEXT           (WPMENUID_USER+27)
  1288. #define ID_XFMI_OFS_SORTFOLDERSFIRST    (WPMENUID_USER+28)
  1289. #define ID_XFMI_OFS_ALWAYSSORT          (WPMENUID_USER+29)
  1290.  
  1291. #define ID_XFM_OFS_ATTRIBUTES           (WPMENUID_USER+31)
  1292. #define ID_XFMI_OFS_ATTR_ARCHIVED       (WPMENUID_USER+32)
  1293. #define ID_XFMI_OFS_ATTR_SYSTEM         (WPMENUID_USER+33)
  1294. #define ID_XFMI_OFS_ATTR_HIDDEN         (WPMENUID_USER+34)
  1295. #define ID_XFMI_OFS_ATTR_READONLY       (WPMENUID_USER+35)
  1296.  
  1297. #define ID_XFM_OFS_WARP3FLDRVIEW        (WPMENUID_USER+36)
  1298. #define ID_XFMI_OFS_SMALLICONS          (WPMENUID_USER+37)
  1299. #define ID_XFMI_OFS_FLOWED              (WPMENUID_USER+38)
  1300. #define ID_XFMI_OFS_NONFLOWED           (WPMENUID_USER+39)
  1301. #define ID_XFMI_OFS_NOGRID              (WPMENUID_USER+40)
  1302.  
  1303. #define ID_XFMI_OFS_WARP4MENUBAR        (WPMENUID_USER+41)  // added V0.9.0
  1304. #define ID_XFMI_OFS_SHOWSTATUSBAR       (WPMENUID_USER+42)
  1305.  
  1306. // new view item in "Open" submenu... this is used for XWPClassList, Partitions,
  1307. // XCenter, XWPFontObject, ...
  1308. #define ID_XFMI_OFS_XWPVIEW             (WPMENUID_USER+43)
  1309.  
  1310. // Trash can (XWPTrashCan, XWPTrashObject, new with V0.9.0)
  1311. #define ID_XFMI_OFS_TRASHEMPTY          (WPMENUID_USER+44)
  1312. #define ID_XFMI_OFS_TRASHRESTORE        (WPMENUID_USER+45)
  1313. #define ID_XFMI_OFS_TRASHDESTROY        (WPMENUID_USER+46)
  1314.  
  1315. // "Deinstall" menu item in XWPFontObject V0.9.7 (2001-01-13) [umoeller]
  1316. #define ID_XFMI_OFS_FONT_DEINSTALL      (WPMENUID_USER+47)
  1317.  
  1318. // "Default document" item in WPFolder "Open" and WPDataFile main context menu V0.9.4 (2000-06-09) [umoeller]
  1319. #define ID_XFMI_OFS_FDRDEFAULTDOC       (WPMENUID_USER+48)
  1320.  
  1321. // "Logoff" menu item in XFldDesktop V0.9.5 (2000-08-10) [umoeller]
  1322. #define ID_XFMI_OFS_LOGOFF              (WPMENUID_USER+50)
  1323.  
  1324. // this is the value used for variable menu items, i.e.
  1325. // those inserted according to the config folder and by
  1326. // the "folder content" functions; XFolder will use this
  1327. // value (i.e. WPMENUID_USER + "menu item id offset"
  1328. // + FIRST_VARIABLE) and increment it until 0x8000 is reached
  1329. #define FIRST_VARIABLE                  60      // raised V0.9.4 (2000-06-10) [umoeller]
  1330. #define ID_XFMI_OFS_VARIABLE            (WPMENUID_USER+FIRST_VARIABLE)
  1331.  
  1332. /******************************************
  1333.  *          String IDs                    *
  1334.  ******************************************/
  1335.  
  1336. // XFolder uses the following ID's for language-
  1337. // dependent strings. These correspond to the
  1338. // string definitions in the NLS .RC file.
  1339. // Note that XFolder also uses a message file
  1340. // (.MSG) for messages which might turn out to
  1341. // be longer than 256 characters.
  1342.  
  1343. // These IDs should not have "gaps" in the
  1344. // numbers, because OS/2 loads string resources
  1345. // in blocks of 16 strings, which does not
  1346. // work if the IDs don't have following numbers.
  1347.  
  1348. // Note: All string IDs have been raised with V0.9.0.
  1349.  
  1350. #define ID_XSS_MAIN               5000
  1351. #define ID_XSSI_NOTDEFINED        5001
  1352. #define ID_XSSI_PRODUCTINFO       5002
  1353. #define ID_XSSI_REFRESHNOW        5003
  1354. #define ID_XSSI_SNAPTOGRID        5004
  1355. #define ID_XSSI_DLLLANGUAGE       5005
  1356. #define ID_XSSI_XFOLDERVERSION    5006
  1357.  
  1358. #define ID_XSSI_FLDRCONTENT       5007
  1359. #define ID_XSSI_COPYFILENAME      5008
  1360. #define ID_XSSI_BORED             5009
  1361. #define ID_XSSI_FLDREMPTY         5010
  1362. #define ID_XSSI_SELECTSOME        5011
  1363.  
  1364. // startup/shutdown folder context menu
  1365. #define ID_XSSI_PROCESSCONTENT    5012
  1366.  
  1367. #define ID_XFSI_QUICKSTATUS       5013
  1368.  
  1369. #define ID_XSSI_POPULATING        5014
  1370. #define ID_XSSI_SBTEXTNONESEL     5015
  1371. #define ID_XSSI_SBTEXTMULTISEL    5016
  1372. #define ID_XSSI_SBTEXTWPDATAFILE  5017
  1373. #define ID_XSSI_SBTEXTWPDISK      5018
  1374. #define ID_XSSI_SBTEXTWPPROGRAM   5019
  1375. #define ID_XSSI_SBTEXTWPOBJECT    5020
  1376.  
  1377. #define ID_XSSI_NLS_AUTHOR        5021      // new with V0.9.0
  1378. // #define ID_XSSI_KERNEL_BUILD      5022      // new with V0.9.0; for /main/xfldr.rc
  1379.         // removed V0.9.7 (2000-12-14) [umoeller]
  1380.  
  1381. // folder hotkeys: key descriptions
  1382. #define ID_XSSI_KEY_CTRL             5201
  1383. #define ID_XSSI_KEY_Alt              5202
  1384. #define ID_XSSI_KEY_SHIFT            5203
  1385.  
  1386. #define ID_XSSI_KEY_BACKSPACE        5204
  1387. #define ID_XSSI_KEY_TAB              5205
  1388. #define ID_XSSI_KEY_BACKTABTAB       5206
  1389. #define ID_XSSI_KEY_ENTER            5207
  1390. #define ID_XSSI_KEY_ESC              5208
  1391. #define ID_XSSI_KEY_SPACE            5209
  1392. #define ID_XSSI_KEY_PAGEUP           5210
  1393. #define ID_XSSI_KEY_PAGEDOWN         5211
  1394. #define ID_XSSI_KEY_END              5212
  1395. #define ID_XSSI_KEY_HOME             5213
  1396. #define ID_XSSI_KEY_LEFT             5214
  1397. #define ID_XSSI_KEY_UP               5215
  1398. #define ID_XSSI_KEY_RIGHT            5216
  1399. #define ID_XSSI_KEY_DOWN             5217
  1400. #define ID_XSSI_KEY_PRINTSCRN        5218
  1401. #define ID_XSSI_KEY_INSERT           5219
  1402. #define ID_XSSI_KEY_DELETE           5220
  1403. #define ID_XSSI_KEY_SCRLLOCK         5221
  1404. #define ID_XSSI_KEY_NUMLOCK          5222
  1405.  
  1406. #define ID_XSSI_KEY_WINLEFT          5223
  1407. #define ID_XSSI_KEY_WINRIGHT         5224
  1408. #define ID_XSSI_KEY_WINMENU          5225
  1409.  
  1410. // folder hotkeys: action descriptions
  1411. #define ID_XSSI_LB_REFRESHNOW           5500
  1412. #define ID_XSSI_LB_SNAPTOGRID           5501
  1413. #define ID_XSSI_LB_SELECTALL            5502
  1414. #define ID_XSSI_LB_OPENPARENTFOLDER     5503
  1415.  
  1416. #define ID_XSSI_LB_OPENSETTINGSNOTEBOOK 5504
  1417. #define ID_XSSI_LB_OPENNEWDETAILSVIEW   5505
  1418. #define ID_XSSI_LB_OPENNEWICONVIEW      5506
  1419. #define ID_XSSI_LB_DESELECTALL          5507
  1420. #define ID_XSSI_LB_OPENNEWTREEVIEW      5508
  1421.  
  1422. #define ID_XSSI_LB_FIND                 5509
  1423.  
  1424. #define ID_XSSI_LB_PICKUP               5510
  1425. #define ID_XSSI_LB_PICKUPCANCELDRAG     5511
  1426.  
  1427. #define ID_XSSI_LB_SORTBYNAME           5512
  1428. #define ID_XSSI_LB_SORTBYSIZE           5513
  1429. #define ID_XSSI_LB_SORTBYTYPE           5514
  1430. #define ID_XSSI_LB_SORTBYREALNAME       5515
  1431. #define ID_XSSI_LB_SORTBYWRITEDATE      5516
  1432. #define ID_XSSI_LB_SORTBYACCESSDATE     5517
  1433. #define ID_XSSI_LB_SORTBYCREATIONDATE   5518
  1434.  
  1435. #define ID_XSSI_LB_SWITCHTOICONVIEW     5519
  1436. #define ID_XSSI_LB_SWITCHTODETAILSVIEW  5520
  1437. #define ID_XSSI_LB_SWITCHTOTREEVIEW     5521
  1438.  
  1439. #define ID_XSSI_LB_ARRANGEDEFAULT       5522
  1440. #define ID_XSSI_LB_ARRANGEFROMTOP       5523
  1441. #define ID_XSSI_LB_ARRANGEFROMLEFT      5524
  1442. #define ID_XSSI_LB_ARRANGEFROMRIGHT     5525
  1443. #define ID_XSSI_LB_ARRANGEFROMBOTTOM    5526
  1444. #define ID_XSSI_LB_ARRANGEPERIMETER     5527
  1445. #define ID_XSSI_LB_ARRANGEHORIZONTALLY  5528
  1446. #define ID_XSSI_LB_ARRANGEVERTICALLY    5529
  1447.  
  1448. #define ID_XSSI_LB_INSERT               5530
  1449.  
  1450. #define ID_XSSI_LB_SORTBYEXTENSION      5531
  1451. #define ID_XSSI_LB_SORTFOLDERSFIRST     5532
  1452. #define ID_XSSI_LB_SORTBYCLASS          5533
  1453. #define ID_XSSI_LB_OPENPARENTFOLDERANDCLOSE     5534
  1454. #define ID_XSSI_LB_SELECTSOME           5535
  1455.  
  1456. #define ID_XSSI_LB_CLOSEWINDOW          5536
  1457.  
  1458. #define ID_XSSI_LB_CONTEXTMENU          5537
  1459. #define ID_XSSI_LB_TASKLIST             5538
  1460.  
  1461. #define ID_XSSI_LB_COPYFILENAME_SHORT   5539
  1462. #define ID_XSSI_LB_COPYFILENAME_FULL    5540
  1463.  
  1464. // FIRST and LAST are used be the notebook func to
  1465. // calculate corresponding items
  1466. #define ID_XSSI_LB_FIRST                5500
  1467. #define ID_XSSI_LB_LAST                 5540
  1468.  
  1469. // shutdown strings
  1470. #define ID_SDSI_FLUSHING                5600
  1471. #define ID_SDSI_CAD                     5601
  1472. #define ID_SDSI_REBOOTING               5602
  1473. #define ID_SDSI_CLOSING                 5603
  1474. #define ID_SDSI_SHUTDOWN                5604
  1475. #define ID_SDSI_RESTARTWPS              5605
  1476. #define ID_SDSI_RESTARTINGWPS           5606
  1477. #define ID_SDSI_SAVINGDESKTOP           5607
  1478. #define ID_SDSI_SAVINGPROFILES          5608
  1479. #define ID_SDSI_STARTING                5609
  1480. #define ID_SDSI_DEFAULT                 5610
  1481.  
  1482. // settings page titles (for notebook tabs)
  1483. #define ID_XSSI_1GENERIC                5620
  1484. #define ID_XSSI_2REMOVEITEMS            5621
  1485. #define ID_XSSI_25ADDITEMS              5622
  1486. #define ID_XSSI_26CONFIGITEMS           5623
  1487. #define ID_XSSI_27STATUSBAR             5624
  1488. #define ID_XSSI_3SNAPTOGRID             5625
  1489. #define ID_XSSI_4ACCELERATORS           5626
  1490. #define ID_XSSI_5INTERNALS              5627
  1491. #define ID_XSSI_FILEOPS                 5628
  1492. #define ID_XSSI_SORT                    5629
  1493. #define ID_XSSI_INTERNALS               5630
  1494. #define ID_XSSI_WPSCLASSES              5631
  1495. #define ID_XSSI_XWPSTATUS               5632
  1496. #define ID_XSSI_FEATURES                5633
  1497. #define ID_XSSI_PARANOIA                5634
  1498. #define ID_XSSI_OBJECTS                 5635
  1499. #define ID_XSSI_FILEPAGE                5636
  1500. #define ID_XSSI_DETAILSPAGE             5637
  1501. #define ID_XSSI_XSHUTDOWNPAGE           5638
  1502. #define ID_XSSI_STARTUPPAGE             5639
  1503. #define ID_XSSI_DTPMENUPAGE             5640
  1504. #define ID_XSSI_FILETYPESPAGE           5641
  1505. #define ID_XSSI_SOUNDSPAGE              5642
  1506. #define ID_XSSI_VIEWPAGE                5643
  1507. #define ID_XSSI_ARCHIVESPAGE            5644
  1508. #define ID_XSSI_PGMFILE_MODULE          5645
  1509. #define ID_XSSI_OBJECTHOTKEYSPAGE       5646
  1510. #define ID_XSSI_FUNCTIONKEYSPAGE        5647
  1511. #define ID_XSSI_MOUSEHOOKPAGE           5648
  1512. #define ID_XSSI_MAPPINGSPAGE            5649
  1513.  
  1514. // sort criteria
  1515. #define ID_XSSI_SV_NAME                 5650
  1516. #define ID_XSSI_SV_TYPE                 5651
  1517. #define ID_XSSI_SV_CLASS                5652
  1518. #define ID_XSSI_SV_REALNAME             5653
  1519. #define ID_XSSI_SV_SIZE                 5654
  1520. #define ID_XSSI_SV_WRITEDATE            5655
  1521. #define ID_XSSI_SV_ACCESSDATE           5656
  1522. #define ID_XSSI_SV_CREATIONDATE         5657
  1523. #define ID_XSSI_SV_EXT                  5658
  1524. #define ID_XSSI_SV_FOLDERSFIRST         5659
  1525.  
  1526. #define ID_XSSI_SV_ALWAYSSORT           5660
  1527.  
  1528. // message box strings
  1529. // #define ID_XSSI_DLG_CONFIRMCONFIGSYS1   4000
  1530. // #define ID_XSSI_DLG_CONFIRMCONFIGSYS2   4001
  1531.  
  1532. // "Yes", "no", etc.
  1533. #define ID_XSSI_DLG_YES                 5800
  1534. #define ID_XSSI_DLG_YES2ALL             5801
  1535. #define ID_XSSI_DLG_NO                  5802
  1536. #define ID_XSSI_DLG_OK                  5803
  1537. #define ID_XSSI_DLG_CANCEL              5804
  1538. #define ID_XSSI_DLG_ABORT               5805
  1539. #define ID_XSSI_DLG_RETRY               5806
  1540. #define ID_XSSI_DLG_IGNORE              5807
  1541.  
  1542. // "status bars" page
  1543. #define ID_XSSI_SB_CLASSMNEMONICS       5808
  1544. #define ID_XSSI_SB_CLASSNOTSUPPORTED    5809
  1545.  
  1546. // "WPS Classes" page
  1547. #define ID_XSSI_WPSCLASSLOADED          5810
  1548. #define ID_XSSI_WPSCLASSLOADINGFAILED   5811
  1549. #define ID_XSSI_WPSCLASSREPLACEDBY      5812
  1550. #define ID_XSSI_WPSCLASSORPHANS         5813
  1551. #define ID_XSSI_WPSCLASSORPHANSINFO     5814
  1552.  
  1553. // CONFIG.SYS pages
  1554. #define ID_XSSI_SCHEDULER               5815
  1555. #define ID_XSSI_MEMORY                  5816
  1556. #define ID_XSSI_ERRORS                  5817
  1557. #define ID_XSSI_WPS                     5818
  1558. #define ID_XSSI_SYSPATHS                5819    // new with V0.9.0
  1559. #define ID_XSSI_DRIVERS                 5820    // new with V0.9.0
  1560. #define ID_XSSI_DRIVERCATEGORIES        5821    // new with V0.9.0
  1561.  
  1562. // settings submenu strings
  1563. #define ID_XFSI_SETTINGS                5831
  1564. #define ID_XFSI_SETTINGSNOTEBOOK        5832
  1565. #define ID_XFSI_ATTRIBUTES              5833
  1566. #define ID_XFSI_ATTR_ARCHIVE            5834
  1567. #define ID_XFSI_ATTR_SYSTEM             5835
  1568. #define ID_XFSI_ATTR_HIDDEN             5836
  1569. #define ID_XFSI_ATTR_READONLY           5837
  1570.  
  1571. #define ID_XFSI_FLDRSETTINGS            5838
  1572. #define ID_XFSI_SMALLICONS              5839
  1573. #define ID_XFSI_FLOWED                  5840
  1574. #define ID_XFSI_NONFLOWED               5841
  1575. #define ID_XFSI_NOGRID                  5842
  1576.  
  1577. #define ID_XFSI_WARP4MENUBAR            5843
  1578. #define ID_XFSI_SHOWSTATUSBAR           5844
  1579.  
  1580. // "WPS Class List" (XWPClassList, new with V0.9.0)
  1581. #define ID_XFSI_OPENCLASSLIST           5845
  1582. #define ID_XFSI_XWPCLASSLIST            5846
  1583. #define ID_XFSI_REGISTERCLASS           5847
  1584.  
  1585. // XWPSound (new with V0.9.0)
  1586. #define ID_XSSI_SOUNDSCHEMENONE         5849
  1587. // "System paths" page
  1588. #define ID_XSSI_ITEMSSELECTED           5850    // new with V0.9.0
  1589.  
  1590. // Trash can (XWPTrashCan, XWPTrashObject, new with V0.9.0)
  1591. #define ID_XTSI_TRASHEMPTY              5851
  1592. #define ID_XTSI_TRASHRESTORE            5852
  1593. #define ID_XTSI_TRASHDESTROY            5853
  1594.  
  1595. #define ID_XTSI_TRASHCAN                5854
  1596. #define ID_XTSI_TRASHOBJECT             5855
  1597.  
  1598. #define ID_XTSI_TRASHSETTINGSPAGE       5856
  1599. #define ID_XTSI_TRASHDRIVESPAGE         5857
  1600.  
  1601. #define ID_XTSI_ORIGFOLDER              5858
  1602. #define ID_XTSI_DELDATE                 5859
  1603. #define ID_XTSI_DELTIME                 5860
  1604. #define ID_XTSI_SIZE                    5861
  1605. #define ID_XTSI_ORIGCLASS               5862
  1606.  
  1607. #define ID_XTSI_STB_POPULATING          5863
  1608. #define ID_XTSI_STB_OBJCOUNT            5864
  1609.  
  1610. // Details view columns on XWPKeyboard "Hotkeys" page; V0.9.1 (99-12-03)
  1611. #define ID_XSSI_HOTKEY_TITLE            5865
  1612. #define ID_XSSI_HOTKEY_FOLDER           5866
  1613. #define ID_XSSI_HOTKEY_HANDLE           5867
  1614. #define ID_XSSI_HOTKEY_HOTKEY           5868
  1615.  
  1616. // Method info columns for XWPClassList; V0.9.1 (99-12-03)
  1617. #define ID_XSSI_CLSLIST_INDEX           5869
  1618. #define ID_XSSI_CLSLIST_METHOD          5870
  1619. #define ID_XSSI_CLSLIST_ADDRESS         5871
  1620. #define ID_XSSI_CLSLIST_CLASS           5872
  1621. #define ID_XSSI_CLSLIST_OVERRIDDENBY    5873
  1622.  
  1623. // "Special functions" on XWPMouse "Movement" page
  1624. #define ID_XSSI_SPECIAL_WINDOWLIST      5903
  1625. #define ID_XSSI_SPECIAL_DESKTOPPOPUP    5904
  1626.  
  1627. // default title of XWPScreen class V0.9.2 (2000-02-23) [umoeller]
  1628. #define ID_XSSI_XWPSCREENTITLE          5905
  1629.  
  1630. // "Partitions" item in WPDrives "open" menu V0.9.2 (2000-02-29) [umoeller]
  1631. #define ID_XSSI_OPENPARTITIONS          5906
  1632.  
  1633. // "Syslevel" page title in "OS/2 kernel" V0.9.3 (2000-04-01) [umoeller]
  1634. #define ID_XSSI_SYSLEVELPAGE            5907
  1635.  
  1636. #define ID_XTSI_CALCULATING             5908
  1637.  
  1638. #define ID_MMSI_DEVICETYPE              5909
  1639. #define ID_MMSI_DEVICEINDEX             5910
  1640. #define ID_MMSI_DEVICEINFO              5911
  1641.  
  1642. #define ID_MMSI_TYPE_IMAGE              5912
  1643. #define ID_MMSI_TYPE_AUDIO              5913
  1644. #define ID_MMSI_TYPE_MIDI               5914
  1645. #define ID_MMSI_TYPE_COMPOUND           5915
  1646. #define ID_MMSI_TYPE_OTHER              5916
  1647. #define ID_MMSI_TYPE_UNKNOWN            5917
  1648. #define ID_MMSI_TYPE_VIDEO              5918
  1649. #define ID_MMSI_TYPE_ANIMATION          5919
  1650. #define ID_MMSI_TYPE_MOVIE              5920
  1651.  
  1652. #define ID_MMSI_TYPE_STORAGE            5921
  1653. #define ID_MMSI_TYPE_FILE               5922
  1654. #define ID_MMSI_TYPE_DATA               5923
  1655.  
  1656. #define ID_MMSI_DEVTYPE_VIDEOTAPE       5924
  1657. #define ID_MMSI_DEVTYPE_VIDEODISC       5925
  1658. #define ID_MMSI_DEVTYPE_CD_AUDIO        5926
  1659. #define ID_MMSI_DEVTYPE_DAT             5927
  1660. #define ID_MMSI_DEVTYPE_AUDIO_TAPE      5928
  1661. #define ID_MMSI_DEVTYPE_OTHER           5929
  1662. #define ID_MMSI_DEVTYPE_WAVEFORM_AUDIO  5930
  1663. #define ID_MMSI_DEVTYPE_SEQUENCER       5931
  1664. #define ID_MMSI_DEVTYPE_AUDIO_AMPMIX    5932
  1665. #define ID_MMSI_DEVTYPE_OVERLAY         5933
  1666. #define ID_MMSI_DEVTYPE_ANIMATION       5934
  1667. #define ID_MMSI_DEVTYPE_DIGITAL_VIDEO   5935
  1668. #define ID_MMSI_DEVTYPE_SPEAKER         5936
  1669. #define ID_MMSI_DEVTYPE_HEADPHONE       5937
  1670. #define ID_MMSI_DEVTYPE_MICROPHONE      5938
  1671. #define ID_MMSI_DEVTYPE_MONITOR         5939
  1672. #define ID_MMSI_DEVTYPE_CDXA            5940
  1673. #define ID_MMSI_DEVTYPE_FILTER          5941
  1674. #define ID_MMSI_DEVTYPE_TTS             5942
  1675.  
  1676. #define ID_MMSI_COLMN_FOURCC            5943
  1677. #define ID_MMSI_COLMN_NAME              5944
  1678. #define ID_MMSI_COLMN_IOPROC_TYPE       5945
  1679. #define ID_MMSI_COLMN_MEDIA_TYPE        5946
  1680. #define ID_MMSI_COLMN_EXTENSION         5947
  1681. #define ID_MMSI_COLMN_DLL               5948
  1682. #define ID_MMSI_COLMN_PROCEDURE         5949
  1683.  
  1684. #define ID_MMSI_PAGETITLE_DEVICES       5950
  1685. #define ID_MMSI_PAGETITLE_IOPROCS       5951
  1686. #define ID_MMSI_PAGETITLE_CODECS        5952
  1687.  
  1688. #define ID_XSSI_PAGETITLE_PAGEMAGE      5953
  1689.  
  1690. #define ID_XSSI_XWPSTRING_PAGE          5954
  1691. #define ID_XSSI_XWPSTRING_OPENMENU      5955
  1692.  
  1693. #define ID_XSSI_COLMN_SYSL_COMPONENT    5956
  1694. #define ID_XSSI_COLMN_SYSL_FILE         5957
  1695. #define ID_XSSI_COLMN_SYSL_VERSION      5958
  1696. #define ID_XSSI_COLMN_SYSL_LEVEL        5959
  1697. #define ID_XSSI_COLMN_SYSL_PREVIOUS     5960
  1698.  
  1699. #define ID_XSSI_DRIVERS_VERSION         5961
  1700. #define ID_XSSI_DRIVERS_VENDOR          5962
  1701.  
  1702. #define ID_XSSI_FUNCKEY_DESCRIPTION     5963
  1703. #define ID_XSSI_FUNCKEY_SCANCODE        5964
  1704. #define ID_XSSI_FUNCKEY_MODIFIER        5965
  1705.  
  1706. // default documents V0.9.4 (2000-06-09) [umoeller]
  1707. #define ID_XSSI_DATAFILEDEFAULTDOC      5966
  1708. #define ID_XSSI_FDRDEFAULTDOC           5967
  1709.  
  1710. // XCenter V0.9.4 (2000-06-10) [umoeller]
  1711. #define ID_XSSI_XCENTERPAGE1            5968
  1712.  
  1713. // file operations V0.9.4 (2000-07-27) [umoeller]
  1714. #define ID_XSSI_FOPS_MOVE2TRASHCAN      5969
  1715. #define ID_XSSI_FOPS_RESTOREFROMTRASHCAN 5970
  1716. #define ID_XSSI_FOPS_TRUEDELETE         5971
  1717. #define ID_XSSI_FOPS_EMPTYINGTRASHCAN   5972
  1718.  
  1719. #define ID_XSSI_ICONPAGE                5973
  1720.  
  1721. // XShutdown INI save strings V0.9.5 (2000-08-16) [umoeller]
  1722. #define ID_XSSI_XSD_SAVEINIS_NEW        5974
  1723. #define ID_XSSI_XSD_SAVEINIS_OLD        5975
  1724. #define ID_XSSI_XSD_SAVEINIS_NONE       5976
  1725.  
  1726. // logoff V0.9.5 (2000-09-28) [umoeller]
  1727. #define ID_XSSI_XSD_LOGOFF              5977
  1728. #define ID_XSSI_XSD_CONFIRMLOGOFFMSG    5978
  1729.  
  1730. // "bytes" strings for status bars V0.9.6 (2000-11-23) [umoeller]
  1731. #define ID_XSSI_BYTE                    5979
  1732. #define ID_XSSI_BYTES                   5980
  1733.  
  1734. // title of "Resources" page V0.9.7 (2000-12-20) [umoeller]
  1735. #define ID_XSSI_PGMFILE_RESOURCES       5981
  1736.  
  1737. // title of program(file) "Associations" page V0.9.9 (2001-03-07) [umoeller]
  1738. #define ID_XSSI_PGM_ASSOCIATIONS        5982
  1739.  
  1740. // sigh... more new strings below, after the features page...
  1741. // not enough room here
  1742.  
  1743. /******************************************
  1744.  *  Features on XWPSetup "Features" page  *
  1745.  ******************************************/
  1746.  
  1747. // The following identifiers are used BOTH
  1748. // for loading string resources and for
  1749. // identifying check box container record
  1750. // cores (helpers/cnrh.c).
  1751.  
  1752. #define ID_XCSI_GENERALFEATURES         5999
  1753. #define ID_XCSI_REPLACEICONS            6000
  1754. #define ID_XCSI_RESIZESETTINGSPAGES     6001
  1755. #define ID_XCSI_ADDOBJECTPAGE           6002
  1756. #define ID_XCSI_REPLACEFILEPAGE         6003
  1757. #define ID_XCSI_XSYSTEMSOUNDS           6004
  1758.  
  1759. #define ID_XCSI_FOLDERFEATURES          6010
  1760. #define ID_XCSI_ENABLESTATUSBARS        6011
  1761. #define ID_XCSI_ENABLESNAP2GRID         6012
  1762. #define ID_XCSI_ENABLEFOLDERHOTKEYS     6013
  1763. #define ID_XCSI_EXTFOLDERSORT           6014
  1764.  
  1765. #define ID_XCSI_STARTSHUTFEATURES       6020
  1766. #define ID_XCSI_ARCHIVING               6021
  1767. #define ID_XCSI_RESTARTWPS              6022
  1768. #define ID_XCSI_XSHUTDOWN               6023
  1769.  
  1770. #define ID_XCSI_FILEOPERATIONS          6040
  1771. #define ID_XCSI_EXTASSOCS               6041
  1772. #define ID_XCSI_CLEANUPINIS             6042
  1773. #define ID_XCSI_REPLFILEEXISTS          6043
  1774. #define ID_XCSI_REPLDRIVENOTREADY       6044
  1775. #define ID_XCSI_XWPTRASHCAN             6045
  1776. #define ID_XCSI_REPLACEDELETE           6046
  1777. #define ID_XCSI_REPLHANDLES             6047
  1778. #define ID_XCSI_REPLACEREFRESH          6048
  1779.  
  1780. #define ID_XCSI_MOUSEKEYBOARDFEATURES   6050
  1781. #define ID_XCSI_XWPHOOK                 6051
  1782. #define ID_XCSI_ANIMOUSE                6052
  1783. #define ID_XCSI_GLOBALHOTKEYS           6053
  1784. #define ID_XCSI_PAGEMAGE                6054
  1785.  
  1786. /******************************************
  1787.  *  Still more string IDs                 *
  1788.  ******************************************/
  1789.  
  1790. #define ID_XSSI_STYLEPAGE               6098
  1791. #define ID_XSSI_CLASSESPAGE             6099
  1792. #define ID_XSSI_WIDGETSPAGE             6100
  1793. #define ID_XSSI_ADDWIDGET               6101        // "~ADD WIDGET"
  1794. #define ID_XSSI_WIDGETCLASS             6102        // "Class";
  1795. #define ID_XSSI_WIDGETSETUP             6103        // "Setup";
  1796.  
  1797. #define ID_XSSI_FONTFOLDER              6104
  1798. #define ID_XSSI_FONTFILE                6105
  1799. #define ID_XSSI_FONTFAMILY              6106
  1800. #define ID_XSSI_FONTERRORS              6107
  1801. #define ID_XSSI_FONTOBJECT              6108
  1802. #define ID_XSSI_CDPLAYERVIEW            6109
  1803. #define ID_XSSI_CDPLAYER                6110
  1804. #define ID_XSSI_VOLUMEVIEW              6111
  1805. #define ID_XSSI_VOLUME                  6112
  1806. #define ID_XSSI_ADMINISTRATOR           6113
  1807. #define ID_XSSI_THREADSPAGE             6114
  1808.  
  1809. #define ID_XSSI_CLSLISTTOKEN            6120
  1810.  
  1811. #define ID_XSSI_DRIVERVERSION           6121           // "Version: "
  1812. #define ID_XSSI_DRIVERVENDOR            6122           // "Vendor: "
  1813.  
  1814. #define ID_XSSI_FONTSAMPLEVIEW          6123
  1815. #define ID_XSSI_FONTDEINSTALL           6124           // "~Deinstall..."
  1816.  
  1817. #define ID_XSSI_KEYDESCRIPTION          6125           // "Key description"
  1818. #define ID_XSSI_SCANCODE                6126           // "Hardware scan code";
  1819. #define ID_XSSI_MODIFIER                6127           // "Modifier";
  1820.  
  1821. #define ID_XSSI_DEFAULTSHUTDOWN         6128           // "DEFAULT OS/2 SHUTDOWN..."
  1822. #define ID_XSSI_INSTALLINGFONTS         6129           // "Installing fonts...";
  1823.  
  1824. #define ID_XSSI_PARAMETERS              6130           // title of variable prompts dlg
  1825. #define ID_XSSI_CLOSE                   6131           // "~CLOSE"
  1826.  
  1827. #define ID_XSSI_DROPPED1                6132           // "... %D OBJECTS DROPPED,"
  1828. #define ID_XSSI_DROPPED2                6133           // "OPEN FOLDER TO SEE THEM"
  1829.  
  1830. #define ID_XSSI_THREADSTHREAD           6134           // "Thread";
  1831. #define ID_XSSI_THREADSTID              6135           // "TID";
  1832. #define ID_XSSI_THREADSPRIORITY         6136           // "Priority";
  1833. #define ID_XSSI_THREADSGROUPTITLE       6137           // "XWorkplace threads"
  1834.  
  1835. #define ID_XSSI_ARCRESTORED             6138           // "Archive was just restored."
  1836. #define ID_XSSI_ARCDAYSPASSED           6139           // "%d days passed since last backup."
  1837. #define ID_XSSI_ARCDAYSLIMIT            6140           // "Limit: %d days."
  1838. #define ID_XSSI_ARCINICHECKING          6141            // "Checking INI files..."
  1839. #define ID_XSSI_ARCINICHANGED           6142            // "INI files changed %f %%."
  1840. #define ID_XSSI_ARCINILIMIT             6143            // "Limit: %f %%."
  1841. #define ID_XSSI_ARCENABLED              6144            // "WPS archiving enabled."
  1842. #define ID_XSSI_ARCNOTNECC              6145            // "WPS archiving not necessary."
  1843.  
  1844. #define ID_XSSI_PGMFILE_MODULE1         6146           // "Imported modules"
  1845. #define ID_XSSI_PGMFILE_MODULE2         6147           // "Exported functions"
  1846. #define ID_XSSI_COLMN_MODULENAME        6148           // "Name"
  1847. #define ID_XSSI_COLMN_EXPORTORDINAL     6149           // "Ordinal"
  1848. #define ID_XSSI_COLMN_EXPORTTYPE        6150           // "Type"
  1849. #define ID_XSSI_COLMN_EXPORTNAME        6151           // "Name"
  1850. #define ID_XSSI_COLMN_RESOURCEICON      6152           // "Icon"
  1851. #define ID_XSSI_COLMN_RESOURCEID        6153           // "ID"
  1852. #define ID_XSSI_COLMN_RESOURCETYPE      6154           // "Type"
  1853. #define ID_XSSI_COLMN_RESOURCESIZE      6155           // "Size"
  1854. #define ID_XSSI_COLMN_RESOURCEFLAGS     6156           // "Flags"
  1855.  
  1856. #define ID_XSSI_SPECIAL_PAGEMAGEUP      6157           // "One screen up"
  1857. #define ID_XSSI_SPECIAL_PAGEMAGERIGHT   6158           // "One screen right"
  1858. #define ID_XSSI_SPECIAL_PAGEMAGEDOWN    6159           // "One screen down"
  1859. #define ID_XSSI_SPECIAL_PAGEMAGELEFT    6160           // "One screen left"
  1860.  
  1861. #define ID_XSSI_MB3_AUTOSCROLL          6161           // "AutoScroll"
  1862. #define ID_XSSI_MB3_DBLCLICK            6162           // "Double click"
  1863. #define ID_XSSI_MB3_NOCONVERSION        6163           // "MB3 click"
  1864. #define ID_XSSI_MB3_PUSHTOBOTTOM        6164           // "Push to bottom"
  1865.  
  1866. #define ID_XSSI_SCREENBORDERSPAGE       6165           // "Screen borders"
  1867.  
  1868. #define ID_XSSI_ADMIN_USER              6166           // "Current user"
  1869.  
  1870. /******************************************
  1871.  *          Treesize                      *
  1872.  ******************************************/
  1873.  
  1874. #define ID_TSD_MAIN                     10001
  1875. #define ID_TSDI_CNR                     10002
  1876. #define ID_TSDI_TEXT1                   10003
  1877. #define ID_TSDI_TEXT2                   10004
  1878. #define ID_TSDI_ICON                    10005
  1879. #define DID_CLEAR                       10006
  1880.  
  1881. #define ID_TSD_PRODINFO                 10007
  1882.  
  1883. #define ID_TSM_CONTEXT                  10008
  1884. #define ID_TSM_SORT                     10009
  1885. #define ID_TSMI_SORTBYNAME              10010
  1886. #define ID_TSMI_SORTBYSIZE              10011
  1887. #define ID_TSMI_SORTBYEASIZE            10012
  1888. #define ID_TSMI_SORTBYFILESCOUNT        10013
  1889. #define ID_TSMI_COLLECTEAS              10014
  1890. #define ID_TSMI_LOWPRTY                 10015
  1891. #define ID_TSM_SIZES                    10016
  1892. #define ID_TSMI_SIZE_BYTES              10017
  1893. #define ID_TSMI_SIZE_KBYTES             10018
  1894. #define ID_TSMI_SIZE_MBYTES             10019
  1895.  
  1896. #define ID_TSMI_PRODINFO                10020
  1897.  
  1898. #define ID_TS_ICON                      10021
  1899.  
  1900. /******************************************
  1901.  *          NetscapeDDE                   *
  1902.  ******************************************/
  1903.  
  1904. #define ID_NDD_EXPLAIN                  10100
  1905. #define ID_NDD_QUERYSTART               10101
  1906. #define ID_NDD_CONTACTING               10102
  1907. #define ID_NDD_STARTING                 10103
  1908.  
  1909. #define ID_ND_ICON                      10110
  1910.  
  1911. /********************************************
  1912.  * Animated mouse pointers       >= 0x6000  *
  1913.  ********************************************/
  1914.  
  1915. // --- diverse res ids
  1916.  
  1917. #define IDTAB_NBPAGE                      0x60F0
  1918. #define IDDLG_GB_NBPAGE                   0x60F1
  1919.  
  1920. #define IDDLG_NBANIMATION                 0x60F2
  1921. #define IDDLG_NBHIDE                      0x60F3
  1922. #define IDDLG_NBDRAGDROP                  0x60F4
  1923. #define IDDLG_NBINIT                      0x60F5
  1924.  
  1925. #define IDTAB_NBANIMATION                 0x60F6
  1926. #define IDTAB_NBHIDE                      0x60F7
  1927. #define IDTAB_NBDRAGDROP                  0x60F8
  1928. #define IDTAB_NBINIT                      0x60F9
  1929.  
  1930. // --- pushbuttons
  1931.  
  1932. #define IDDLG_PB_OK                       0x6100
  1933. #define IDDLG_PB_CANCEL                   0x6101
  1934. #define IDDLG_PB_EDIT                     0x6102
  1935. #define IDDLG_PB_FIND                     0x6103
  1936. #define IDDLG_PB_LOAD                     0x6104
  1937. #define IDDLG_PB_UNDO                     0x6105
  1938. #define IDDLG_PB_DEFAULT                  0x6106
  1939. #define IDDLG_PB_HELP                     0x6107
  1940. #define IDDLG_PB_CLOSE                    0x6108
  1941. #define IDDLG_PB_RETURN                   0x6109
  1942.  
  1943.  
  1944. // --- notebook page dialog
  1945.  
  1946. #define IDDLG_DLG_ANIMATEDWAITPOINTER_230 0x6110
  1947. #define IDDLG_DLG_ANIMATEDWAITPOINTER     0x6111
  1948. #define IDDLG_CN_POINTERSET               0x6101
  1949.  
  1950.  
  1951. // --- about dialog
  1952.  
  1953. #define IDDLG_DLG_ABOUT                   0x6120
  1954.  
  1955.  
  1956. // --- settings dialog
  1957.  
  1958. #define IDDLG_DLG_CNRSETTINGS_230         0x6130
  1959. #define IDDLG_DLG_CNRSETTINGS             0x6131
  1960. #define IDDLG_EF_ANIMATIONPATH            0x6132
  1961. #define IDDLG_SB_FRAMELENGTH              0x6133
  1962. #define IDDLG_CB_USEFORALL                0x6134
  1963. #define IDDLG_CB_ANIMATEONLOAD            0x6135
  1964. #define IDDLG_EF_DRAGPTRTYPE              0x6136
  1965. #define IDDLG_EF_DRAGSETTYPE              0x6137
  1966. #define IDDLG_CB_HIDEPOINTER              0x6138
  1967. #define IDDLG_SB_HIDEPOINTERDELAY         0x6139
  1968. #define IDDLG_SB_INITDELAY                0x613A
  1969.  
  1970.  
  1971. // --- load set dialog
  1972.  
  1973. #define IDDLG_DLG_LOADSET                 0x6140
  1974. #define IDDLG_CN_FOUNDSETS                0x6141
  1975. #define IDDLG_CO_FILTER                   0x6142
  1976.  
  1977.  
  1978. // --- animation page for file classes properties notebook
  1979. #define IDDLG_DLG_ANIMATIONPAGE1_230      0x6150
  1980. #define IDDLG_DLG_ANIMATIONPAGE1          0x6151
  1981. #define IDDLG_DLG_ANIMATIONPAGE2_230      0x6152
  1982. #define IDDLG_DLG_ANIMATIONPAGE2          0x6153
  1983. #define IDDLG_DLG_ANIMATIONPAGE3_230      0x6154
  1984. #define IDDLG_DLG_ANIMATIONPAGE3          0x6155
  1985.  
  1986. #define IDTAB_NBGENERAL_230               0x615E
  1987. #define IDTAB_NBGENERAL                   0x615F
  1988.  
  1989. #define IDDLG_EF_INFONAME                 0x6160
  1990. #define IDDLG_EF_INFOARTIST               0x6161
  1991. #define IDDLG_EF_FRAMES                   0x6162
  1992. #define IDDLG_EF_PHYSFRAMES               0x6163
  1993. #define IDDLG_EF_DEFTIMEOUT               0x6164
  1994.  
  1995. // --- icon page for file classes properties notebook
  1996. #define IDDLG_DLG_ICONPAGE_230            0x6160
  1997. #define IDDLG_DLG_ICONPAGE                0x6161
  1998.  
  1999. #define IDDLG_ME_TITLE                    0x6162
  2000. #define IDDLG_CB_TEMPLATE                 0x6161
  2001. #define IDDLG_CB_LOCKPOS                  0x6163
  2002. #define IDDLG_GB_CONTENTS                 0x6164
  2003. #define IDDLG_IC_CONTENTS                 0x6165
  2004.  
  2005. // fine IDTAB_NBANIMATION                 bereits definiert
  2006.  
  2007.  
  2008. // --- animation editor dialog
  2009.  
  2010. #define IDDLG_DLG_EDITANIMATION           0x6180
  2011. #define IDDLG_GB_SELECTEDFRAME            0x6181
  2012. #define IDDLG_CN_FRAMESET                 0x6182
  2013. #define IDDLG_ST_SHOWFOR                  0x6183
  2014. //      IDDLG_SB_FRAMELENGTH              ------
  2015. #define IDDLG_ST_UNIT                     0x6184
  2016. #define IDDLG_GB_PREVIEW                  0x6185
  2017. #define IDDLG_ST_PREVIEW                  0x6186
  2018. //      IDDLG_EF_INFONAME
  2019. //      IDDLG_EF_INFOARTIST
  2020.  
  2021. #define IDDLG_BMP_STOP                    0x6187
  2022. #define IDDLG_BMP_STOPP                   0x6188
  2023. #define IDDLG_BMP_START                   0x6189
  2024. #define IDDLG_BMP_STARTP                  0x618A
  2025.  
  2026. // --- animation editor menu
  2027.  
  2028. #define IDMEN_AE_FILE                     0x6300
  2029. #define IDMEN_AE_FILE_NEW                 0x6301
  2030. #define IDMEN_AE_FILE_OPEN                0x6302
  2031. #define IDMEN_AE_FILE_SAVE                0x6303
  2032. #define IDMEN_AE_FILE_SAVEAS              0x6304
  2033. #define IDMEN_AE_FILE_IMPORT              0x6305
  2034. #define IDMEN_AE_FILE_EXIT                0x6306
  2035.  
  2036. #define IDMEN_AE_EDIT                     0x6310
  2037. #define IDMEN_AE_EDIT_COPY                0x6311
  2038. #define IDMEN_AE_EDIT_CUT                 0x6312
  2039. #define IDMEN_AE_EDIT_PASTE               0x6313
  2040. #define IDMEN_AE_EDIT_DELETE              0x6314
  2041. #define IDMEN_AE_EDIT_SELECTALL           0x6315
  2042. #define IDMEN_AE_EDIT_DESELECTALL         0x6316
  2043.  
  2044. #define IDMEN_AE_PALETTE                  0x6320
  2045. #define IDMEN_AE_PALETTE_OPEN             0x6321
  2046. #define IDMEN_AE_PALETTE_SAVEAS           0x6322
  2047. #define IDMEN_AE_PALETTE_COPY             0x6323
  2048. #define IDMEN_AE_PALETTE_PASTE            0x6324
  2049.  
  2050. #define IDMEN_AE_OPTION                   0x6331
  2051. #define IDMEN_AE_OPTION_UNIT              0x6332
  2052. #define IDMEN_AE_OPTION_UNIT_MS           0x6333
  2053. #define IDMEN_AE_OPTION_UNIT_JIF          0x6334
  2054.  
  2055. #define IDMEN_AE_HELP                     0x6340
  2056. #define IDMEN_AE_HELP_INDEX               0x6341
  2057. #define IDMEN_AE_HELP_GENERAL             0x6342
  2058. #define IDMEN_AE_HELP_USING               0x6343
  2059. #define IDMEN_AE_HELP_KEYS                0x6344
  2060. #define IDMEN_AE_HELP_ABOUT               0x6345
  2061.  
  2062. // --- animation editor item menu
  2063.  
  2064. #define IDMEN_EDITITEM                    0x6400
  2065.  
  2066. // --- res ids for container item popup menu
  2067.  
  2068. #define IDMEN_ITEM                        0x6200
  2069. #define IDMEN_ITEM_HELP                   0x6201
  2070. #define IDMEN_ITEM_HELP_INDEX             0x6202
  2071. #define IDMEN_ITEM_HELP_GENERAL           0x6203
  2072. #define IDMEN_ITEM_HELP_USING             0x6204
  2073. #define IDMEN_ITEM_HELP_KEYS              0x6205
  2074. #define IDMEN_ITEM_HELP_ABOUT             0x6206
  2075. #define IDMEN_ITEM_EDIT                   0x6207
  2076. #define IDMEN_ITEM_FIND                   0x6208
  2077. #define IDMEN_ITEM_SAVEAS                 0x6209
  2078. #define IDMEN_ITEM_DEFAULT                0x620A
  2079. #define IDMEN_ITEM_ANIMATE                0x620B
  2080.  
  2081.  
  2082. // --- res ids for container popup menu
  2083.  
  2084. #define IDMEN_FOLDER                      0x6210
  2085. #define IDMEN_FOLDER_SETTINGS_230         0x6211
  2086. #define IDMEN_FOLDER_SETTINGS             0x6212
  2087. #define IDMEN_FOLDER_SETTINGS_NEW         0x6712
  2088. #define IDMEN_FOLDER_VIEW                 0x6213
  2089. #define IDMEN_FOLDER_VIEW_ICON            0x6214
  2090. #define IDMEN_FOLDER_VIEW_DETAIL          0x6215
  2091. #define IDMEN_FOLDER_HELP                 0x6216
  2092. #define IDMEN_FOLDER_HELP_INDEX           0x6217
  2093. #define IDMEN_FOLDER_HELP_GENERAL         0x6218
  2094. #define IDMEN_FOLDER_HELP_USING           0x6219
  2095. #define IDMEN_FOLDER_HELP_KEYS            0x621A
  2096. #define IDMEN_FOLDER_HELP_ABOUT           0x621B
  2097. #define IDMEN_FOLDER_FIND                 0x621C
  2098. #define IDMEN_FOLDER_SAVEAS               0x621D
  2099. #define IDMEN_FOLDER_DEFAULT              0x621E
  2100. #define IDMEN_FOLDER_DEMO                 0x621F
  2101. #define IDMEN_FOLDER_LEFTHANDED           0x6220
  2102. #define IDMEN_FOLDER_HIDEPOINTER          0x6221
  2103. #define IDMEN_FOLDER_BLACKWHITE           0x6222
  2104. #define IDMEN_FOLDER_ANIMATE              0x6223
  2105.  
  2106. // --- res id for strings
  2107.  
  2108. #define IDSTR_VERSION                     0x6000
  2109. #define IDSTR_FILETYPE_DEFAULT            0x6001
  2110. #define IDSTR_FILETYPE_POINTER            0x6002
  2111. #define IDSTR_FILETYPE_POINTERSET         0x6003
  2112. #define IDSTR_FILETYPE_CURSOR             0x6004
  2113. #define IDSTR_FILETYPE_CURSORSET          0x6005
  2114. #define IDSTR_FILETYPE_ANIMOUSE           0x6006
  2115. #define IDSTR_FILETYPE_ANIMOUSESET        0x6007
  2116. #define IDSTR_FILETYPE_WINANIMATION       0x6008
  2117. #define IDSTR_FILETYPE_WINANIMATIONSET    0x6009
  2118. #define IDSTR_FILETYPE_ANIMATIONSETDIR    0x600A
  2119. #define IDSTR_FILETYPE_ALL                0x600B
  2120.  
  2121. #define IDSTR_POINTER_ARROW               0x6010
  2122. #define IDSTR_POINTER_TEXT                0x6011
  2123. #define IDSTR_POINTER_WAIT                0x6012
  2124. #define IDSTR_POINTER_SIZENWSE            0x6013
  2125. #define IDSTR_POINTER_SIZEWE              0x6014
  2126. #define IDSTR_POINTER_MOVE                0x6015
  2127. #define IDSTR_POINTER_SIZENESW            0x6016
  2128. #define IDSTR_POINTER_SIZENS              0x6017
  2129. #define IDSTR_POINTER_ILLEGAL             0x6018
  2130.  
  2131. #define IDSTR_TITLE_ICON                  0x6020
  2132. #define IDSTR_TITLE_NAME                  0x6021
  2133. #define IDSTR_TITLE_STATUS                0x6022
  2134. #define IDSTR_TITLE_ANIMATIONTYPE         0x6023
  2135. #define IDSTR_TITLE_POINTER               0x6024
  2136. #define IDSTR_TITLE_ANIMATIONNAME         0x6025
  2137. #define IDSTR_TITLE_FRAMERATE             0x6026
  2138. #define IDSTR_TITLE_INFONAME              0x6027
  2139. #define IDSTR_TITLE_INFOARTIST            0x6028
  2140. #define IDSTR_STATUS_ON                   0x6029
  2141. #define IDSTR_STATUS_OFF                  0x602A
  2142.  
  2143. #define IDSTR_TITLE_IMAGE                 0x6030
  2144. #define IDSTR_SELECTED_NONE               0x6031
  2145. #define IDSTR_SELECTED_FRAME              0x6032
  2146. #define IDSTR_SELECTED_FRAMES             0x6033
  2147. #define IDSTR_UNIT_MILLISECONDS           0x6034
  2148. #define IDSTR_UNIT_JIFFIES                0x6035
  2149.  
  2150.  
  2151. // --- res id for messages
  2152.  
  2153. #define IDMSG_TITLE_ERROR                 0x6F01
  2154. #define IDMSG_ANIMATIONPATH_NOT_FOUND     0x6F02
  2155. #define IDMSG_TITLENOTFOUND               0x6F03
  2156. #define IDMSG_MSGNOTFOUND                 0x6F04
  2157.  
  2158. // online Help Id for DisplayHelp
  2159. /* #define IDPNL_MAIN                     1
  2160. #define IDPNL_USAGE_NBPAGE             2
  2161. #define IDPNL_USAGE_NBPAGE_CNRSETTINGS 3
  2162. #define IDPNL_USAGE_NBPAGE_CNRLOADSET  4 */
  2163.  
  2164. // --- res ids for container item popup menu
  2165.  
  2166. // define submenu ids for submenu of every resource WPS class
  2167. #define IDMEN_CONVERT_MENU                0x7111
  2168.  
  2169. // define menuitem ids
  2170. #define IDMEN_CONVERT_POINTER             0x7120
  2171. #define IDMEN_CONVERT_CURSOR              0x7121
  2172. #define IDMEN_CONVERT_WINANIMATION        0x7122
  2173. #define IDMEN_CONVERT_ANIMOUSE            0x7123
  2174.  
  2175. #endif
  2176.  
  2177.  
  2178.