ChainClients.dfm 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. object formChainClients: TformChainClients
  2. Left = 287
  3. Top = 126
  4. Width = 433
  5. Height = 434
  6. Caption = 'Fiber Playground'
  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. PixelsPerInch = 96
  15. TextHeight = 13
  16. object Panel1: TPanel
  17. Left = 0
  18. Top = 0
  19. Width = 425
  20. Height = 129
  21. Align = alTop
  22. TabOrder = 0
  23. object Label2: TLabel
  24. Left = 144
  25. Top = 8
  26. Width = 28
  27. Height = 13
  28. Caption = '&Fibers'
  29. FocusControl = editFibers
  30. end
  31. object Label1: TLabel
  32. Left = 232
  33. Top = 8
  34. Width = 35
  35. Height = 13
  36. Caption = 'Repeat'
  37. end
  38. object Label4: TLabel
  39. Left = 144
  40. Top = 80
  41. Width = 49
  42. Height = 13
  43. Caption = 'Document'
  44. end
  45. object Label3: TLabel
  46. Left = 144
  47. Top = 32
  48. Width = 22
  49. Height = 13
  50. Caption = 'Host'
  51. end
  52. object lablThreads: TLabel
  53. Left = 328
  54. Top = 8
  55. Width = 42
  56. Height = 13
  57. Caption = 'Threads:'
  58. end
  59. object lablReturns: TLabel
  60. Left = 328
  61. Top = 24
  62. Width = 40
  63. Height = 13
  64. Caption = 'Returns:'
  65. end
  66. object butnFiber: TButton
  67. Left = 336
  68. Top = 96
  69. Width = 75
  70. Height = 25
  71. Caption = '&Test'
  72. Default = True
  73. TabOrder = 0
  74. OnClick = butnFiberClick
  75. end
  76. object editFibers: TEdit
  77. Left = 184
  78. Top = 8
  79. Width = 41
  80. Height = 21
  81. TabOrder = 1
  82. Text = '1'
  83. end
  84. object editRepeat: TEdit
  85. Left = 272
  86. Top = 8
  87. Width = 41
  88. Height = 21
  89. TabOrder = 2
  90. Text = '1'
  91. end
  92. object editDocument: TEdit
  93. Left = 144
  94. Top = 96
  95. Width = 169
  96. Height = 21
  97. TabOrder = 3
  98. Text = '/MLTest/1.html'
  99. end
  100. object editHost: TEdit
  101. Left = 144
  102. Top = 48
  103. Width = 169
  104. Height = 21
  105. TabOrder = 4
  106. Text = '127.0.0.1'
  107. end
  108. object GroupBox1: TGroupBox
  109. Left = 8
  110. Top = 8
  111. Width = 129
  112. Height = 57
  113. Caption = 'Client Type'
  114. TabOrder = 5
  115. object radoTCP: TRadioButton
  116. Left = 8
  117. Top = 16
  118. Width = 113
  119. Height = 17
  120. Caption = 'TCP'
  121. Checked = True
  122. TabOrder = 0
  123. TabStop = True
  124. end
  125. object radoHTTP: TRadioButton
  126. Left = 8
  127. Top = 32
  128. Width = 113
  129. Height = 17
  130. Caption = 'HTTP'
  131. TabOrder = 1
  132. end
  133. end
  134. object GroupBox2: TGroupBox
  135. Left = 8
  136. Top = 64
  137. Width = 129
  138. Height = 57
  139. Caption = 'Chain Type'
  140. TabOrder = 6
  141. object radoWinsock: TRadioButton
  142. Left = 8
  143. Top = 16
  144. Width = 113
  145. Height = 17
  146. Caption = 'Winsock'
  147. TabOrder = 0
  148. end
  149. object radoIOCP: TRadioButton
  150. Left = 8
  151. Top = 32
  152. Width = 113
  153. Height = 17
  154. Caption = 'IOCP'
  155. Checked = True
  156. TabOrder = 1
  157. TabStop = True
  158. end
  159. end
  160. end
  161. object memoTest: TMemo
  162. Left = 0
  163. Top = 129
  164. Width = 425
  165. Height = 278
  166. Align = alClient
  167. ReadOnly = True
  168. ScrollBars = ssVertical
  169. TabOrder = 1
  170. end
  171. object ChainClient: TBXBubble
  172. Category = 'Chains'
  173. Description = 'Client Playground'
  174. OnPlayground = ChainClientPlayground
  175. Left = 24
  176. Top = 168
  177. end
  178. end