home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / komunikace / qip / qip8020.exe / qip.exe / 0 / RCDATA / TFILEFORM / TFILEFORM.txt
Text File  |  2007-04-21  |  6KB  |  286 lines

  1. object FileForm: TFileForm
  2.   Left = 509
  3.   Top = 365
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'File Transfer'
  7.   ClientHeight = 273
  8.   ClientWidth = 361
  9.   Color = clBtnFace
  10.   DefaultMonitor = dmMainForm
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   OldCreateOrder = False
  17.   Position = poScreenCenter
  18.   OnClose = FormClose
  19.   OnCreate = FormCreate
  20.   OnDestroy = FormDestroy
  21.   OnShow = FormShow
  22.   PixelsPerInch = 96
  23.   TextHeight = 13
  24.   object Panel1: TPanel
  25.     Left = 8
  26.     Top = 8
  27.     Width = 345
  28.     Height = 257
  29.     BevelInner = bvSpace
  30.     BevelOuter = bvLowered
  31.     TabOrder = 0
  32.     object LabelFilename: TLabel
  33.       Left = 12
  34.       Top = 9
  35.       Width = 56
  36.       Height = 13
  37.       Caption = 'Current File:'
  38.     end
  39.     object LabelFiles: TLabel
  40.       Left = 216
  41.       Top = 51
  42.       Width = 24
  43.       Height = 13
  44.       Caption = 'Files:'
  45.     end
  46.     object LabelFileSize: TLabel
  47.       Left = 12
  48.       Top = 51
  49.       Width = 79
  50.       Height = 13
  51.       Caption = 'Done / File Size:'
  52.     end
  53.     object LabelProgress: TLabel
  54.       Left = 12
  55.       Top = 93
  56.       Width = 44
  57.       Height = 13
  58.       Caption = 'Progress:'
  59.     end
  60.     object LabelStatus: TLabel
  61.       Left = 12
  62.       Top = 131
  63.       Width = 33
  64.       Height = 13
  65.       Caption = 'Status:'
  66.     end
  67.     object Bevel1: TBevel
  68.       Left = 12
  69.       Top = 176
  70.       Width = 321
  71.       Height = 4
  72.       Shape = bsTopLine
  73.     end
  74.     object PanelCount: TPanel
  75.       Left = 216
  76.       Top = 67
  77.       Width = 117
  78.       Height = 19
  79.       BevelOuter = bvLowered
  80.       Caption = '0 / 0 '
  81.       TabOrder = 0
  82.     end
  83.     object ButtonSkip: TButton
  84.       Left = 12
  85.       Top = 188
  86.       Width = 157
  87.       Height = 25
  88.       Caption = 'Skip File'
  89.       TabOrder = 6
  90.       OnClick = ButtonSkipClick
  91.     end
  92.     object PB1: TProgressBar
  93.       Left = 12
  94.       Top = 109
  95.       Width = 321
  96.       Height = 17
  97.       Smooth = True
  98.       TabOrder = 1
  99.     end
  100.     object PanelCur: TPanel
  101.       Left = 12
  102.       Top = 67
  103.       Width = 197
  104.       Height = 19
  105.       BevelOuter = bvLowered
  106.       Caption = '0 b / 0 b'
  107.       TabOrder = 2
  108.     end
  109.     object ButtonAbort: TButton
  110.       Left = 176
  111.       Top = 188
  112.       Width = 157
  113.       Height = 25
  114.       Caption = 'Cancel'
  115.       TabOrder = 5
  116.       OnClick = ButtonAbortClick
  117.     end
  118.     object PanelFile: TPanel
  119.       Left = 12
  120.       Top = 25
  121.       Width = 321
  122.       Height = 19
  123.       Alignment = taLeftJustify
  124.       BevelOuter = bvLowered
  125.       TabOrder = 3
  126.     end
  127.     object PanelStatus: TPanel
  128.       Left = 12
  129.       Top = 147
  130.       Width = 321
  131.       Height = 19
  132.       BevelOuter = bvLowered
  133.       TabOrder = 4
  134.     end
  135.     object ButtonOpenfolder: TButton
  136.       Left = 12
  137.       Top = 221
  138.       Width = 321
  139.       Height = 25
  140.       Caption = 'Open Received Files Folder'
  141.       TabOrder = 7
  142.       OnClick = ButtonOpenfolderClick
  143.     end
  144.   end
  145.   object SrvSocket: TWSocket
  146.     LineMode = False
  147.     LineLimit = 65536
  148.     LineEnd = #13#10
  149.     LineEcho = False
  150.     LineEdit = False
  151.     Proto = 'tcp'
  152.     LocalAddr = '0.0.0.0'
  153.     LocalPort = '0'
  154.     LastError = 0
  155.     MultiThreaded = False
  156.     MultiCast = False
  157.     MultiCastIpTTL = 1
  158.     ReuseAddr = False
  159.     ComponentOptions = []
  160.     ListenBacklog = 5
  161.     ReqVerLow = 1
  162.     ReqVerHigh = 1
  163.     OnSessionAvailable = SrvSocketSessionAvailable
  164.     FlushTimeout = 60
  165.     SendFlags = wsSendNormal
  166.     LingerOnOff = wsLingerOn
  167.     LingerTimeout = 0
  168.     KeepAliveOnOff = wsKeepAliveOnSystem
  169.     KeepAliveTime = 30000
  170.     KeepAliveInterval = 1000
  171.     SocksLevel = '5'
  172.     SocksAuthentication = socksNoAuthentication
  173.     Left = 248
  174.     Top = 136
  175.   end
  176.   object CliSocket: TWSocket
  177.     LineMode = False
  178.     LineLimit = 65536
  179.     LineEnd = #13#10
  180.     LineEcho = False
  181.     LineEdit = False
  182.     Proto = 'tcp'
  183.     LocalAddr = '0.0.0.0'
  184.     LocalPort = '0'
  185.     LastError = 0
  186.     MultiThreaded = False
  187.     MultiCast = False
  188.     MultiCastIpTTL = 1
  189.     ReuseAddr = False
  190.     ComponentOptions = []
  191.     ListenBacklog = 5
  192.     ReqVerLow = 1
  193.     ReqVerHigh = 1
  194.     OnDataAvailable = CliSocketDataAvailable
  195.     OnDataSent = CliSocketDataSent
  196.     OnSessionClosed = CliSocketSessionClosed
  197.     OnSessionConnected = CliSocketSessionConnected
  198.     FlushTimeout = 60
  199.     SendFlags = wsSendNormal
  200.     LingerOnOff = wsLingerOn
  201.     LingerTimeout = 0
  202.     KeepAliveOnOff = wsKeepAliveOnSystem
  203.     KeepAliveTime = 30000
  204.     KeepAliveInterval = 1000
  205.     SocksLevel = '5'
  206.     SocksAuthentication = socksNoAuthentication
  207.     Left = 184
  208.     Top = 136
  209.   end
  210.   object RcvSocket: TWSocket
  211.     LineMode = False
  212.     LineLimit = 65536
  213.     LineEnd = #13#10
  214.     LineEcho = False
  215.     LineEdit = False
  216.     Proto = 'tcp'
  217.     LocalAddr = '0.0.0.0'
  218.     LocalPort = '0'
  219.     LastError = 0
  220.     MultiThreaded = False
  221.     MultiCast = False
  222.     MultiCastIpTTL = 1
  223.     ReuseAddr = False
  224.     ComponentOptions = []
  225.     ListenBacklog = 5
  226.     ReqVerLow = 1
  227.     ReqVerHigh = 1
  228.     OnDataAvailable = RcvSocketDataAvailable
  229.     OnSessionClosed = RcvSocketSessionClosed
  230.     FlushTimeout = 60
  231.     SendFlags = wsSendNormal
  232.     LingerOnOff = wsLingerOn
  233.     LingerTimeout = 0
  234.     KeepAliveOnOff = wsKeepAliveOnSystem
  235.     KeepAliveTime = 30000
  236.     KeepAliveInterval = 1000
  237.     SocksLevel = '5'
  238.     SocksAuthentication = socksNoAuthentication
  239.     Left = 216
  240.     Top = 136
  241.   end
  242.   object TranSocket: TWSocket
  243.     LineMode = False
  244.     LineLimit = 65536
  245.     LineEnd = #13#10
  246.     LineEcho = False
  247.     LineEdit = False
  248.     Proto = 'tcp'
  249.     LocalAddr = '0.0.0.0'
  250.     LocalPort = '0'
  251.     LastError = 0
  252.     MultiThreaded = False
  253.     MultiCast = False
  254.     MultiCastIpTTL = 1
  255.     ReuseAddr = False
  256.     ComponentOptions = []
  257.     ListenBacklog = 5
  258.     ReqVerLow = 1
  259.     ReqVerHigh = 1
  260.     FlushTimeout = 60
  261.     SendFlags = wsSendNormal
  262.     LingerOnOff = wsLingerOn
  263.     LingerTimeout = 0
  264.     KeepAliveOnOff = wsKeepAliveOnSystem
  265.     KeepAliveTime = 30000
  266.     KeepAliveInterval = 1000
  267.     SocksLevel = '5'
  268.     SocksAuthentication = socksNoAuthentication
  269.     Left = 184
  270.     Top = 104
  271.   end
  272.   object TimerSend: TTimer
  273.     Enabled = False
  274.     Interval = 500
  275.     OnTimer = TimerSendTimer
  276.     Left = 216
  277.     Top = 104
  278.   end
  279.   object TimerTryInternal: TTimer
  280.     Enabled = False
  281.     OnTimer = TimerTryInternalTimer
  282.     Left = 248
  283.     Top = 104
  284.   end
  285. end
  286.