Leaked source code of windows server 2003
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.

107 lines
4.6 KiB

  1. /******************************************************************************
  2. Copyright (C) Microsoft Corporation 1992-1995. All rights reserved.
  3. Title: cnfgdlg.h - Multimedia Systems Media Control Interface
  4. driver for AVI - configuration dialog.
  5. *****************************************************************************/
  6. #ifdef WIN32
  7. ID_ICON ICON "VFW.ICO"
  8. #endif
  9. IDA_CONFIG DIALOG 9, 22, 161, 136
  10. STYLE DS_MODALFRAME | DS_NOIDLEMSG | WS_POPUP | WS_VISIBLE | WS_CAPTION |
  11. WS_SYSMENU
  12. CAPTION "Video Playback Options"
  13. //FONT 8, "MS Sans Serif"
  14. FONT 8, "MS Shell Dlg"
  15. BEGIN
  16. DEFPUSHBUTTON "OK", IDOK, 113, 5, 45, 14
  17. PUSHBUTTON "Cancel", IDCANCEL, 113, 20, 45, 14
  18. PUSHBUTTON "Se&t Default", ID_DEFAULT, 113, 35, 45, 14
  19. #ifndef DEBUG
  20. #ifdef WIN32
  21. PUSHBUTTON "&Advanced...", ID_REJECT, 113, 50, 45, 14
  22. #endif
  23. #endif
  24. #ifndef WIN32
  25. GROUPBOX "Video Mode", -1, 5, 5, 64, 38
  26. CONTROL "&Window", ID_WINDOW, "Button", BS_AUTORADIOBUTTON |
  27. WS_GROUP, 10, 16, 39, 10
  28. CONTROL "&Full Screen", ID_VGA240, "Button", BS_AUTORADIOBUTTON,
  29. 10, 29, 55, 10
  30. #else
  31. CONTROL ID_ICON, -1, "static", SS_ICON, 16, 10, 0, 0
  32. #endif
  33. CONTROL "&Zoom by 2", ID_ZOOM2, "Button", BS_AUTOCHECKBOX |
  34. WS_GROUP | WS_TABSTOP, 5, 38, 49, 10
  35. CONTROL "&Skip video frames if behind", ID_SKIPFRAMES, "Button",
  36. BS_AUTOCHECKBOX | WS_TABSTOP, 5, 50, 107, 10
  37. CONTROL "Enable &DCI for playback", ID_USEDCI, "Button",
  38. BS_AUTOCHECKBOX | WS_TABSTOP, 5, 62, 107, 10
  39. GROUPBOX "&Information", ID_SIZE, 3, 76, 155, 56
  40. EDITTEXT ID_INFO, 7, 86, 149, 45, ES_MULTILINE | ES_AUTOVSCROLL |
  41. ES_READONLY | NOT WS_BORDER | WS_VSCROLL | WS_TABSTOP
  42. #ifdef DEBUG
  43. PUSHBUTTON "De&bug...", ID_DEBUG, 113, 51, 45, 14
  44. #else
  45. #endif
  46. END
  47. #ifdef DEBUG
  48. IDA_DEBUG DIALOG 9, 20, 160, 145
  49. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  50. CAPTION "Debug"
  51. FONT 8, "MS Shell Dlg"
  52. //FONT 8, "MS Sans Serif"
  53. BEGIN
  54. CONTROL "Decompress To S&creen", ID_SCREEN, "Button",
  55. BS_AUTO3STATE | WS_TABSTOP, 4, 45, 147, 10
  56. CONTROL "Decompress To &Bitmap", ID_BITMAP, "Button",
  57. BS_AUTO3STATE | WS_TABSTOP, 4, 56, 96, 10
  58. CONTROL "D&raw with bitmaps", ID_SUCKS, "Button", BS_AUTO3STATE |
  59. WS_TABSTOP, 4, 67, 93, 10
  60. LTEXT "R&ate:", -1, 1, 121, 24, 8
  61. SCROLLBAR ID_RATE, 22, 122, 69, 10, WS_TABSTOP
  62. LTEXT " ", ID_RATE_LABEL, 95, 122, 63, 8
  63. LTEXT "&Level", -1, 3, 25, 24, 8
  64. COMBOBOX ID_LEVEL, 29, 23, 69, 51, CBS_DROPDOWNLIST | WS_VSCROLL |
  65. WS_TABSTOP
  66. PUSHBUTTON "OK", IDOK, 116, 3, 40, 14
  67. LTEXT "MCIAVI Build 1.X.X", ID_BUILD, 5, 4, 104, 8
  68. CONTROL "Use AVI&File for playback.", ID_USE_AVIFILE, "Button",
  69. BS_AUTOCHECKBOX | WS_TABSTOP, 4, 80, 150, 10
  70. CONTROL "Play &Silently", ID_NO_SOUND, "Button",
  71. BS_AUTOCHECKBOX | WS_TABSTOP, 4, 91, 100, 10
  72. // The control below forces OPEN calls from 16 bit to 32 bit MCIAVI32
  73. // to be rejected by the 32 bit side. This has the effect of forcing
  74. // the open to be done on the 16 bit side. Might be slower... but you
  75. // get DrawProc compatibility.
  76. CONTROL "&Maximum 16-bit compatibility", ID_REJECT, "Button", BS_AUTOCHECKBOX |
  77. WS_GROUP | WS_TABSTOP, 4, 102, 100, 10
  78. END
  79. #endif
  80. #ifndef DEBUG
  81. #ifdef WIN32
  82. IDA_REJECT DIALOG 6, 18, 160, 100
  83. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  84. CAPTION "Advanced Video options"
  85. FONT 8, "MS Shell Dlg"
  86. //FONT 8, "MS Sans Serif"
  87. BEGIN
  88. // The control below forces OPEN calls from 16 bit to 32 bit MCIAVI32
  89. // to be rejected by the 32 bit side. This has the effect of forcing
  90. // the open to be done on the 16 bit side. Might be slower... but you
  91. // get DrawProc compatibility.
  92. AUTOCHECKBOX "&Maximum 16-bit compatibility", ID_REJECT, 8, 8, 106, 10
  93. PUSHBUTTON "OK", IDOK, 32, 80, 40, 14
  94. DEFPUSHBUTTON "Cancel", IDCANCEL, 88, 80, 40, 14
  95. LTEXT "Check the button to use 16 bit MCIAVI code in preference to 32 bit code. This provides the highest level of compatibility, but might impact performance. You must have 16 bit VFW runtimes installed for this to work."
  96. ,104, 7, 24, 144, 50
  97. END
  98. #endif
  99. #endif