/ide/cleandirdlg.lfm

http://github.com/graemeg/lazarus · Unknown · 166 lines · 166 code · 0 blank · 0 comment · 0 complexity · 98b99d5676ad7f9d9fd23c1b4f62d315 MD5 · raw file

  1. object CleanDirectoryDialog: TCleanDirectoryDialog
  2. Left = 307
  3. Height = 342
  4. Top = 209
  5. Width = 396
  6. BorderIcons = [biSystemMenu]
  7. Caption = 'Clean Directory'
  8. ClientHeight = 342
  9. ClientWidth = 396
  10. OnCreate = CleanDirectoryDialogCreate
  11. OnDestroy = FormDestroy
  12. Position = poScreenCenter
  13. LCLVersion = '1.5'
  14. object DirGroupbox: TGroupBox
  15. Left = 6
  16. Height = 84
  17. Top = 6
  18. Width = 384
  19. Align = alTop
  20. BorderSpacing.Around = 6
  21. Caption = 'Directory'
  22. ClientHeight = 64
  23. ClientWidth = 380
  24. TabOrder = 0
  25. object DirCombobox: TComboBox
  26. AnchorSideRight.Control = DirBrowseButton
  27. Left = 6
  28. Height = 23
  29. Top = 6
  30. Width = 328
  31. Anchors = [akTop, akLeft, akRight]
  32. AutoCompleteText = [cbactSearchAscending]
  33. BorderSpacing.Around = 6
  34. ItemHeight = 15
  35. TabOrder = 0
  36. Text = 'DirCombobox'
  37. end
  38. object SubDirsCheckbox: TCheckBox
  39. AnchorSideTop.Control = DirCombobox
  40. AnchorSideTop.Side = asrBottom
  41. Left = 6
  42. Height = 23
  43. Top = 35
  44. Width = 368
  45. Align = alBottom
  46. Anchors = [akTop, akLeft, akRight, akBottom]
  47. BorderSpacing.Around = 6
  48. Caption = 'Clean sub directories'
  49. TabOrder = 2
  50. end
  51. object DirBrowseButton: TButton
  52. AnchorSideLeft.Control = DirCombobox
  53. AnchorSideLeft.Side = asrBottom
  54. AnchorSideTop.Control = DirCombobox
  55. AnchorSideRight.Control = DirGroupbox
  56. AnchorSideRight.Side = asrBottom
  57. AnchorSideBottom.Control = DirCombobox
  58. AnchorSideBottom.Side = asrBottom
  59. Left = 340
  60. Height = 23
  61. Top = 6
  62. Width = 35
  63. Anchors = [akTop, akRight, akBottom]
  64. BorderSpacing.Right = 5
  65. Caption = '...'
  66. OnClick = DirBrowseButtonClick
  67. TabOrder = 1
  68. end
  69. end
  70. object RemoveGroupbox: TGroupBox
  71. Left = 6
  72. Height = 84
  73. Top = 96
  74. Width = 384
  75. Align = alTop
  76. BorderSpacing.Around = 6
  77. Caption = 'Remove files matching filter:'
  78. ClientHeight = 64
  79. ClientWidth = 380
  80. TabOrder = 1
  81. object RemoveCombobox: TComboBox
  82. Left = 6
  83. Height = 23
  84. Top = 6
  85. Width = 368
  86. Align = alTop
  87. AutoCompleteText = [cbactSearchAscending]
  88. BorderSpacing.Around = 6
  89. ItemHeight = 15
  90. TabOrder = 0
  91. Text = 'RemoveCombobox'
  92. end
  93. object SimpleSyntaxRemoveCheckbox: TCheckBox
  94. Left = 6
  95. Height = 19
  96. Top = 35
  97. Width = 368
  98. Align = alTop
  99. BorderSpacing.Around = 6
  100. Caption = 'Simple syntax (e.g. * instead of .*)'
  101. TabOrder = 1
  102. end
  103. end
  104. object KeepGroupbox: TGroupBox
  105. Left = 6
  106. Height = 118
  107. Top = 186
  108. Width = 384
  109. Align = alClient
  110. BorderSpacing.Around = 6
  111. Caption = 'Keep files matching filter:'
  112. ClientHeight = 98
  113. ClientWidth = 380
  114. TabOrder = 2
  115. object KeepCombobox: TComboBox
  116. Left = 6
  117. Height = 23
  118. Top = 6
  119. Width = 368
  120. Align = alTop
  121. AutoCompleteText = [cbactSearchAscending]
  122. BorderSpacing.Around = 6
  123. ItemHeight = 15
  124. TabOrder = 0
  125. Text = 'KeepCombobox'
  126. end
  127. object SimpleSyntaxKeepCheckbox: TCheckBox
  128. Left = 6
  129. Height = 19
  130. Top = 35
  131. Width = 368
  132. Align = alTop
  133. BorderSpacing.Around = 6
  134. Caption = 'Simple syntax (e.g. * instead of .*)'
  135. TabOrder = 1
  136. end
  137. object KeepTextFilesCheckbox: TCheckBox
  138. Left = 6
  139. Height = 19
  140. Top = 60
  141. Width = 368
  142. Align = alTop
  143. BorderSpacing.Around = 6
  144. Caption = 'Keep Text Files'
  145. TabOrder = 2
  146. end
  147. end
  148. object ButtonPanel: TButtonPanel
  149. Left = 6
  150. Height = 26
  151. Top = 310
  152. Width = 384
  153. OKButton.Name = 'OKButton'
  154. OKButton.DefaultCaption = True
  155. HelpButton.Name = 'HelpButton'
  156. HelpButton.DefaultCaption = True
  157. CloseButton.Name = 'CloseButton'
  158. CloseButton.DefaultCaption = True
  159. CloseButton.Enabled = False
  160. CancelButton.Name = 'CancelButton'
  161. CancelButton.DefaultCaption = True
  162. TabOrder = 3
  163. ShowButtons = [pbOK, pbCancel, pbHelp]
  164. ShowBevel = False
  165. end
  166. end