home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP12 / PROPERTY.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-01  |  2.5 KB  |  67 lines

  1. // Menu item identifiers
  2. #define IDM_OVERLAPPED    100
  3. #define IDM_POPUP         101
  4. #define IDM_CHILD         102
  5. #define IDM_WIZARD        200
  6. #define IDM_HASHELP       201
  7. #define IDM_MODELESS      202
  8. #define IDM_MULTILINETABS 203
  9. #define IDM_NOAPPLYNOW    204
  10. #define IDM_PROPTITLE     205
  11. #define IDM_RTLREADING    206
  12.  
  13. // Dialog template IDs
  14. #define IDD_STYLES                      101
  15. #define IDD_EXSTYLES                    102
  16.  
  17. // Icon IDs
  18. #define IDI_PAGE1                       103
  19. #define IDI_PAGE2                       104
  20.  
  21. // Dialog Control IDs
  22. #define IDC_BORDER                      1000
  23. #define IDC_CAPTION                     1001
  24. #define IDC_VISIBLE                     1005
  25. #define IDC_DISABLED                    1006
  26. #define IDC_DLGFRAME                    1007
  27. #define IDC_MINIMIZE                    1008
  28. #define IDC_MAXIMIZE                    1009
  29. #define IDC_HSCROLL                     1010
  30. #define IDC_MAXIMIZEBOX                 1011
  31. #define IDC_MINIMIZEBOX                 1012
  32. #define IDC_SYSMENU                     1013
  33. #define IDC_THICKFRAME                  1014
  34. #define IDC_VSCROLL                     1015
  35. #define IDC_CLIPCHILDREN                1016
  36. #define IDC_CLIPSIBLINGS                1017
  37. #define IDC_CLIENTEDGE                  1018
  38. #define IDC_CONTEXTHELP                 1019
  39. #define IDC_DLGMODALFRAME               1020
  40. #define IDC_EXOVERLAPPED                1021
  41. #define IDC_PALETTE                     1022
  42. #define IDC_STATICEDGE                  1023
  43. #define IDC_TOOLWINDOW                  1024
  44. #define IDC_WINDOWEDGE                  1025
  45. #define IDC_ACCEPTFILES                 1026
  46. #define IDC_APPWINDOW                   1027
  47. #define IDC_TOPMOST                     1028
  48. #define IDC_TRANSPARENT                 1029
  49. #define IDC_CONTROLPARENT               1030
  50. #define IDC_MDICHILD                    1031
  51. #define IDC_NOPARENTNOTIFY              1032
  52. #define IDM_WINDOW_PROPERTIES           40001
  53. #define IDC_STATIC                      -1
  54. #define IDI_APP                         1000
  55.  
  56. // Private message
  57. #define PM_CREATEWINDOW   WM_APP
  58.  
  59. // Property Sheet Functions (in SHEET.C)
  60. BOOL CreatePropertySheet (HWND hwndParent) ;
  61.  
  62. // Property Page Functions (in PAGE1.C and PAGE2.C)
  63. UINT CALLBACK StylePageProc (HWND, UINT, LPPROPSHEETPAGE) ;
  64. BOOL CALLBACK StyleDlgProc (HWND, UINT, WPARAM, LPARAM) ;
  65. UINT CALLBACK ExStylePageProc (HWND, UINT, LPPROPSHEETPAGE) ;
  66. BOOL CALLBACK ExStyleDlgProc (HWND, UINT, WPARAM, LPARAM) ;
  67.