uBatch.dfm 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. object BatchEdit: TBatchEdit
  2. Left = 297
  3. Top = 210
  4. AutoSize = True
  5. BorderStyle = bsToolWindow
  6. BorderWidth = 6
  7. Caption = 'Batch'
  8. ClientHeight = 257
  9. ClientWidth = 361
  10. Color = clBtnFace
  11. Font.Charset = ANSI_CHARSET
  12. Font.Color = clWindowText
  13. Font.Height = -11
  14. Font.Name = 'Arial'
  15. Font.Style = []
  16. OldCreateOrder = False
  17. Position = poOwnerFormCenter
  18. OnCreate = FormCreate
  19. PixelsPerInch = 96
  20. TextHeight = 14
  21. object WorkDirLbl: TLabel
  22. Left = 0
  23. Top = 0
  24. Width = 174
  25. Height = 14
  26. Caption = 'Work directory (containing headers)'
  27. end
  28. object HsfDirLbl: TLabel
  29. Left = 0
  30. Top = 48
  31. Width = 196
  32. Height = 14
  33. Caption = 'Root directory containing subdir with hsf'
  34. end
  35. object WorkDirEdit: TEdit
  36. Left = 24
  37. Top = 16
  38. Width = 313
  39. Height = 22
  40. TabOrder = 0
  41. end
  42. object WorkDirBtn: TButton
  43. Left = 339
  44. Top = 16
  45. Width = 22
  46. Height = 22
  47. Caption = '...'
  48. TabOrder = 1
  49. OnClick = WorkDirBtnClick
  50. end
  51. object HsfDirEdit: TEdit
  52. Left = 24
  53. Top = 64
  54. Width = 313
  55. Height = 22
  56. TabOrder = 2
  57. end
  58. object HsfDirBtn: TButton
  59. Left = 339
  60. Top = 64
  61. Width = 22
  62. Height = 22
  63. Caption = '...'
  64. TabOrder = 3
  65. OnClick = HsfDirBtnClick
  66. end
  67. object GoBtn: TButton
  68. Left = 286
  69. Top = 232
  70. Width = 75
  71. Height = 25
  72. Caption = 'Go'
  73. TabOrder = 4
  74. OnClick = GoBtnClick
  75. end
  76. object LogMemo: TMemo
  77. Left = 0
  78. Top = 96
  79. Width = 361
  80. Height = 129
  81. TabOrder = 5
  82. end
  83. object EnumCheck: TCheckBox
  84. Left = 8
  85. Top = 236
  86. Width = 217
  87. Height = 17
  88. Caption = 'Generate informations for enumerations'
  89. Checked = True
  90. State = cbChecked
  91. TabOrder = 6
  92. end
  93. end