OpenDirectory.dfm 6.4 KB

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