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

Delphi控件源码

开发平台:

Delphi

  1. object Form1: TForm1
  2.   Left = 219
  3.   Top = 157
  4.   Width = 534
  5.   Height = 538
  6.   Caption = 'Simple recompressor'
  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.   OnCloseQuery = FormCloseQuery
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 106
  20.     Top = 40
  21.     Width = 3
  22.     Height = 13
  23.   end
  24.   object Label2: TLabel
  25.     Left = 107
  26.     Top = 96
  27.     Width = 3
  28.     Height = 13
  29.   end
  30.   object Label3: TLabel
  31.     Left = 8
  32.     Top = 8
  33.     Width = 114
  34.     Height = 13
  35.     Caption = '1 - Select the source file'
  36.   end
  37.   object Label4: TLabel
  38.     Left = 8
  39.     Top = 64
  40.     Width = 133
  41.     Height = 13
  42.     Caption = '2 - Select the destination file'
  43.   end
  44.   object Label5: TLabel
  45.     Left = 8
  46.     Top = 120
  47.     Width = 119
  48.     Height = 13
  49.     Caption = '3 - Add Compressor filters'
  50.   end
  51.   object Label6: TLabel
  52.     Left = 24
  53.     Top = 144
  54.     Width = 27
  55.     Height = 13
  56.     Caption = 'Video'
  57.   end
  58.   object Label7: TLabel
  59.     Left = 24
  60.     Top = 224
  61.     Width = 27
  62.     Height = 13
  63.     Caption = 'Audio'
  64.   end
  65.   object Label8: TLabel
  66.     Left = 8
  67.     Top = 304
  68.     Width = 85
  69.     Height = 13
  70.     Caption = '4 - Connect Filters'
  71.   end
  72.   object Label9: TLabel
  73.     Left = 8
  74.     Top = 360
  75.     Width = 80
  76.     Height = 13
  77.     Caption = '5- Run the graph'
  78.   end
  79.   object Button1: TButton
  80.     Left = 24
  81.     Top = 32
  82.     Width = 75
  83.     Height = 25
  84.     Caption = 'Source File'
  85.     TabOrder = 0
  86.     OnClick = Button1Click
  87.   end
  88.   object debug: TMemo
  89.     Left = 0
  90.     Top = 416
  91.     Width = 526
  92.     Height = 95
  93.     Align = alBottom
  94.     ScrollBars = ssHorizontal
  95.     TabOrder = 1
  96.   end
  97.   object ListBox1: TListBox
  98.     Left = 56
  99.     Top = 144
  100.     Width = 201
  101.     Height = 73
  102.     ItemHeight = 13
  103.     TabOrder = 2
  104.   end
  105.   object ListBox2: TListBox
  106.     Left = 320
  107.     Top = 144
  108.     Width = 201
  109.     Height = 153
  110.     ItemHeight = 13
  111.     TabOrder = 3
  112.   end
  113.   object Button2: TButton
  114.     Left = 24
  115.     Top = 88
  116.     Width = 75
  117.     Height = 25
  118.     Caption = 'Dest. File'
  119.     TabOrder = 4
  120.     OnClick = Button2Click
  121.   end
  122.   object Button3: TButton
  123.     Left = 264
  124.     Top = 152
  125.     Width = 49
  126.     Height = 25
  127.     Caption = '>>'
  128.     TabOrder = 5
  129.     OnClick = Button3Click
  130.   end
  131.   object Button4: TButton
  132.     Left = 264
  133.     Top = 184
  134.     Width = 49
  135.     Height = 25
  136.     Caption = '<<'
  137.     TabOrder = 6
  138.     OnClick = Button4Click
  139.   end
  140.   object Button5: TButton
  141.     Left = 24
  142.     Top = 328
  143.     Width = 89
  144.     Height = 25
  145.     Caption = 'Connect Filters'
  146.     TabOrder = 7
  147.     OnClick = Button5Click
  148.   end
  149.   object ListBox3: TListBox
  150.     Left = 56
  151.     Top = 224
  152.     Width = 201
  153.     Height = 73
  154.     ItemHeight = 13
  155.     TabOrder = 8
  156.   end
  157.   object Button6: TButton
  158.     Left = 264
  159.     Top = 232
  160.     Width = 49
  161.     Height = 25
  162.     Caption = '>>'
  163.     TabOrder = 9
  164.     OnClick = Button6Click
  165.   end
  166.   object Button7: TButton
  167.     Left = 264
  168.     Top = 264
  169.     Width = 49
  170.     Height = 25
  171.     Caption = '<<'
  172.     TabOrder = 10
  173.     OnClick = Button4Click
  174.   end
  175.   object Button8: TButton
  176.     Left = 24
  177.     Top = 384
  178.     Width = 89
  179.     Height = 25
  180.     Caption = 'GO'
  181.     TabOrder = 11
  182.     OnClick = Button8Click
  183.   end
  184.   object CaptureGraph: TFilterGraph
  185.     AutoCreate = True
  186.     Mode = gmCapture
  187.     GraphEdit = True
  188.     OnDSEvent = CaptureGraphDSEvent
  189.     Left = 424
  190.     Top = 8
  191.   end
  192.   object OpenDialog: TOpenDialog
  193.     Left = 456
  194.     Top = 8
  195.   end
  196.   object SaveDialog: TSaveDialog
  197.     Left = 488
  198.     Top = 8
  199.   end
  200. end