OpenDirectory.dfm 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. object OpenDirectoryDialog: TOpenDirectoryDialog
  2. Left = 408
  3. Top = 195
  4. BorderStyle = bsDialog
  5. Caption = 'Open directory'
  6. ClientHeight = 308
  7. ClientWidth = 378
  8. Color = clBtnFace
  9. ParentFont = True
  10. OldCreateOrder = True
  11. Position = poMainFormCenter
  12. OnShow = FormShow
  13. DesignSize = (
  14. 378
  15. 308)
  16. PixelsPerInch = 96
  17. TextHeight = 13
  18. object EditLabel: TLabel
  19. Left = 8
  20. Top = 8
  21. Width = 72
  22. Height = 13
  23. Caption = '&Open directory:'
  24. end
  25. object LocalDirectoryEdit: TDirectoryEdit
  26. Left = 8
  27. Top = 25
  28. Width = 362
  29. Height = 21
  30. DialogText = 'Select local directory.'
  31. ClickKey = 16397
  32. Anchors = [akLeft, akTop, akRight]
  33. TabOrder = 1
  34. Text = 'LocalDirectoryEdit'
  35. OnChange = DirectoryEditChange
  36. end
  37. object RemoteDirectoryEdit: TIEComboBox
  38. Left = 8
  39. Top = 25
  40. Width = 362
  41. Height = 21
  42. Anchors = [akLeft, akTop, akRight]
  43. ItemHeight = 13
  44. MaxLength = 1000
  45. TabOrder = 0
  46. Text = 'RemoteDirectoryEdit'
  47. OnChange = DirectoryEditChange
  48. end
  49. object OKBtn: TButton
  50. Left = 204
  51. Top = 274
  52. Width = 75
  53. Height = 25
  54. Anchors = [akRight, akBottom]
  55. Caption = 'OK'
  56. Default = True
  57. ModalResult = 1
  58. TabOrder = 3
  59. end
  60. object CancelBtn: TButton
  61. Left = 292
  62. Top = 274
  63. Width = 75
  64. Height = 25
  65. Anchors = [akRight, akBottom]
  66. Cancel = True
  67. Caption = 'Cancel'
  68. ModalResult = 2
  69. TabOrder = 4
  70. end
  71. object BookmarksGroup: TXPGroupBox
  72. Left = 8
  73. Top = 56
  74. Width = 359
  75. Height = 209
  76. Anchors = [akLeft, akTop, akRight, akBottom]
  77. Caption = 'Bookmarks'
  78. TabOrder = 2
  79. DesignSize = (
  80. 359
  81. 209)
  82. object Label1: TLabel
  83. Left = 16
  84. Top = 22
  85. Width = 83
  86. Height = 13
  87. Caption = 'Select &bookmark:'
  88. FocusControl = BookmarksList
  89. end
  90. object BookmarksList: TListBox
  91. Left = 16
  92. Top = 38
  93. Width = 239
  94. Height = 155
  95. Anchors = [akLeft, akTop, akRight, akBottom]
  96. DragMode = dmAutomatic
  97. ItemHeight = 13
  98. TabOrder = 0
  99. OnClick = BookmarksListClick
  100. OnDblClick = BookmarksListDblClick
  101. OnDragDrop = BookmarksListDragDrop
  102. OnDragOver = BookmarksListDragOver
  103. OnKeyDown = BookmarksListKeyDown
  104. OnStartDrag = BookmarksListStartDrag
  105. end
  106. object AddBookmarkButton: TButton
  107. Left = 262
  108. Top = 38
  109. Width = 83
  110. Height = 25
  111. Anchors = [akTop, akRight]
  112. Caption = '&Add'
  113. TabOrder = 1
  114. OnClick = AddBookmarkButtonClick
  115. end
  116. object RemoveBookmarkButton: TButton
  117. Left = 262
  118. Top = 70
  119. Width = 83
  120. Height = 25
  121. Anchors = [akTop, akRight]
  122. Caption = '&Remove'
  123. TabOrder = 2
  124. OnClick = RemoveBookmarkButtonClick
  125. end
  126. object DownBookmarkButton: TButton
  127. Left = 262
  128. Top = 168
  129. Width = 83
  130. Height = 25
  131. Anchors = [akRight, akBottom]
  132. Caption = '&Down'
  133. TabOrder = 3
  134. OnClick = BookmarkButtonClick
  135. end
  136. object UpBookmarkButton: TButton
  137. Left = 262
  138. Top = 136
  139. Width = 83
  140. Height = 25
  141. Anchors = [akRight, akBottom]
  142. Caption = '&Up'
  143. TabOrder = 4
  144. OnClick = BookmarkButtonClick
  145. end
  146. end
  147. end