HelpUnit.dfm 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. object FormHelp: TFormHelp
  2. Left = 0
  3. Top = 0
  4. BorderStyle = bsToolWindow
  5. Caption = 'Help'
  6. ClientHeight = 148
  7. ClientWidth = 276
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -12
  12. Font.Name = 'Courier New'
  13. Font.Style = []
  14. Position = poDesigned
  15. OnKeyDown = FormKeyDown
  16. TextHeight = 15
  17. object Panel1: TPanel
  18. Left = 0
  19. Top = 0
  20. Width = 276
  21. Height = 148
  22. Align = alClient
  23. BevelOuter = bvNone
  24. Enabled = False
  25. ParentColor = True
  26. ShowCaption = False
  27. TabOrder = 0
  28. ExplicitLeft = 56
  29. ExplicitTop = 44
  30. ExplicitWidth = 185
  31. ExplicitHeight = 41
  32. object Memo1: TMemo
  33. Left = 0
  34. Top = 0
  35. Width = 276
  36. Height = 148
  37. Align = alClient
  38. BorderStyle = bsNone
  39. Lines.Strings = (
  40. '[F1] Show/hide help.'
  41. '[+] Add particles.'
  42. '[-] Remove particles.'
  43. '[Left mouse] Attract particles.'
  44. '[Right mouse] Repulse particles.'
  45. '[Middle mouse] Slow down particles.'
  46. '[C] Toggle color animation.'
  47. '[F] Toggle fade.'
  48. '[N] Toggle simplex noise view.')
  49. ParentColor = True
  50. ReadOnly = True
  51. TabOrder = 0
  52. WantReturns = False
  53. ExplicitHeight = 89
  54. end
  55. end
  56. end