OpenDirectory.dfm 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. object OpenDirectoryDialog: TOpenDirectoryDialog
  2. Left = 511
  3. Top = 239
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_opendir'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Open directory'
  9. ClientHeight = 342
  10. ClientWidth = 450
  11. Color = clBtnFace
  12. ParentFont = True
  13. Position = poOwnerFormCenter
  14. OnShow = FormShow
  15. DesignSize = (
  16. 450
  17. 342)
  18. TextHeight = 15
  19. object EditLabel: TLabel
  20. Left = 46
  21. Top = 8
  22. Width = 82
  23. Height = 15
  24. Caption = '&Open directory:'
  25. end
  26. object Image: TImage
  27. Left = 8
  28. Top = 11
  29. Width = 32
  30. Height = 32
  31. AutoSize = True
  32. end
  33. object LocalDirectoryEdit: THistoryComboBox
  34. Left = 46
  35. Top = 26
  36. Width = 310
  37. Height = 23
  38. Anchors = [akLeft, akTop, akRight]
  39. TabOrder = 1
  40. Text = 'LocalDirectoryEdit'
  41. OnChange = DirectoryEditChange
  42. SaveOn = []
  43. end
  44. object RemoteDirectoryEdit: THistoryComboBox
  45. Left = 46
  46. Top = 26
  47. Width = 396
  48. Height = 23
  49. Anchors = [akLeft, akTop, akRight]
  50. DropDownCount = 16
  51. MaxLength = 1000
  52. TabOrder = 0
  53. Text = 'RemoteDirectoryEdit'
  54. OnChange = DirectoryEditChange
  55. SaveOn = []
  56. end
  57. object OKBtn: TButton
  58. Left = 190
  59. Top = 309
  60. Width = 80
  61. Height = 25
  62. Anchors = [akRight, akBottom]
  63. Caption = 'OK'
  64. Default = True
  65. ModalResult = 1
  66. TabOrder = 5
  67. end
  68. object CancelBtn: TButton
  69. Left = 276
  70. Top = 309
  71. Width = 80
  72. Height = 25
  73. Anchors = [akRight, akBottom]
  74. Cancel = True
  75. Caption = 'Cancel'
  76. ModalResult = 2
  77. TabOrder = 6
  78. end
  79. object PageControl: TPageControl
  80. Left = 8
  81. Top = 55
  82. Width = 434
  83. Height = 248
  84. ActivePage = SessionBookmarksSheet
  85. Anchors = [akLeft, akTop, akRight, akBottom]
  86. TabOrder = 3
  87. OnChange = PageControlChange
  88. object SessionBookmarksSheet: TTabSheet
  89. Tag = 1
  90. Caption = 'Site bookmarks'
  91. DesignSize = (
  92. 426
  93. 218)
  94. object SessionBookmarksList: TListBox
  95. Tag = 1
  96. Left = 5
  97. Top = 5
  98. Width = 328
  99. Height = 207
  100. Anchors = [akLeft, akTop, akRight, akBottom]
  101. DragMode = dmAutomatic
  102. ItemHeight = 15
  103. TabOrder = 0
  104. OnClick = BookmarksListClick
  105. OnDblClick = BookmarksListDblClick
  106. OnDragDrop = BookmarksListDragDrop
  107. OnDragOver = BookmarksListDragOver
  108. OnEndDrag = BookmarksListEndDrag
  109. OnKeyDown = BookmarksListKeyDown
  110. OnStartDrag = BookmarksListStartDrag
  111. end
  112. object AddSessionBookmarkButton: TButton
  113. Tag = 1
  114. Left = 339
  115. Top = 5
  116. Width = 80
  117. Height = 25
  118. Anchors = [akTop, akRight]
  119. Caption = '&Add'
  120. TabOrder = 1
  121. OnClick = AddBookmarkButtonClick
  122. end
  123. object RemoveSessionBookmarkButton: TButton
  124. Tag = 1
  125. Left = 339
  126. Top = 36
  127. Width = 80
  128. Height = 25
  129. Anchors = [akTop, akRight]
  130. Caption = 'Remo&ve'
  131. TabOrder = 2
  132. OnClick = RemoveBookmarkButtonClick
  133. end
  134. object UpSessionBookmarkButton: TButton
  135. Tag = -1
  136. Left = 339
  137. Top = 156
  138. Width = 80
  139. Height = 25
  140. Anchors = [akRight, akBottom]
  141. Caption = '&Up'
  142. TabOrder = 3
  143. OnClick = BookmarkButtonClick
  144. end
  145. object DownSessionBookmarkButton: TButton
  146. Tag = 1
  147. Left = 339
  148. Top = 187
  149. Width = 80
  150. Height = 25
  151. Anchors = [akRight, akBottom]
  152. Caption = '&Down'
  153. TabOrder = 4
  154. OnClick = BookmarkButtonClick
  155. end
  156. end
  157. object SharedBookmarksSheet: TTabSheet
  158. Tag = 2
  159. Caption = 'Shared bookmarks'
  160. ImageIndex = 1
  161. DesignSize = (
  162. 426
  163. 218)
  164. object SharedBookmarksList: TListBox
  165. Tag = 2
  166. Left = 5
  167. Top = 5
  168. Width = 328
  169. Height = 207
  170. Anchors = [akLeft, akTop, akRight, akBottom]
  171. DragMode = dmAutomatic
  172. ItemHeight = 15
  173. TabOrder = 0
  174. OnClick = BookmarksListClick
  175. OnDblClick = BookmarksListDblClick
  176. OnDragDrop = BookmarksListDragDrop
  177. OnDragOver = BookmarksListDragOver
  178. OnEndDrag = BookmarksListEndDrag
  179. OnKeyDown = BookmarksListKeyDown
  180. OnStartDrag = BookmarksListStartDrag
  181. end
  182. object AddSharedBookmarkButton: TButton
  183. Tag = 2
  184. Left = 339
  185. Top = 5
  186. Width = 80
  187. Height = 25
  188. Anchors = [akTop, akRight]
  189. Caption = '&Add'
  190. TabOrder = 1
  191. OnClick = AddBookmarkButtonClick
  192. end
  193. object RemoveSharedBookmarkButton: TButton
  194. Tag = 2
  195. Left = 339
  196. Top = 36
  197. Width = 80
  198. Height = 25
  199. Anchors = [akTop, akRight]
  200. Caption = 'Remo&ve'
  201. TabOrder = 2
  202. OnClick = RemoveBookmarkButtonClick
  203. end
  204. object UpSharedBookmarkButton: TButton
  205. Tag = -2
  206. Left = 339
  207. Top = 156
  208. Width = 80
  209. Height = 25
  210. Anchors = [akRight, akBottom]
  211. Caption = '&Up'
  212. TabOrder = 4
  213. OnClick = BookmarkButtonClick
  214. end
  215. object DownSharedBookmarkButton: TButton
  216. Tag = 2
  217. Left = 339
  218. Top = 187
  219. Width = 80
  220. Height = 25
  221. Anchors = [akRight, akBottom]
  222. Caption = '&Down'
  223. TabOrder = 5
  224. OnClick = BookmarkButtonClick
  225. end
  226. object ShortCutSharedBookmarkButton: TButton
  227. Tag = 2
  228. Left = 339
  229. Top = 67
  230. Width = 80
  231. Height = 25
  232. Anchors = [akTop, akRight]
  233. Caption = '&Shortcut...'
  234. TabOrder = 3
  235. OnClick = ShortCutBookmarkButtonClick
  236. end
  237. end
  238. end
  239. object LocalDirectoryBrowseButton: TButton
  240. Left = 362
  241. Top = 25
  242. Width = 80
  243. Height = 25
  244. Anchors = [akTop, akRight]
  245. Caption = 'B&rowse...'
  246. TabOrder = 2
  247. OnClick = LocalDirectoryBrowseButtonClick
  248. end
  249. object SwitchButton: TButton
  250. Left = 8
  251. Top = 309
  252. Width = 134
  253. Height = 25
  254. Anchors = [akLeft, akBottom]
  255. Caption = '&Location Profiles...'
  256. ModalResult = 2
  257. TabOrder = 4
  258. OnClick = SwitchButtonClick
  259. end
  260. object HelpButton: TButton
  261. Left = 362
  262. Top = 309
  263. Width = 80
  264. Height = 25
  265. Anchors = [akRight, akBottom]
  266. Caption = '&Help'
  267. TabOrder = 7
  268. OnClick = HelpButtonClick
  269. end
  270. end