CompFilesDesigner.dfm 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. object FilesDesignerForm: TFilesDesignerForm
  2. Left = 624
  3. Top = 375
  4. BorderStyle = bsDialog
  5. Caption = '[Files] Entries Designer'
  6. ClientHeight = 403
  7. ClientWidth = 575
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -12
  12. Font.Name = 'Segoe UI'
  13. Font.Style = []
  14. Position = poDesktopCenter
  15. OnCreate = FormCreate
  16. OnDestroy = FormDestroy
  17. TextHeight = 15
  18. object Panel1: TPanel
  19. Left = 0
  20. Top = 361
  21. Width = 575
  22. Height = 42
  23. Align = alBottom
  24. BevelOuter = bvNone
  25. TabOrder = 0
  26. object Bevel1: TBevel
  27. Left = 0
  28. Top = 0
  29. Width = 575
  30. Height = 3
  31. Align = alTop
  32. Shape = bsBottomLine
  33. end
  34. object InsertButton: TButton
  35. Left = 406
  36. Top = 11
  37. Width = 75
  38. Height = 25
  39. Caption = 'Insert'
  40. ModalResult = 1
  41. TabOrder = 0
  42. OnClick = InsertButtonClick
  43. end
  44. object CancelButton: TButton
  45. Left = 490
  46. Top = 11
  47. Width = 75
  48. Height = 25
  49. Cancel = True
  50. Caption = 'Cancel'
  51. ModalResult = 2
  52. TabOrder = 1
  53. end
  54. end
  55. object AppFilesEditButton: TButton
  56. Left = 476
  57. Top = 107
  58. Width = 89
  59. Height = 23
  60. Caption = '&Parameters...'
  61. TabOrder = 1
  62. end
  63. object AppFilesRemoveButton: TButton
  64. Left = 476
  65. Top = 135
  66. Width = 89
  67. Height = 23
  68. Caption = 'Remo&ve'
  69. TabOrder = 2
  70. end
  71. object AppFilesAddDirButton: TButton
  72. Left = 476
  73. Top = 79
  74. Width = 89
  75. Height = 23
  76. Caption = 'Add fol&der...'
  77. TabOrder = 3
  78. end
  79. object AppFilesAddButton: TButton
  80. Left = 476
  81. Top = 51
  82. Width = 89
  83. Height = 23
  84. Caption = '&Add file(s)...'
  85. TabOrder = 4
  86. end
  87. object AppFilesListBox: TDropListBox
  88. Left = 8
  89. Top = 52
  90. Width = 453
  91. Height = 297
  92. ItemHeight = 15
  93. TabOrder = 5
  94. end
  95. object AppFilesLabel: TNewStaticText
  96. Left = 8
  97. Top = 32
  98. Width = 411
  99. Height = 16
  100. AutoSize = False
  101. Caption = '&Files:'
  102. FocusControl = AppFilesListBox
  103. TabOrder = 6
  104. WordWrap = True
  105. end
  106. object NotCreateAppDirCheck: TCheckBox
  107. Left = 8
  108. Top = 8
  109. Width = 253
  110. Height = 17
  111. Caption = '&Script has CreateAppDir=no'
  112. TabOrder = 7
  113. end
  114. end