CopyLocal.dfm 2.7 KB

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