Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
2.9 KiB

  1. #include "windows.h"
  2. #include "general.h"
  3. #include "clientr.h"
  4. // /////////////////////////////////////////////////////////////////////////
  5. IDD_GENERAL DIALOG DISCARDABLE 10, 10, 265, 217
  6. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU //| DS_3DLOOK
  7. CAPTION "General"
  8. FONT 8, "MS Shell Dlg"
  9. BEGIN
  10. // CONTROL "",
  11. // IDCK_DL_LAUNCHTAPITNA,"Button",BS_AUTOCHECKBOX |
  12. // WS_TABSTOP,12,10,10,10
  13. // LTEXT "Launch the Telephony Location Selection thingy\r\n when a Telephony app runs",
  14. // IDC_STATIC, 25,10,200,25
  15. CONTROL "",
  16. IDCK_DL_UPDATEONSTARTUP,
  17. "Button",BS_AUTOCHECKBOX |
  18. WS_TABSTOP,25,20,10,10
  19. LTEXT "Update Telephony Location upon startup and power-resume"
  20. IDC_STATIC, 38, 20, 200, 25
  21. LTEXT "Take one or more of the following actions when I dock or undock:"
  22. IDC_STATIC, 25,38,220,30
  23. CONTROL "",
  24. IDCK_DL_AUTOLOCATIONID,
  25. "Button",BS_AUTOCHECKBOX |
  26. WS_TABSTOP,42,55,10,10
  27. LTEXT "Automatically change telephony location when I dock or undock"
  28. IDC_STATIC, 55,55,200,30
  29. CONTROL "",
  30. IDCK_DL_ANNOUNCEAUTOLOCATIONID,
  31. "Button",BS_AUTOCHECKBOX |
  32. WS_TABSTOP,42,75,10,10
  33. LTEXT "Inform me that the telephony location has automatically changed as a result of docking or undocking.",
  34. IDCS_DL_ANNOUNCEAUTOLOCATIONID,
  35. 55,75,200,30
  36. // CONTROL "",
  37. // IDCK_DL_PROMPTAUTOLOCATIONID,
  38. // "Button",BS_AUTOCHECKBOX |
  39. // WS_TABSTOP,42,95,10,10
  40. // LTEXT "Prompt me to change telephony locations when I dock or undock."
  41. // IDCS_DL_PROMPTAUTOLOCATIONID,
  42. // 55,95,200,30
  43. LTEXT "Set to this location when I change hardware configuration:",
  44. IDCS_DL_PROFILETEXT, 55, 100, 200, 30
  45. LTEXT "", IDCS_DL_PROFILE1, 1, 116, 135, 20, SS_RIGHT | WS_GROUP
  46. LTEXT "", IDCS_DL_PROFILE2, 1, 131, 135, 20, SS_RIGHT | WS_GROUP
  47. LTEXT "", IDCS_DL_PROFILE3, 1, 146, 135, 20, SS_RIGHT | WS_GROUP
  48. LTEXT "", IDCS_DL_PROFILE4, 1, 161, 135, 20, SS_RIGHT | WS_GROUP
  49. COMBOBOX IDCB_DL_PROFILE1, 150, 115, 100, 80, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
  50. COMBOBOX IDCB_DL_PROFILE2, 150, 130, 100, 80, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
  51. COMBOBOX IDCB_DL_PROFILE3, 150, 145, 100, 80, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
  52. COMBOBOX IDCB_DL_PROFILE4, 150, 160, 100, 80, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
  53. END