ProjectTree.dfm 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. object frmProjectTree: TfrmProjectTree
  2. Left = 675
  3. Top = 184
  4. Width = 262
  5. Height = 400
  6. BorderStyle = bsSizeToolWin
  7. Caption = 'Project Tree'
  8. Color = clBtnFace
  9. DockSite = True
  10. DragKind = dkDock
  11. DragMode = dmAutomatic
  12. Font.Charset = DEFAULT_CHARSET
  13. Font.Color = clWindowText
  14. Font.Height = -11
  15. Font.Name = 'MS Sans Serif'
  16. Font.Style = []
  17. FormStyle = fsStayOnTop
  18. OldCreateOrder = False
  19. Position = poOwnerFormCenter
  20. OnCreate = FormCreate
  21. PixelsPerInch = 96
  22. TextHeight = 13
  23. object Panel1: TPanel
  24. Left = 0
  25. Top = 0
  26. Width = 254
  27. Height = 373
  28. Align = alClient
  29. BevelOuter = bvNone
  30. TabOrder = 0
  31. object vstProjectTree: TVirtualDrawTree
  32. Left = 0
  33. Top = 0
  34. Width = 254
  35. Height = 373
  36. Align = alClient
  37. Header.AutoSizeIndex = 1
  38. Header.Font.Charset = DEFAULT_CHARSET
  39. Header.Font.Color = clWindowText
  40. Header.Font.Height = -11
  41. Header.Font.Name = 'MS Sans Serif'
  42. Header.Font.Style = []
  43. Header.Options = [hoAutoResize, hoColumnResize, hoDrag, hoVisible]
  44. Header.Style = hsFlatButtons
  45. PopupMenu = ppmProjectTree
  46. TabOrder = 0
  47. TreeOptions.PaintOptions = [toShowBackground, toShowButtons, toShowDropmark, toShowRoot, toShowTreeLines, toThemeAware]
  48. TreeOptions.SelectionOptions = [toFullRowSelect, toRightClickSelect]
  49. OnAfterItemPaint = vstProjectTreeAfterItemPaint
  50. OnDblClick = vstProjectTreeDblClick
  51. OnDrawNode = vstProjectTreeDrawNode
  52. OnGetNodeDataSize = vstProjectTreeGetNodeDataSize
  53. OnInitNode = vstProjectTreeInitNode
  54. OnKeyDown = vstProjectTreeKeyDown
  55. OnMouseDown = vstProjectTreeMouseDown
  56. Columns = <
  57. item
  58. Position = 0
  59. Width = 100
  60. WideText = 'Files'
  61. end
  62. item
  63. Position = 1
  64. Width = 150
  65. WideText = 'Path'
  66. end>
  67. end
  68. end
  69. object ppmProjectTree: TPopupMenu
  70. Images = frmLuaEditMain.imlActions
  71. OnPopup = ppmProjectTreePopup
  72. Left = 8
  73. Top = 72
  74. object N3: TMenuItem
  75. Caption = 'Save'
  76. ImageIndex = 5
  77. OnClick = N3Click
  78. end
  79. object SaveAs1: TMenuItem
  80. Caption = 'Save As...'
  81. ImageIndex = 7
  82. OnClick = SaveAs1Click
  83. end
  84. object mnuFindTarget: TMenuItem
  85. Caption = 'Find Target...'
  86. OnClick = mnuFindTargetClick
  87. end
  88. object UnloadFileProject1: TMenuItem
  89. Caption = 'Unload File/Project'
  90. OnClick = UnloadFileProject1Click
  91. end
  92. object N2: TMenuItem
  93. Caption = '-'
  94. end
  95. object ActivateSelectedProject1: TMenuItem
  96. Action = frmLuaEditMain.actActiveSelPrj
  97. end
  98. object AddUnittoProject1: TMenuItem
  99. Action = frmLuaEditMain.actAddToPrj
  100. end
  101. object RemoveUnitFromProject1: TMenuItem
  102. Action = frmLuaEditMain.actRemoveFromPrj
  103. end
  104. object N1: TMenuItem
  105. Caption = '-'
  106. end
  107. object Options1: TMenuItem
  108. Action = frmLuaEditMain.actPrjSettings
  109. end
  110. end
  111. object JvDockClient1: TJvDockClient
  112. DirectDrag = False
  113. DockStyle = frmLuaEditMain.jvDockVSNet
  114. Left = 8
  115. Top = 40
  116. end
  117. object SystemImages: TImageList
  118. Left = 40
  119. Top = 40
  120. end
  121. object StatesImages: TImageList
  122. Left = 40
  123. Top = 72
  124. end
  125. end