svrMain.dfm
上传用户:juxian
上传日期:2013-04-01
资源大小:38k
文件大小:3k
源码类别:

驱动编程

开发平台:

Delphi

  1. object Form1: TForm1
  2.   Left = 192
  3.   Top = 129
  4.   Width = 352
  5.   Height = 290
  6.   Caption = 'Screen Sender'
  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.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 8
  20.     Top = 48
  21.     Width = 122
  22.     Height = 13
  23.     Caption = 'Block Delay (milliseconds)'
  24.   end
  25.   object Label2: TLabel
  26.     Left = 8
  27.     Top = 96
  28.     Width = 102
  29.     Height = 13
  30.     Caption = 'MAX block size (byte)'
  31.   end
  32.   object Label3: TLabel
  33.     Left = 8
  34.     Top = 144
  35.     Width = 68
  36.     Height = 13
  37.     Caption = 'Thread Priority'
  38.   end
  39.   object Bevel1: TBevel
  40.     Left = 144
  41.     Top = 48
  42.     Width = 9
  43.     Height = 137
  44.     Shape = bsLeftLine
  45.   end
  46.   object Label6: TLabel
  47.     Left = 160
  48.     Top = 48
  49.     Width = 32
  50.     Height = 13
  51.     Caption = 'IFrame'
  52.   end
  53.   object Label9: TLabel
  54.     Left = 160
  55.     Top = 96
  56.     Width = 62
  57.     Height = 13
  58.     Caption = 'IFrame Delay'
  59.   end
  60.   object Button1: TButton
  61.     Left = 8
  62.     Top = 8
  63.     Width = 75
  64.     Height = 25
  65.     Caption = 'Active'
  66.     TabOrder = 0
  67.     OnClick = Button1Click
  68.   end
  69.   object Button2: TButton
  70.     Left = 88
  71.     Top = 8
  72.     Width = 75
  73.     Height = 25
  74.     Caption = 'Deactive'
  75.     Enabled = False
  76.     TabOrder = 1
  77.     OnClick = Button2Click
  78.   end
  79.   object SpinEdit1: TSpinEdit
  80.     Left = 8
  81.     Top = 64
  82.     Width = 57
  83.     Height = 22
  84.     MaxValue = 100
  85.     MinValue = 0
  86.     TabOrder = 2
  87.     Value = 10
  88.   end
  89.   object SpinEdit2: TSpinEdit
  90.     Left = 8
  91.     Top = 112
  92.     Width = 57
  93.     Height = 22
  94.     Increment = 1024
  95.     MaxValue = 60000
  96.     MinValue = 1024
  97.     TabOrder = 3
  98.     Value = 32768
  99.   end
  100.   object ComboBox1: TComboBox
  101.     Left = 8
  102.     Top = 160
  103.     Width = 97
  104.     Height = 21
  105.     Style = csDropDownList
  106.     ItemHeight = 13
  107.     TabOrder = 4
  108.     Items.Strings = (
  109.       'tpIdle'
  110.       'tpLowest'
  111.       'tpLower'
  112.       'tpNormal'
  113.       'tpHigher'
  114.       'tpHighest'
  115.       'tpTimeCritical')
  116.   end
  117.   object Panel1: TPanel
  118.     Left = 160
  119.     Top = 144
  120.     Width = 113
  121.     Height = 41
  122.     BevelOuter = bvNone
  123.     TabOrder = 5
  124.     object Label4: TLabel
  125.       Left = 0
  126.       Top = 0
  127.       Width = 62
  128.       Height = 13
  129.       Caption = 'Frame count:'
  130.     end
  131.     object Label5: TLabel
  132.       Left = 64
  133.       Top = 0
  134.       Width = 6
  135.       Height = 13
  136.       Caption = '0'
  137.     end
  138.     object Label7: TLabel
  139.       Left = 0
  140.       Top = 16
  141.       Width = 61
  142.       Height = 13
  143.       Caption = 'Empty frame:'
  144.     end
  145.     object Label8: TLabel
  146.       Left = 64
  147.       Top = 16
  148.       Width = 6
  149.       Height = 13
  150.       Caption = '0'
  151.     end
  152.   end
  153.   object SpinEdit3: TSpinEdit
  154.     Left = 160
  155.     Top = 64
  156.     Width = 57
  157.     Height = 22
  158.     Increment = 16
  159.     MaxValue = 1024
  160.     MinValue = 1
  161.     TabOrder = 6
  162.     Value = 64
  163.   end
  164.   object SpinEdit4: TSpinEdit
  165.     Left = 160
  166.     Top = 112
  167.     Width = 57
  168.     Height = 22
  169.     Increment = 50
  170.     MaxValue = 10000
  171.     MinValue = 0
  172.     TabOrder = 7
  173.     Value = 200
  174.   end
  175.   object ScreenEncoder1: TScreenEncoder
  176.     OnFrameEnd = ScreenEncoder1FrameEnd
  177.     BlockInterval = 1
  178.     IFrame = 30
  179.     ThreadPriority = tpNormal
  180.     MaxBlockSize = 30000
  181.     MaxFrameRate = 10
  182.     RemoteIP = '224.0.0.1'
  183.     RemotePort = 3514
  184.     Left = 168
  185.     Top = 8
  186.   end
  187. end