/examples/anchordocking/dockform1unit.lfm

http://github.com/graemeg/lazarus · Unknown · 102 lines · 102 code · 0 blank · 0 comment · 0 complexity · 5ce2e35e522c115946e5574b5f0570db MD5 · raw file

  1. object MainForm: TMainForm
  2. Left = 292
  3. Height = 331
  4. Top = 209
  5. Width = 400
  6. HorzScrollBar.Page = 399
  7. VertScrollBar.Page = 330
  8. ActiveControl = CreateNewFormButton
  9. Caption = 'MainForm'
  10. ClientHeight = 331
  11. ClientWidth = 400
  12. OnCreate = FormCreate
  13. OnDestroy = FormDestroy
  14. OnPaint = FormPaint
  15. PopupMenu = MainPopupMenu
  16. object CreateNewFormButton: TButton
  17. Left = 8
  18. Height = 29
  19. Top = 32
  20. Width = 130
  21. AutoSize = True
  22. Caption = 'Create a new form'
  23. OnClick = CreateNewFormButtonClick
  24. TabOrder = 0
  25. end
  26. object SaveLayoutButton: TButton
  27. Left = 8
  28. Height = 29
  29. Top = 64
  30. Width = 177
  31. AutoSize = True
  32. Caption = 'Save Layout to config.xml'
  33. OnClick = SaveLayoutButtonClick
  34. TabOrder = 1
  35. end
  36. object CreateLayoutGroupBox: TGroupBox
  37. Left = 16
  38. Height = 200
  39. Top = 104
  40. Width = 115
  41. AutoSize = True
  42. Caption = 'Create Layout'
  43. ChildSizing.LeftRightSpacing = 6
  44. ChildSizing.TopBottomSpacing = 6
  45. ChildSizing.HorizontalSpacing = 6
  46. ChildSizing.VerticalSpacing = 6
  47. ChildSizing.Layout = cclLeftToRightThenTopToBottom
  48. ClientHeight = 181
  49. ClientWidth = 111
  50. TabOrder = 2
  51. object ClearLayoutsButton: TButton
  52. Left = 6
  53. Height = 29
  54. Top = 6
  55. Width = 99
  56. Caption = 'Clear Layouts'
  57. OnClick = ClearLayoutsButtonClick
  58. TabOrder = 1
  59. end
  60. object TwoSiblingsButton: TButton
  61. Left = 6
  62. Height = 29
  63. Top = 41
  64. Width = 99
  65. Caption = 'Two Siblings'
  66. OnClick = TwoSiblingsButtonClick
  67. TabOrder = 4
  68. end
  69. object TwoPagesButton: TButton
  70. Left = 6
  71. Height = 29
  72. Top = 76
  73. Width = 99
  74. AutoSize = True
  75. Caption = 'Two Pages'
  76. OnClick = TwoPagesButtonClick
  77. TabOrder = 0
  78. end
  79. object ThreePagesButton: TButton
  80. Left = 6
  81. Height = 29
  82. Top = 111
  83. Width = 99
  84. Caption = 'Three Pages'
  85. OnClick = ThreePagesButtonClick
  86. TabOrder = 2
  87. end
  88. object SpiralButton: TButton
  89. Left = 6
  90. Height = 29
  91. Top = 146
  92. Width = 99
  93. Caption = 'Spiral'
  94. OnClick = SpiralButtonClick
  95. TabOrder = 3
  96. end
  97. end
  98. object MainPopupMenu: TPopupMenu
  99. left = 192
  100. top = 24
  101. end
  102. end