LuaOutput.dfm 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. object frmLuaOutput: TfrmLuaOutput
  2. Left = 525
  3. Top = 385
  4. Width = 482
  5. Height = 240
  6. BorderStyle = bsSizeToolWin
  7. Caption = 'Lua Output'
  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. PixelsPerInch = 96
  21. TextHeight = 13
  22. object vstLuaOutput: TVirtualStringTree
  23. Left = 0
  24. Top = 0
  25. Width = 474
  26. Height = 213
  27. Align = alClient
  28. Header.AutoSizeIndex = 0
  29. Header.Font.Charset = DEFAULT_CHARSET
  30. Header.Font.Color = clWindowText
  31. Header.Font.Height = -11
  32. Header.Font.Name = 'MS Sans Serif'
  33. Header.Font.Style = []
  34. Header.MainColumn = -1
  35. Header.Options = [hoColumnResize, hoDrag]
  36. PopupMenu = ppmLuaOutput
  37. ScrollBarOptions.AlwaysVisible = True
  38. TabOrder = 0
  39. TreeOptions.PaintOptions = [toShowDropmark, toThemeAware, toUseBlendedImages]
  40. TreeOptions.SelectionOptions = [toFullRowSelect, toMultiSelect, toRightClickSelect]
  41. OnDblClick = vstLuaOutputDblClick
  42. OnGetText = vstLuaOutputGetText
  43. OnGetNodeDataSize = vstLuaOutputGetNodeDataSize
  44. Columns = <>
  45. end
  46. object JvDockClient1: TJvDockClient
  47. DirectDrag = False
  48. DockStyle = frmLuaEditMain.jvDockVSNet
  49. Left = 24
  50. Top = 16
  51. end
  52. object ppmLuaOutput: TPopupMenu
  53. OnPopup = ppmLuaOutputPopup
  54. Left = 24
  55. Top = 48
  56. object SelectAll1: TMenuItem
  57. Caption = 'Select All'
  58. OnClick = SelectAll1Click
  59. end
  60. object N2: TMenuItem
  61. Caption = '-'
  62. end
  63. object Copy1: TMenuItem
  64. Caption = 'Copy'
  65. OnClick = Copy1Click
  66. end
  67. object FindSource1: TMenuItem
  68. Caption = 'Find Source...'
  69. OnClick = FindSource1Click
  70. end
  71. object N1: TMenuItem
  72. Caption = '-'
  73. end
  74. object Clear1: TMenuItem
  75. Caption = 'Clear Selected'
  76. OnClick = Clear1Click
  77. end
  78. object ClearAll1: TMenuItem
  79. Caption = 'Clear All'
  80. OnClick = ClearAll1Click
  81. end
  82. end
  83. end