| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- object OpenDirectoryDialog: TOpenDirectoryDialog
- Left = 408
- Top = 195
- BorderStyle = bsDialog
- Caption = 'Open directory'
- ClientHeight = 308
- ClientWidth = 378
- Color = clBtnFace
- ParentFont = True
- OldCreateOrder = True
- Position = poMainFormCenter
- OnShow = FormShow
- DesignSize = (
- 378
- 308)
- PixelsPerInch = 96
- TextHeight = 13
- object EditLabel: TLabel
- Left = 8
- Top = 8
- Width = 72
- Height = 13
- Caption = '&Open directory:'
- end
- object LocalDirectoryEdit: TDirectoryEdit
- Left = 8
- Top = 25
- Width = 362
- Height = 21
- DialogText = 'Select local directory.'
- ClickKey = 16397
- Anchors = [akLeft, akTop, akRight]
- TabOrder = 1
- Text = 'LocalDirectoryEdit'
- OnChange = DirectoryEditChange
- end
- object RemoteDirectoryEdit: TIEComboBox
- Left = 8
- Top = 25
- Width = 362
- Height = 21
- Anchors = [akLeft, akTop, akRight]
- ItemHeight = 13
- MaxLength = 1000
- TabOrder = 0
- Text = 'RemoteDirectoryEdit'
- OnChange = DirectoryEditChange
- end
- object OKBtn: TButton
- Left = 204
- Top = 274
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'OK'
- Default = True
- ModalResult = 1
- TabOrder = 3
- end
- object CancelBtn: TButton
- Left = 292
- Top = 274
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 4
- end
- object BookmarksGroup: TXPGroupBox
- Left = 8
- Top = 56
- Width = 359
- Height = 209
- Anchors = [akLeft, akTop, akRight, akBottom]
- Caption = 'Bookmarks'
- TabOrder = 2
- DesignSize = (
- 359
- 209)
- object Label1: TLabel
- Left = 16
- Top = 22
- Width = 83
- Height = 13
- Caption = 'Select &bookmark:'
- FocusControl = BookmarksList
- end
- object BookmarksList: TListBox
- Left = 16
- Top = 38
- Width = 239
- Height = 155
- Anchors = [akLeft, akTop, akRight, akBottom]
- DragMode = dmAutomatic
- ItemHeight = 13
- TabOrder = 0
- OnClick = BookmarksListClick
- OnDblClick = BookmarksListDblClick
- OnDragDrop = BookmarksListDragDrop
- OnDragOver = BookmarksListDragOver
- OnKeyDown = BookmarksListKeyDown
- OnStartDrag = BookmarksListStartDrag
- end
- object AddBookmarkButton: TButton
- Left = 262
- Top = 38
- Width = 83
- Height = 25
- Anchors = [akTop, akRight]
- Caption = '&Add'
- TabOrder = 1
- OnClick = AddBookmarkButtonClick
- end
- object RemoveBookmarkButton: TButton
- Left = 262
- Top = 70
- Width = 83
- Height = 25
- Anchors = [akTop, akRight]
- Caption = '&Remove'
- TabOrder = 2
- OnClick = RemoveBookmarkButtonClick
- end
- object DownBookmarkButton: TButton
- Left = 262
- Top = 168
- Width = 83
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = '&Down'
- TabOrder = 3
- OnClick = BookmarkButtonClick
- end
- object UpBookmarkButton: TButton
- Left = 262
- Top = 136
- Width = 83
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = '&Up'
- TabOrder = 4
- OnClick = BookmarkButtonClick
- end
- end
- end
|