ToolsUnit.dfm 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. object ToolsForm: TToolsForm
  2. Left = 125
  3. Top = 116
  4. ActiveControl = ToolsList
  5. BorderIcons = [biSystemMenu]
  6. BorderStyle = bsDialog
  7. Caption = 'Configure Tools'
  8. ClientHeight = 209
  9. ClientWidth = 425
  10. Color = clBtnFace
  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. DesignSize = (
  19. 425
  20. 209)
  21. PixelsPerInch = 96
  22. TextHeight = 13
  23. object ToolsList: TListView
  24. Left = 16
  25. Top = 16
  26. Width = 305
  27. Height = 177
  28. Anchors = [akLeft, akTop, akRight, akBottom]
  29. Columns = <
  30. item
  31. Caption = 'Title'
  32. Width = 100
  33. end
  34. item
  35. Caption = 'Command Line'
  36. Width = 250
  37. end
  38. item
  39. Caption = 'Working Directory'
  40. Width = 200
  41. end
  42. item
  43. Caption = 'Window State'
  44. Width = 100
  45. end>
  46. ColumnClick = False
  47. DragMode = dmAutomatic
  48. RowSelect = True
  49. TabOrder = 0
  50. ViewStyle = vsReport
  51. OnDblClick = EditButtonClick
  52. OnDragDrop = ToolsListDragDrop
  53. OnDragOver = ToolsListDragOver
  54. OnKeyDown = ToolsListKeyDown
  55. OnSelectItem = ToolsListSelectItem
  56. end
  57. object AddButton: TButton
  58. Left = 336
  59. Top = 16
  60. Width = 73
  61. Height = 25
  62. Anchors = [akTop, akRight]
  63. Caption = '&Add...'
  64. TabOrder = 1
  65. OnClick = AddButtonClick
  66. end
  67. object EditButton: TButton
  68. Left = 336
  69. Top = 48
  70. Width = 73
  71. Height = 25
  72. Anchors = [akTop, akRight]
  73. Caption = '&Edit...'
  74. Enabled = False
  75. TabOrder = 2
  76. OnClick = EditButtonClick
  77. end
  78. object RemoveButton: TButton
  79. Left = 336
  80. Top = 80
  81. Width = 73
  82. Height = 25
  83. Anchors = [akTop, akRight]
  84. Caption = '&Remove'
  85. Enabled = False
  86. TabOrder = 3
  87. OnClick = RemoveButtonClick
  88. end
  89. object OKButton: TButton
  90. Left = 336
  91. Top = 136
  92. Width = 73
  93. Height = 25
  94. Anchors = [akRight, akBottom]
  95. Caption = '&OK'
  96. Default = True
  97. ModalResult = 1
  98. TabOrder = 4
  99. end
  100. object CancelButton: TButton
  101. Left = 336
  102. Top = 168
  103. Width = 73
  104. Height = 25
  105. Anchors = [akRight, akBottom]
  106. Cancel = True
  107. Caption = '&Cancel'
  108. ModalResult = 2
  109. TabOrder = 5
  110. end
  111. end