MediaTypeEditor.dfm 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. object FormMediaType: TFormMediaType
  2. Left = 211
  3. Top = 142
  4. BorderStyle = bsToolWindow
  5. Caption = ' MediaType Editor'
  6. ClientHeight = 239
  7. ClientWidth = 311
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. Position = poDesktopCenter
  16. OnShow = FormShow
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object Label1: TLabel
  20. Left = 8
  21. Top = 8
  22. Width = 53
  23. Height = 13
  24. Caption = 'Major Type'
  25. end
  26. object Label2: TLabel
  27. Left = 160
  28. Top = 8
  29. Width = 46
  30. Height = 13
  31. Caption = 'Sub Type'
  32. end
  33. object Label3: TLabel
  34. Left = 160
  35. Top = 48
  36. Width = 58
  37. Height = 13
  38. Caption = 'Sample Size'
  39. end
  40. object Label4: TLabel
  41. Left = 160
  42. Top = 96
  43. Width = 59
  44. Height = 13
  45. Caption = 'Format Type'
  46. end
  47. object lblFormatSize: TLabel
  48. Left = 8
  49. Top = 96
  50. Width = 55
  51. Height = 13
  52. Caption = 'Format Size'
  53. end
  54. object btOK: TButton
  55. Left = 8
  56. Top = 208
  57. Width = 75
  58. Height = 25
  59. Caption = '&OK'
  60. TabOrder = 0
  61. OnClick = btOKClick
  62. end
  63. object btCancel: TButton
  64. Left = 232
  65. Top = 208
  66. Width = 75
  67. Height = 25
  68. Caption = '&Cancel'
  69. ModalResult = 2
  70. TabOrder = 1
  71. end
  72. object cbMajorTypes: TComboBox
  73. Left = 8
  74. Top = 24
  75. Width = 145
  76. Height = 21
  77. Style = csDropDownList
  78. ItemHeight = 13
  79. TabOrder = 2
  80. OnChange = cbMajorTypesChange
  81. end
  82. object cbSubTypes: TComboBox
  83. Left = 160
  84. Top = 24
  85. Width = 145
  86. Height = 21
  87. Style = csDropDownList
  88. ItemHeight = 13
  89. TabOrder = 3
  90. OnChange = cbSubTypesChange
  91. end
  92. object chkFixedSize: TCheckBox
  93. Left = 8
  94. Top = 56
  95. Width = 145
  96. Height = 17
  97. Caption = 'Fixed Size Samples'
  98. Ctl3D = True
  99. ParentCtl3D = False
  100. TabOrder = 4
  101. OnClick = chkFixedSizeClick
  102. end
  103. object chkTempCompress: TCheckBox
  104. Left = 8
  105. Top = 72
  106. Width = 145
  107. Height = 17
  108. Caption = 'Temporal Compression'
  109. TabOrder = 5
  110. OnClick = chkTempCompressClick
  111. end
  112. object edSampleSize: TEdit
  113. Left = 160
  114. Top = 64
  115. Width = 145
  116. Height = 21
  117. TabOrder = 6
  118. Text = '0'
  119. OnChange = edSampleSizeChange
  120. end
  121. object cbFormatType: TComboBox
  122. Left = 160
  123. Top = 112
  124. Width = 145
  125. Height = 21
  126. Style = csDropDownList
  127. ItemHeight = 13
  128. TabOrder = 7
  129. OnChange = cbFormatTypeChange
  130. end
  131. object Memo1: TMemo
  132. Left = 8
  133. Top = 144
  134. Width = 297
  135. Height = 59
  136. ReadOnly = True
  137. TabOrder = 8
  138. end
  139. object edFormatSize: TEdit
  140. Left = 8
  141. Top = 112
  142. Width = 145
  143. Height = 21
  144. Enabled = False
  145. TabOrder = 9
  146. Text = '0'
  147. end
  148. end