CopyLocal.dfm 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. object CopyLocalDialog: TCopyLocalDialog
  2. Left = 0
  3. Top = 0
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_copy_local'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'CopyLocalDialog'
  9. ClientHeight = 121
  10. ClientWidth = 511
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = False
  14. Position = poOwnerFormCenter
  15. OnCloseQuery = FormCloseQuery
  16. OnShow = FormShow
  17. DesignSize = (
  18. 511
  19. 121)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object Image: TImage
  23. Left = 8
  24. Top = 11
  25. Width = 32
  26. Height = 32
  27. AutoSize = True
  28. end
  29. object DirectoryLabel: TLabel
  30. Left = 46
  31. Top = 8
  32. Width = 61
  33. Height = 13
  34. Caption = '&Target path:'
  35. end
  36. object DirectoryEdit: THistoryComboBox
  37. Left = 46
  38. Top = 25
  39. Width = 372
  40. Height = 21
  41. AutoComplete = False
  42. Anchors = [akLeft, akTop, akRight]
  43. DropDownCount = 16
  44. TabOrder = 0
  45. Text = 'DirectoryEdit'
  46. OnExit = DirectoryEditExit
  47. end
  48. object OkButton: TButton
  49. Left = 260
  50. Top = 55
  51. Width = 75
  52. Height = 25
  53. Anchors = [akTop, akRight]
  54. Caption = 'OK'
  55. Default = True
  56. ModalResult = 1
  57. TabOrder = 3
  58. end
  59. object CancelButton: TButton
  60. Left = 343
  61. Top = 55
  62. Width = 75
  63. Height = 25
  64. Anchors = [akTop, akRight]
  65. Cancel = True
  66. Caption = 'Cancel'
  67. ModalResult = 2
  68. TabOrder = 4
  69. end
  70. object LocalDirectoryBrowseButton: TButton
  71. Left = 427
  72. Top = 23
  73. Width = 75
  74. Height = 25
  75. Caption = 'B&rowse...'
  76. TabOrder = 1
  77. OnClick = LocalDirectoryBrowseButtonClick
  78. end
  79. object HelpButton: TButton
  80. Left = 427
  81. Top = 55
  82. Width = 75
  83. Height = 25
  84. Anchors = [akTop, akRight]
  85. Caption = '&Help'
  86. TabOrder = 5
  87. OnClick = HelpButtonClick
  88. end
  89. object NeverShowAgainCheck: TCheckBox
  90. Left = 12
  91. Top = 58
  92. Width = 242
  93. Height = 17
  94. Caption = '&Do not show this dialog box again'
  95. TabOrder = 2
  96. end
  97. object ShortCutHintPanel: TPanel
  98. Left = 0
  99. Top = 87
  100. Width = 511
  101. Height = 34
  102. Align = alBottom
  103. BevelOuter = bvNone
  104. ParentBackground = False
  105. TabOrder = 6
  106. object ShortCutHintLabel: TLabel
  107. Left = 12
  108. Top = 3
  109. Width = 490
  110. Height = 28
  111. AutoSize = False
  112. Caption =
  113. 'In Commander interface the keyboard shortcut F5 is used to trans' +
  114. 'fer files. Should you want to use it to refresh a file panel, cl' +
  115. 'ick here to go to preferences.'
  116. ShowAccelChar = False
  117. WordWrap = True
  118. OnClick = ShortCutHintLabelClick
  119. end
  120. end
  121. end