OpenDirectory.dfm 6.6 KB

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