OpenDirectory.dfm 6.5 KB

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