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.

39 lines
1.6 KiB

  1. #define ID_SPEED 100
  2. #define ID_DENSITY 101
  3. #define ID_DENSITYARROW 102
  4. #define ID_SPEED_SLOW 104
  5. #define ID_SPEED_FAST 105
  6. #define ID_DENSITY_LABEL 106
  7. //
  8. // Help IDs
  9. //
  10. #define IDH_DISPLAY_SCREENSAVER_STARFIELD_WARP 4216
  11. #define IDH_DISPLAY_SCREENSAVER_STARFIELD_DENSITY 4217
  12. #ifdef RC_INVOKED
  13. /* This is the dialog box template and must be defined as DLG_SCRNSAVECONFIGURE
  14. Anything else in here is perfectly acceptable... */
  15. DLG_SCRNSAVECONFIGURE DIALOG 8,16,202,80
  16. FONT 8, "MS Shell Dlg"
  17. STYLE WS_POPUP | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU | DS_CONTEXTHELP
  18. CAPTION "Starfield Simulation Setup"
  19. BEGIN
  20. DEFPUSHBUTTON "OK", IDOK, 158,8,40,14,WS_TABSTOP
  21. PUSHBUTTON "Cancel", IDCANCEL, 158,26,40,14,WS_TABSTOP
  22. GROUPBOX "&Warp Speed" -1, 4,4,150,36
  23. LTEXT "Slow", ID_SPEED_SLOW, 8,16,32,14
  24. RTEXT "Fast", ID_SPEED_FAST, 114,16,32,14
  25. SCROLLBAR, ID_SPEED, 8,24,138,12, WS_GT
  26. GROUPBOX "Starfield &Density" -1, 4,43,150,30
  27. LTEXT "Number of stars (10-200)", ID_DENSITY_LABEL, 8,57,92,14
  28. EDITTEXT ID_DENSITY, 106,54,31,12,WS_TABSTOP
  29. CONTROL "",ID_DENSITYARROW,"msctls_updown32", WS_TABSTOP | UDS_WRAP | UDS_SETBUDDYINT |
  30. UDS_ALIGNRIGHT | UDS_ARROWKEYS, 129, 54, 8, 12
  31. END
  32. #endif