OpenDirectory.dfm 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. object OpenDirectoryDialog: TOpenDirectoryDialog
  2. Left = 408
  3. Top = 195
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_opendir'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Open directory'
  9. ClientHeight = 308
  10. ClientWidth = 405
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poMainFormCenter
  15. OnShow = FormShow
  16. DesignSize = (
  17. 405
  18. 308)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object EditLabel: TLabel
  22. Left = 8
  23. Top = 8
  24. Width = 72
  25. Height = 13
  26. Caption = '&Open directory:'
  27. end
  28. object LocalDirectoryEdit: TIEComboBox
  29. Left = 8
  30. Top = 25
  31. Width = 308
  32. Height = 21
  33. Anchors = [akLeft, akTop, akRight]
  34. ItemHeight = 13
  35. TabOrder = 1
  36. Text = 'LocalDirectoryEdit'
  37. OnChange = DirectoryEditChange
  38. end
  39. object RemoteDirectoryEdit: TIEComboBox
  40. Left = 8
  41. Top = 25
  42. Width = 389
  43. Height = 21
  44. Anchors = [akLeft, akTop, akRight]
  45. ItemHeight = 13
  46. MaxLength = 1000
  47. TabOrder = 0
  48. Text = 'RemoteDirectoryEdit'
  49. OnChange = DirectoryEditChange
  50. end
  51. object OKBtn: TButton
  52. Left = 159
  53. Top = 274
  54. Width = 75
  55. Height = 25
  56. Anchors = [akRight, akBottom]
  57. Caption = 'OK'
  58. Default = True
  59. ModalResult = 1
  60. TabOrder = 5
  61. end
  62. object CancelBtn: TButton
  63. Left = 239
  64. Top = 274
  65. Width = 75
  66. Height = 25
  67. Anchors = [akRight, akBottom]
  68. Cancel = True
  69. Caption = 'Cancel'
  70. ModalResult = 2
  71. TabOrder = 6
  72. end
  73. object BookmarksGroup: TXPGroupBox
  74. Left = 8
  75. Top = 56
  76. Width = 386
  77. Height = 209
  78. Anchors = [akLeft, akTop, akRight, akBottom]
  79. Caption = 'Bookmarks'
  80. TabOrder = 3
  81. DesignSize = (
  82. 386
  83. 209)
  84. object Label1: TLabel
  85. Left = 16
  86. Top = 22
  87. Width = 83
  88. Height = 13
  89. Caption = 'Select &bookmark:'
  90. FocusControl = BookmarksList
  91. end
  92. object BookmarksList: TListBox
  93. Left = 16
  94. Top = 38
  95. Width = 266
  96. Height = 155
  97. Anchors = [akLeft, akTop, akRight, akBottom]
  98. DragMode = dmAutomatic
  99. ItemHeight = 13
  100. TabOrder = 0
  101. OnClick = BookmarksListClick
  102. OnDblClick = BookmarksListDblClick
  103. OnDragDrop = BookmarksListDragDrop
  104. OnDragOver = BookmarksListDragOver
  105. OnKeyDown = BookmarksListKeyDown
  106. OnStartDrag = BookmarksListStartDrag
  107. end
  108. object AddBookmarkButton: TButton
  109. Left = 289
  110. Top = 38
  111. Width = 83
  112. Height = 25
  113. Anchors = [akTop, akRight]
  114. Caption = '&Add'
  115. TabOrder = 1
  116. OnClick = AddBookmarkButtonClick
  117. end
  118. object RemoveBookmarkButton: TButton
  119. Left = 289
  120. Top = 70
  121. Width = 83
  122. Height = 25
  123. Anchors = [akTop, akRight]
  124. Caption = '&Remove'
  125. TabOrder = 2
  126. OnClick = RemoveBookmarkButtonClick
  127. end
  128. object DownBookmarkButton: TButton
  129. Left = 289
  130. Top = 168
  131. Width = 83
  132. Height = 25
  133. Anchors = [akRight, akBottom]
  134. Caption = '&Down'
  135. TabOrder = 3
  136. OnClick = BookmarkButtonClick
  137. end
  138. object UpBookmarkButton: TButton
  139. Left = 289
  140. Top = 136
  141. Width = 83
  142. Height = 25
  143. Anchors = [akRight, akBottom]
  144. Caption = '&Up'
  145. TabOrder = 4
  146. OnClick = BookmarkButtonClick
  147. end
  148. end
  149. object LocalDirectoryBrowseButton: TButton
  150. Left = 320
  151. Top = 23
  152. Width = 75
  153. Height = 25
  154. Anchors = [akTop, akRight]
  155. Caption = 'B&rowse...'
  156. TabOrder = 2
  157. OnClick = LocalDirectoryBrowseButtonClick
  158. end
  159. object SwitchButton: TButton
  160. Left = 8
  161. Top = 274
  162. Width = 121
  163. Height = 25
  164. Anchors = [akLeft, akBottom]
  165. Caption = '&Location Profiles...'
  166. ModalResult = 2
  167. TabOrder = 4
  168. OnClick = SwitchButtonClick
  169. end
  170. object HelpButton: TButton
  171. Left = 320
  172. Top = 274
  173. Width = 75
  174. Height = 25
  175. Anchors = [akRight, akBottom]
  176. Caption = '&Help'
  177. TabOrder = 7
  178. OnClick = HelpButtonClick
  179. end
  180. end