main.dfm
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:3k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. object MainForm: TMainForm
  2.   Left = 192
  3.   Top = 114
  4.   Width = 704
  5.   Height = 530
  6.   Caption = 'Video Cap'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object OutPutFileName: TLabel
  19.     Left = 88
  20.     Top = 296
  21.     Width = 67
  22.     Height = 13
  23.     Caption = 'c:capture.avi'
  24.   end
  25.   object Label1: TLabel
  26.     Left = 8
  27.     Top = 8
  28.     Width = 27
  29.     Height = 13
  30.     Caption = 'Video'
  31.   end
  32.   object Label2: TLabel
  33.     Left = 8
  34.     Top = 128
  35.     Width = 27
  36.     Height = 13
  37.     Caption = 'Audio'
  38.   end
  39.   object Label3: TLabel
  40.     Left = 168
  41.     Top = 8
  42.     Width = 70
  43.     Height = 13
  44.     Caption = 'Select Formats'
  45.   end
  46.   object Label4: TLabel
  47.     Left = 168
  48.     Top = 128
  49.     Width = 70
  50.     Height = 13
  51.     Caption = 'Select Formats'
  52.   end
  53.   object VideoWindow: TVideoWindow
  54.     Left = 224
  55.     Top = 248
  56.     Width = 273
  57.     Height = 217
  58.     FilterGraph = CaptureGraph
  59.     VMROptions.Mode = vmrWindowed
  60.     VMROptions.Streams = 1
  61.     VMROptions.Preferences = []
  62.     Color = clBlack
  63.   end
  64.   object VideoCapFilters: TListBox
  65.     Left = 8
  66.     Top = 24
  67.     Width = 153
  68.     Height = 97
  69.     ItemHeight = 13
  70.     TabOrder = 1
  71.     OnClick = VideoCapFiltersClick
  72.   end
  73.   object StartButton: TButton
  74.     Left = 8
  75.     Top = 328
  76.     Width = 75
  77.     Height = 25
  78.     Caption = 'Start'
  79.     Enabled = False
  80.     TabOrder = 2
  81.     OnClick = StartButtonClick
  82.   end
  83.   object CapFileButton: TButton
  84.     Left = 8
  85.     Top = 296
  86.     Width = 75
  87.     Height = 25
  88.     Caption = 'Capture file'
  89.     TabOrder = 3
  90.     OnClick = CapFileButtonClick
  91.   end
  92.   object StatusBar: TStatusBar
  93.     Left = 0
  94.     Top = 484
  95.     Width = 696
  96.     Height = 19
  97.     Panels = <>
  98.     SimplePanel = True
  99.   end
  100.   object StopButton: TButton
  101.     Left = 8
  102.     Top = 360
  103.     Width = 75
  104.     Height = 25
  105.     Caption = 'Stop'
  106.     Enabled = False
  107.     TabOrder = 5
  108.     OnClick = StopButtonClick
  109.   end
  110.   object AudioCapFilters: TListBox
  111.     Left = 8
  112.     Top = 144
  113.     Width = 153
  114.     Height = 97
  115.     ItemHeight = 13
  116.     TabOrder = 6
  117.     OnClick = AudioCapFiltersClick
  118.   end
  119.   object VideoFormats: TListBox
  120.     Left = 168
  121.     Top = 24
  122.     Width = 521
  123.     Height = 97
  124.     ItemHeight = 13
  125.     TabOrder = 7
  126.   end
  127.   object AudioFormats: TListBox
  128.     Left = 168
  129.     Top = 144
  130.     Width = 521
  131.     Height = 97
  132.     ItemHeight = 13
  133.     TabOrder = 8
  134.   end
  135.   object InputLines: TComboBox
  136.     Left = 8
  137.     Top = 248
  138.     Width = 153
  139.     Height = 21
  140.     Style = csDropDownList
  141.     ItemHeight = 13
  142.     TabOrder = 9
  143.   end
  144.   object CaptureGraph: TFilterGraph
  145.     Mode = gmCapture
  146.     GraphEdit = True
  147.     Left = 232
  148.     Top = 256
  149.   end
  150.   object VideoSourceFilter: TFilter
  151.     BaseFilter.data = {00000000}
  152.     Left = 16
  153.     Top = 32
  154.   end
  155.   object SaveDialog: TSaveDialog
  156.     Left = 168
  157.     Top = 296
  158.   end
  159.   object Timer: TTimer
  160.     Enabled = False
  161.     Interval = 1
  162.     OnTimer = TimerTimer
  163.     Left = 264
  164.     Top = 256
  165.   end
  166.   object AudioSourceFilter: TFilter
  167.     BaseFilter.data = {00000000}
  168.     Left = 16
  169.     Top = 152
  170.   end
  171. end