home *** CD-ROM | disk | FTP | other *** search
- #ifndef __INTLDEMO_H
- #define __INTLDEMO_H
-
- //Menu IDs
- #define CM_FILELIST 300
-
- #define CM_LOCALEC 310
- #define CM_LOCALEUS 311
- #define CM_LOCALEUK 312
- #define CM_LOCALEFRENCH 313
- #define CM_LOCALEGERMAN 314
-
- #define CM_LANGUAGEENGLISH 320
- #define CM_LANGUAGEFRENCH 321
- #define CM_LANGUAGEGERMAN 322
-
- #define CM_ISALNUM 400
- #define CM_ISALPHA 401
- #define CM_ISASCII 402
- #define CM_ISCNTRL 403
- #define CM_ISDIGIT 404
- #define CM_ISGRAPH 405
- #define CM_ISLOWER 406
- #define CM_ISPRINT 407
- #define CM_ISPUNCT 408
- #define CM_ISSPACE 409
- #define CM_ISUPPER 410
- #define CM_ISXDIGIT 411
-
- #define CM_SHOWVALUES 500
-
-
- //Dialog and control IDs
-
- #define LISTDIALOG 100
-
- #define ID_FILELISTBOX 100
- #define ID_VIEWBUTTON 104
- #define ID_TOLOWERBUT 103
- #define ID_SORTBUT 102
-
- #define ID_FILEVIEWER 200
-
- // bitmap button IDs
- #define IDB_VIEW ID_VIEWBUTTON + 1000
- #define IDB_LVIEW IDB_VIEW + 1000
- #define IDB_VIEWD IDB_LVIEW + 1000
- #define IDB_LVIEWD IDB_VIEWD + 1000
- #define IDB_VIEWF IDB_LVIEWD + 1000
- #define IDB_LVIEWF IDB_VIEWF + 1000
-
- #define IDB_TOLOWER ID_TOLOWERBUT + 1000
- #define IDB_LTOLOWER IDB_TOLOWER + 1000
- #define IDB_TOLOWERD IDB_LTOLOWER + 1000
- #define IDB_LTOLOWERD IDB_TOLOWERD + 1000
- #define IDB_TOLOWERF IDB_LTOLOWERD + 1000
- #define IDB_LTOLOWERF IDB_TOLOWERF + 1000
-
- #define IDB_SORT ID_SORTBUT + 1000
- #define IDB_LSORT IDB_SORT + 1000
- #define IDB_SORTD IDB_LSORT + 1000
- #define IDB_LSORTD IDB_SORTD + 1000
- #define IDB_SORTF IDB_LSORTD + 1000
- #define IDB_LSORTF IDB_SORTF + 1000
-
-
-
- //String IDS
- #define STR_APPNAME 1
- #define STR_LOCALETITLE 16
- #define STR_DECIMALPOINT 17
- #define STR_THOUSANDSSEP 18
- #define STR_GROUPING 19
- #define STR_INTCURRSYMBOL 20
- #define STR_CURRENCYSYMBOL 21
- #define STR_MONDECIMALPOINT 22
- #define STR_MONTHOUSANDSSEP 23
- #define STR_MONGROUPING 24
- #define STR_POSITIVESIGN 25
- #define STR_NEGATIVESIGN 26
- #define STR_INTFRACDIGITS 27
- #define STR_FRACDIGITS 28
- #define STR_PCSPRECEDES 29
- #define STR_PSEPBYSPACE 30
- #define STR_NCSPRECEDES 31
- #define STR_NSEPBYSPACE 32
- #define STR_PSIGNPOSN 33
- #define STR_N_SIGN_POSN 34
- #define STR_YES 35
- #define STR_NO 36
-
- #define STR_CHARACTER 48
-
- //Message IDs
- #define WM_VALWNDCLOSE WM_USER + 1
-
- #endif //__INTLDEMO_H
-