CustomScpExplorer.h 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878
  1. //---------------------------------------------------------------------------
  2. #ifndef CustomScpExplorerH
  3. #define CustomScpExplorerH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <CustomDirView.hpp>
  10. #include <CustomUnixDirView.hpp>
  11. #include <IEListView.hpp>
  12. #include <NortonLikeListView.hpp>
  13. #include <UnixDirView.h>
  14. #include <ComCtrls.hpp>
  15. #include <ExtCtrls.hpp>
  16. #include <ToolWin.hpp>
  17. #include <WinInterface.h>
  18. #include <WinConfiguration.h>
  19. #include <Terminal.h>
  20. #include <Queue.h>
  21. #include "QueueController.h"
  22. #include "UnixDriveView.h"
  23. #include "CustomDriveView.hpp"
  24. #include "TBX.hpp"
  25. #include "TB2Dock.hpp"
  26. #include "TBXExtItems.hpp"
  27. #include "TBXStatusBars.hpp"
  28. #include "TB2Item.hpp"
  29. #include "TB2Toolbar.hpp"
  30. #include "TBXToolPals.hpp"
  31. #include "PngImageList.hpp"
  32. #include "ThemePageControl.h"
  33. #include "PathLabel.hpp"
  34. #include <Vcl.AppEvnts.hpp>
  35. //---------------------------------------------------------------------------
  36. class TProgressForm;
  37. class TSynchronizeProgressForm;
  38. class TTerminalQueue;
  39. class TTerminalQueueStatus;
  40. class TQueueItem;
  41. class TQueueItemProxy;
  42. class TQueueController;
  43. class TSynchronizeController;
  44. class TEditorManager;
  45. class TEditorData;
  46. class TTransferPresetNoteData;
  47. struct TEditedFileData;
  48. class ITaskbarList3;
  49. struct TSynchronizeParams;
  50. class TBookmark;
  51. class TManagedTerminal;
  52. //---------------------------------------------------------------------------
  53. enum TActionAllowed { aaShortCut, aaUpdate, aaExecute };
  54. enum TActionFlag { afLocal = 1, afRemote = 2, afExplorer = 4 , afCommander = 8 };
  55. enum TExecuteFileBy { efShell = 1, efInternalEditor = 2, efExternalEditor = 3, efDefaultEditor = 100 };
  56. enum TPanelExport { pePath, peFileList, peFullFileList };
  57. enum TPanelExportDestination { pedClipboard, pedCommandLine };
  58. enum TCopyOperationCommandFlag {
  59. cocNone = 0x00, cocShortCutHint = 0x01, cocQueue = 0x02, cocNonQueue = 0x04
  60. };
  61. enum TCustomCommandListType { ccltAll, ccltBoth, ccltNonFile, ccltFile };
  62. const TOperationSide osOther = osRemote;
  63. //---------------------------------------------------------------------------
  64. class TCustomScpExplorerForm : public TForm
  65. {
  66. friend class TAutoBatch;
  67. __published:
  68. TPanel *RemotePanel;
  69. TTBXStatusBar *RemoteStatusBar;
  70. TUnixDirView *RemoteDirView;
  71. TPanel *RemoteDirPanel;
  72. TTBXDock *TopDock;
  73. TListView *QueueView3;
  74. TPanel *QueuePanel;
  75. TSplitter *QueueSplitter;
  76. TTBXToolbar *QueueToolbar;
  77. TTBXDock *QueueDock;
  78. TTBXItem *QueueEnableItem;
  79. TTBXSeparatorItem *TBXSeparatorItem203;
  80. TTBXItem *TBXItem201;
  81. TTBXItem *TBXItem202;
  82. TTBXItem *TBXItem203;
  83. TTBXItem *TBXItem204;
  84. TTBXItem *TBXItem205;
  85. TTBXSeparatorItem *TBXSeparatorItem201;
  86. TTBXItem *TBXItem206;
  87. TTBXItem *TBXItem207;
  88. TTBXSeparatorItem *TBXSeparatorItem202;
  89. TTBXItem *TBXItem208;
  90. TUnixDriveView *RemoteDriveView;
  91. TPanel *RemoteDrivePanel;
  92. TSplitter *RemotePanelSplitter;
  93. TTBXItem *TBXItem194;
  94. TTBXItem *TBXItem195;
  95. TTBXSubmenuItem *TBXSubmenuItem27;
  96. TTBXItem *TBXItem211;
  97. TTBXItem *TBXItem225;
  98. TTBXItem *TBXItem226;
  99. TTabSheet *TabSheet1;
  100. TThemePageControl *SessionsPageControl;
  101. TPathLabel *QueueLabel;
  102. TTBXSeparatorItem *TBXSeparatorItem57;
  103. TTBXItem *QueueDeleteAllDoneQueueToolbarItem;
  104. TTBXItem *TBXItem173;
  105. TApplicationEvents *ApplicationEvents;
  106. TTBXToolbar *ReconnectToolbar;
  107. TTBXItem *TBXItem254;
  108. TSplitter *QueueFileListSplitter;
  109. TListView *QueueFileList;
  110. void __fastcall ApplicationMinimize(TObject * Sender);
  111. void __fastcall ApplicationRestore(TObject * Sender);
  112. void __fastcall RemoteDirViewContextPopup(TObject *Sender,
  113. const TPoint &MousePos, bool &Handled);
  114. void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
  115. void __fastcall RemoteDirViewDisplayProperties(TObject *Sender);
  116. void __fastcall DirViewColumnRightClick(TObject *Sender,
  117. TListColumn *Column, TPoint &Point);
  118. void __fastcall DirViewExecFile(TObject *Sender, TListItem *Item, bool &AllowExec);
  119. void __fastcall ToolBarResize(TObject *Sender);
  120. void __fastcall FileControlDDDragEnter(TObject *Sender,
  121. _di_IDataObject DataObj, int grfKeyState, const TPoint &Point,
  122. int &dwEffect, bool &Accept);
  123. void __fastcall FileControlDDDragLeave(TObject *Sender);
  124. void __fastcall RemoteFileControlDDCreateDragFileList(TObject *Sender,
  125. TFileList *FileList, bool &Created);
  126. void __fastcall RemoteFileControlDDEnd(TObject *Sender);
  127. void __fastcall RemoteFileControlDDCreateDataObject(TObject *Sender,
  128. TDataObject *&DataObject);
  129. void __fastcall RemoteFileControlDDGiveFeedback(TObject *Sender,
  130. int dwEffect, HRESULT &Result);
  131. void __fastcall QueueSplitterCanResize(TObject *Sender, int &NewSize,
  132. bool &Accept);
  133. void __fastcall QueueView3ContextPopup(TObject *Sender, TPoint &MousePos,
  134. bool &Handled);
  135. void __fastcall QueueView3Deletion(TObject *Sender, TListItem *Item);
  136. void __fastcall QueueView3StartDrag(TObject *Sender,
  137. TDragObject *&DragObject);
  138. void __fastcall QueueView3DragOver(TObject *Sender, TObject *Source,
  139. int X, int Y, TDragState State, bool &Accept);
  140. void __fastcall QueueView3DragDrop(TObject *Sender, TObject *Source,
  141. int X, int Y);
  142. void __fastcall QueueView3Enter(TObject *Sender);
  143. void __fastcall QueueView3SelectItem(TObject *Sender, TListItem *Item,
  144. bool Selected);
  145. void __fastcall RemoteFileControlDDFileOperation(
  146. TObject * Sender, int Effect, UnicodeString SourcePath, UnicodeString TargetPath,
  147. bool Paste, bool & DoOperation);
  148. void __fastcall RemoteFileContolDDChooseEffect(TObject * Sender,
  149. int grfKeyState, int & dwEffect);
  150. void __fastcall RemoteFileControlDDDragFileName(TObject * Sender,
  151. TRemoteFile * File, UnicodeString & FileName);
  152. void __fastcall RemoteFileControlDDDragDetect(TObject * Sender,
  153. int grfKeyState, const TPoint & DetectStart, const TPoint & Point,
  154. TDragDetectStatus DragStatus);
  155. void __fastcall RemoteFileControlDDQueryContinueDrag(TObject *Sender,
  156. BOOL FEscapePressed, int grfKeyState, HRESULT &Result);
  157. void __fastcall RemoteDirViewEnter(TObject *Sender);
  158. void __fastcall RemoteDriveViewEnter(TObject *Sender);
  159. void __fastcall DirViewMatchMask(TObject *Sender, UnicodeString FileName,
  160. bool Directory, __int64 Size, TDateTime Modification,
  161. UnicodeString Masks, bool &Matches, bool AllowImplicitMatches);
  162. void __fastcall DirViewGetOverlay(TObject *Sender, TListItem *Item,
  163. WORD &Indexes);
  164. void __fastcall DirViewHistoryChange(TCustomDirView *Sender);
  165. void __fastcall RemoteStatusBarClick(TObject *Sender);
  166. void __fastcall DirViewLoaded(TObject *Sender);
  167. void __fastcall ToolbarGetBaseSize(TTBCustomToolbar * Toolbar, TPoint & ASize);
  168. void __fastcall FormConstrainedResize(TObject * Sender, int & MinWidth,
  169. int &MinHeight, int &MaxWidth, int &MaxHeight);
  170. void __fastcall StatusBarPanelDblClick(TTBXCustomStatusBar * Sender,
  171. TTBXStatusPanel * Panel);
  172. void __fastcall RemotePathComboBoxAdjustImageIndex(
  173. TTBXComboBoxItem * Sender, const UnicodeString AText, int AIndex,
  174. int & ImageIndex);
  175. void __fastcall RemotePathComboBoxDrawItem(TTBXCustomList * Sender,
  176. TCanvas * ACanvas, TRect & ARect, int AIndex, int AHoverIndex,
  177. bool & DrawDefault);
  178. void __fastcall RemotePathComboBoxMeasureWidth(TTBXCustomList * Sender,
  179. TCanvas * ACanvas, int AIndex, int & AWidth);
  180. void __fastcall RemotePathComboBoxItemClick(TObject * Sender);
  181. void __fastcall RemotePathComboBoxCancel(TObject * Sender);
  182. void __fastcall DirViewEditing(TObject *Sender, TListItem *Item,
  183. bool &AllowEdit);
  184. void __fastcall FormShow(TObject *Sender);
  185. void __fastcall SessionsPageControlChange(TObject *Sender);
  186. void __fastcall SessionsPageControlMouseDown(TObject *Sender, TMouseButton Button,
  187. TShiftState Shift, int X, int Y);
  188. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  189. void __fastcall RemoteDirViewRead(TObject *Sender);
  190. void __fastcall DirViewSelectItem(TObject *Sender, TListItem *Item, bool Selected);
  191. void __fastcall SessionsPageControlDragDrop(TObject *Sender, TObject *Source, int X,
  192. int Y);
  193. void __fastcall SessionsPageControlDragOver(TObject *Sender, TObject *Source, int X,
  194. int Y, TDragState State, bool &Accept);
  195. void __fastcall QueueView3Exit(TObject *Sender);
  196. void __fastcall EditMenuItemPopup(TTBCustomItem *Sender, bool FromLink);
  197. void __fastcall DirViewBusy(TObject *Sender, int Busy, bool & Allow);
  198. void __fastcall SessionsPageControlContextPopup(TObject *Sender, TPoint &MousePos, bool &Handled);
  199. void __fastcall DockContextPopup(TObject *Sender, TPoint &MousePos, bool &Handled);
  200. void __fastcall SessionsPageControlCloseButtonClick(TPageControl *Sender, int Index);
  201. void __fastcall DirViewGetItemColor(
  202. TObject * Sender, UnicodeString FileName, bool Directory, __int64 Size, TDateTime Modification, TColor & Color);
  203. void __fastcall DirViewExit(TObject *Sender);
  204. void __fastcall DirViewKeyDown(TObject *Sender, WORD &Key, TShiftState Shift);
  205. void __fastcall DirViewKeyPress(TObject *Sender, System::WideChar &Key);
  206. void __fastcall ApplicationEventsDeactivate(TObject *Sender);
  207. void __fastcall ApplicationEventsModalBegin(TObject *Sender);
  208. void __fastcall DirViewChangeFocus(TObject *Sender, TListItem *Item);
  209. void __fastcall RemoteStatusBarMouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift, int X, int Y);
  210. void __fastcall RemoteDirViewResize(TObject *Sender);
  211. void __fastcall QueueFileListSplitterCanResize(TObject *Sender, int &NewSize, bool &Accept);
  212. void __fastcall QueueView3Change(TObject *Sender, TListItem *Item, TItemChange Change);
  213. void __fastcall QueueLabelGetStatus(TCustomPathLabel *Sender, bool &Active);
  214. void __fastcall QueueFileListEnterExit(TObject *Sender);
  215. void __fastcall QueueFileListData(TObject *Sender, TListItem *Item);
  216. void __fastcall QueueFileListCustomDrawItem(TCustomListView *Sender, TListItem *Item, TCustomDrawState State, bool &DefaultDraw);
  217. void __fastcall QueueFileListResize(TObject *Sender);
  218. private:
  219. TManagedTerminal * FTerminal;
  220. TTerminalQueue * FQueue;
  221. TTerminalQueueStatus * FQueueStatus;
  222. TCriticalSection * FQueueStatusSection;
  223. bool FQueueStatusInvalidated;
  224. bool FQueueItemInvalidated;
  225. bool FQueueStatusUpdating;
  226. bool FFormRestored;
  227. bool FAutoOperation;
  228. TFileOperationFinishedEvent FOnFileOperationFinished;
  229. bool FForceExecution;
  230. unsigned short FIgnoreNextDialogChar;
  231. TStringList * FErrorList;
  232. HANDLE FDDExtMutex;
  233. UnicodeString FDragFakeDirectory;
  234. TObjectList * FDragFakeMonitors;
  235. UnicodeString FClipboardFakeDirectory;
  236. std::unique_ptr<TObjectList> FClipboardFakeMonitors;
  237. std::unique_ptr<TDragDropFilesEx> FClipboardDragDropFilesEx;
  238. TManagedTerminal * FClipboardTerminal;
  239. std::unique_ptr<TStrings> FClipboardFileList;
  240. TStrings * FDelayedDeletionList;
  241. TTimer * FDelayedDeletionTimer;
  242. TStrings * FDDFileList;
  243. __int64 FDDTotalSize;
  244. std::unique_ptr<ExtException> FDragDropSshTerminate;
  245. HINSTANCE FOle32Library;
  246. HCURSOR FDragMoveCursor;
  247. UnicodeString FDragTempDir;
  248. bool FRefreshLocalDirectory;
  249. bool FRefreshRemoteDirectory;
  250. TListItem * FQueueActedItem;
  251. TQueueController * FQueueController;
  252. int FLastDropEffect;
  253. bool FPendingTempSpaceWarn;
  254. TEditorManager * FEditorManager;
  255. TList * FLocalEditors;
  256. TStrings * FCapturedLog;
  257. bool FDragDropOperation;
  258. UnicodeString FCopyParamDefault;
  259. UnicodeString FCopyParamAutoSelected;
  260. bool FEditingFocusedAdHocCommand;
  261. TList * FDocks;
  262. TSynchronizeController * FSynchronizeController;
  263. UnicodeString FTransferDropDownHint;
  264. int FTransferListHoverIndex;
  265. TColor FSessionColor;
  266. TPngImageList * FSessionColors;
  267. int FNewSessionTabImageIndex;
  268. int FSessionTabImageIndex;
  269. int FSessionColorMaskImageIndex;
  270. ::TTrayIcon * FTrayIcon;
  271. TCustomCommandType FLastCustomCommand;
  272. TFileMasks FDirViewMatchMask;
  273. TTBXPopupMenu * FCustomCommandMenu;
  274. TStrings * FCustomCommandLocalFileList;
  275. TStrings * FCustomCommandRemoteFileList;
  276. ITaskbarList3 * FTaskbarList;
  277. bool FShowing;
  278. int FMaxQueueLength;
  279. TDateTime FSessionsPageControlNewSessionTime;
  280. bool FAppIdle;
  281. typedef std::set<TTBCustomItem *> TItemsWithTextDisplayMode;
  282. TItemsWithTextDisplayMode FItemsWithTextDisplayMode;
  283. HWND FHiddenWindow;
  284. TStrings * FTransferResumeList;
  285. bool FMoveToQueue;
  286. bool FStandaloneEditing;
  287. TFeedSynchronizeError FOnFeedSynchronizeError;
  288. bool FNeedSession;
  289. TTerminal * FFileFindTerminal;
  290. UnicodeString FFileColorsCurrent;
  291. bool FInvalid;
  292. std::auto_ptr<TQueueFileList> FQueueFileList;
  293. bool FStarted;
  294. bool __fastcall GetEnableFocusedOperation(TOperationSide Side, int FilesOnly);
  295. bool __fastcall GetEnableSelectedOperation(TOperationSide Side, int FilesOnly);
  296. void __fastcall SetTerminal(TManagedTerminal * value);
  297. void __fastcall DoSetTerminal(TManagedTerminal * value, bool Replace);
  298. void __fastcall SetQueue(TTerminalQueue * value);
  299. void __fastcall TransferListChange(TObject * Sender);
  300. void __fastcall TransferListDrawItem(TTBXCustomList * Sender, TCanvas * ACanvas,
  301. const TRect & ARect, int AIndex, int AHoverIndex, bool & DrawDefault);
  302. void __fastcall CloseInternalEditor(TObject * Sender);
  303. void __fastcall ForceCloseInternalEditor(TObject * Sender);
  304. void __fastcall ForceCloseLocalEditors();
  305. void __fastcall TerminalCaptureLog(const UnicodeString & AddedLine, TCaptureOutputType OutputType);
  306. void __fastcall HistoryItemClick(System::TObject* Sender);
  307. void __fastcall UpdateHistoryMenu(TOperationSide Side, bool Back);
  308. void __fastcall AdHocCustomCommandValidate(const TCustomCommandType & Command);
  309. void __fastcall SetDockAllowDrag(bool value);
  310. void __fastcall QueueSplitterDblClick(TObject * Sender);
  311. void __fastcall QueueFileListSplitterDblClick(TObject * Sender);
  312. void __fastcall AddQueueItem(TTerminalQueue * Queue, TTransferDirection Direction,
  313. TStrings * FileList, const UnicodeString TargetDirectory,
  314. const TGUICopyParamType & CopyParam, int Params);
  315. void __fastcall AddQueueItem(TTerminalQueue * Queue, TQueueItem * QueueItem, TManagedTerminal * Terminal);
  316. void __fastcall ClearTransferSourceSelection(TTransferDirection Direction);
  317. void __fastcall SessionsDDDragOver(int KeyState, const TPoint & Point, int & Effect, int PreferredEffect);
  318. void __fastcall SessionsDDProcessDropped(TObject * Sender, int KeyState, const TPoint & Point, int Effect);
  319. void __fastcall RemoteFileControlDragDropFileOperation(
  320. TObject * Sender, int Effect, UnicodeString TargetPath, bool ForceQueue, bool Paste);
  321. void __fastcall SessionsDDDragEnter(_di_IDataObject DataObj, int KeyState,
  322. const TPoint & Point, int & Effect, bool & Accept);
  323. void __fastcall SessionsDDDragLeave();
  324. void __fastcall QueueDDProcessDropped(TObject * Sender, int KeyState, const TPoint & Point, int Effect);
  325. void __fastcall QueueDDDragEnter(_di_IDataObject DataObj, int KeyState,
  326. const TPoint & Point, int & Effect, bool & Accept);
  327. void __fastcall QueueDDDragLeave();
  328. void __fastcall EnableDDTransferConfirmation(TObject * Sender);
  329. void __fastcall CollectItemsWithTextDisplayMode(TWinControl * Control);
  330. void __fastcall CreateHiddenWindow();
  331. bool __fastcall IsQueueAutoPopup();
  332. void __fastcall UpdateSessionsPageControlHeight();
  333. TDragDropFilesEx * __fastcall CreateDragDropFilesEx();
  334. void __fastcall KeyProcessed(Word & Key, TShiftState Shift);
  335. void __fastcall CheckCustomCommandShortCut(TCustomCommandList * List, Word & Key, Classes::TShiftState Shift, TShortCut KeyShortCut);
  336. void __fastcall CMShowingChanged(TMessage & Message);
  337. void __fastcall WMClose(TMessage & Message);
  338. void __fastcall CMDpiChanged(TMessage & Message);
  339. void __fastcall WMDpiChanged(TMessage & Message);
  340. void __fastcall DoBookmarkClick(TOperationSide Side, TObject * Sender);
  341. void __fastcall LocalBookmarkClick(TObject * Sender);
  342. void __fastcall RemoteBookmarkClick(TObject * Sender);
  343. void __fastcall InitControls();
  344. void __fastcall UpdateQueueFileList();
  345. void __fastcall QueueFileListColumnAutoSize();
  346. void __fastcall AdjustQueueLayout();
  347. protected:
  348. TOperationSide FCurrentSide;
  349. bool FEverShown;
  350. TControl * FDDTargetControl;
  351. TProgressForm * FProgressForm;
  352. TSynchronizeProgressForm * FSynchronizeProgressForm;
  353. HANDLE FDDExtMapFile;
  354. TTimer * FUserActionTimer;
  355. TQueueItemProxy * FPendingQueueActionItem;
  356. TTBXPopupMenu * FHistoryMenu[2][2];
  357. bool FAllowTransferPresetAutoSelect;
  358. TStrings * FNotes;
  359. TTimer * FNoteTimer;
  360. TDateTime FNoteShown;
  361. UnicodeString FNote;
  362. TObject * FNoteData;
  363. UnicodeString FNoteHints;
  364. TNotifyEvent FOnNoteClick;
  365. unsigned int FLockLevel;
  366. unsigned int FLockSuspendLevel;
  367. bool FDisabledOnLockSuspend;
  368. bool FAlternativeDelete;
  369. TDragDropFilesEx * FSessionsDragDropFilesEx;
  370. TDragDropFilesEx * FQueueDragDropFilesEx;
  371. TPoint FLastContextPopupScreenPoint;
  372. int FDoNotIdleCurrentTerminal;
  373. UnicodeString FFakeFileDropTarget;
  374. TFileColorData::TList FFileColors;
  375. UnicodeString FIncrementalSearch;
  376. int FIncrementalSearching;
  377. bool FIncrementalSearchHaveNext;
  378. TOperationSide FProgressSide;
  379. virtual bool __fastcall CopyParamDialog(TTransferDirection Direction,
  380. TTransferType Type, bool Temp, TStrings * FileList,
  381. UnicodeString & TargetDirectory, TGUICopyParamType & CopyParam, bool Confirm,
  382. bool DragDrop, int Options);
  383. virtual void __fastcall CopyParamDialogAfter(TTransferDirection Direction, bool Temp, const UnicodeString & TargetDirectory);
  384. virtual bool __fastcall RemoteTransferDialog(TManagedTerminal *& Session,
  385. TStrings * FileList, UnicodeString & Target, UnicodeString & FileMask, bool & DirectCopy,
  386. bool NoConfirmation, bool Move);
  387. virtual void __fastcall CreateParams(TCreateParams & Params);
  388. void __fastcall DeleteFiles(TOperationSide Side, TStrings * FileList, bool Alternative);
  389. bool __fastcall RemoteTransferFiles(TStrings * FileList, bool NoConfirmation,
  390. bool Move, TManagedTerminal * Session);
  391. virtual void __fastcall DoDirViewExecFile(TObject * Sender, TListItem * Item, bool & AllowExec);
  392. virtual TControl * __fastcall GetComponent(Byte Component);
  393. bool __fastcall GetComponentVisible(Byte Component);
  394. virtual Boolean __fastcall GetHasDirView(TOperationSide Side);
  395. virtual TCustomDriveView * __fastcall DriveView(TOperationSide Side);
  396. virtual TCustomDirView * GetCurrentLocalBrowser();
  397. DYNAMIC void __fastcall KeyDown(Word & Key, Classes::TShiftState Shift);
  398. virtual void __fastcall RestoreFormParams();
  399. virtual void __fastcall RestoreParams();
  400. virtual void __fastcall SetComponentVisible(Byte Component, bool value);
  401. virtual void __fastcall ComponentShowing(Byte Component, bool value);
  402. virtual void __fastcall FixControlsPlacement();
  403. bool __fastcall SetProperties(TOperationSide Side, TStrings * FileList);
  404. void __fastcall CustomCommand(TStrings * FileList,
  405. const TCustomCommandType & Command, TStrings * ALocalFileList);
  406. void __fastcall RemoteCustomCommand(
  407. TStrings * FileList, const TCustomCommandType & ACommand,
  408. const TCustomCommandData & Data, const UnicodeString & CommandCommand);
  409. void __fastcall LocalCustomCommandPure(
  410. TStrings * FileList, const TCustomCommandType & ACommand, const UnicodeString & Command, TStrings * ALocalFileList,
  411. const TCustomCommandData & Data, bool LocalFileCommand, bool FileListCommand, UnicodeString * POutput);
  412. void __fastcall LocalCustomCommandWithLocalFiles(
  413. const TCustomCommandType & ACommand, const UnicodeString & Command, const TCustomCommandData & Data,
  414. bool FileListCommand, UnicodeString * POutput);
  415. void __fastcall LocalCustomCommand(TStrings * FileList,
  416. const TCustomCommandType & ACommand, TStrings * ALocalFileList,
  417. const TCustomCommandData & Data, const UnicodeString & CommandCommand);
  418. virtual void __fastcall TerminalChanging();
  419. virtual void __fastcall TerminalChanged(bool Replaced);
  420. virtual void __fastcall QueueChanged();
  421. void __fastcall InitStatusBar();
  422. void __fastcall UpdateStatusBar();
  423. virtual void __fastcall UpdateStatusPanelText(TTBXStatusPanel * Panel);
  424. virtual void __fastcall DoOperationFinished(TFileOperation Operation,
  425. TOperationSide Side, bool Temp, const UnicodeString & FileName, bool Success,
  426. TOnceDoneOperation & OnceDoneOperation);
  427. virtual void __fastcall DoOpenDirectoryDialog(TOpenDirectoryMode Mode, TOperationSide Side);
  428. void __fastcall CreateProgressForm(TSynchronizeProgress * SynchronizeProgress);
  429. void __fastcall DestroyProgressForm();
  430. virtual void __fastcall FileOperationProgress(TFileOperationProgressType & ProgressData);
  431. void __fastcall OperationComplete(const TDateTime & StartTime);
  432. void __fastcall ExecutedFileChanged(const UnicodeString FileName,
  433. TEditedFileData * Data, HANDLE UploadCompleteEvent);
  434. void __fastcall ExecutedFileReload(const UnicodeString FileName,
  435. const TEditedFileData * Data);
  436. void __fastcall ExecutedFileEarlyClosed(const TEditedFileData * Data,
  437. bool & KeepOpen);
  438. void __fastcall ExecutedFileUploadComplete(TObject * Sender);
  439. void __fastcall CMDialogChar(TMessage & AMessage);
  440. inline void __fastcall WMAppCommand(TMessage & Message);
  441. inline void __fastcall WMSysCommand(TMessage & Message);
  442. void __fastcall WMQueryEndSession(TMessage & Message);
  443. void __fastcall WMEndSession(TWMEndSession & Message);
  444. #ifdef _DEBUG
  445. inline void __fastcall WMWindowPosChanged(TWMWindowPosMsg & Message);
  446. #endif
  447. void __fastcall WMCopyData(TMessage & Message);
  448. virtual void __fastcall SysResizing(unsigned int Cmd);
  449. DYNAMIC void __fastcall DoShow();
  450. TStrings * __fastcall CreateVisitedDirectories(TOperationSide Side);
  451. void __fastcall HandleErrorList(TStringList *& ErrorList);
  452. void __fastcall TerminalSynchronizeDirectory(
  453. const UnicodeString & LocalDirectory, const UnicodeString & RemoteDirectory,
  454. bool & Continue, bool Collect, const TSynchronizeOptions * Options);
  455. void __fastcall DoSynchronize(TSynchronizeController * Sender,
  456. const UnicodeString LocalDirectory, const UnicodeString RemoteDirectory,
  457. const TCopyParamType & CopyParam, const TSynchronizeParamType & Params,
  458. TSynchronizeChecklist ** Checklist, TSynchronizeOptions * Options, bool Full);
  459. void __fastcall DoSynchronizeInvalid(TSynchronizeController * Sender,
  460. const UnicodeString Directory, const UnicodeString ErrorStr);
  461. void __fastcall DoSynchronizeTooManyDirectories(TSynchronizeController * Sender,
  462. int & MaxDirectories);
  463. void __fastcall Synchronize(const UnicodeString LocalDirectory,
  464. const UnicodeString RemoteDirectory, TSynchronizeMode Mode,
  465. const TCopyParamType & CopyParam, int Params, TSynchronizeChecklist ** Checklist,
  466. TSynchronizeOptions * Options);
  467. void __fastcall SynchronizeSessionLog(const UnicodeString & Message);
  468. void __fastcall GetSynchronizeOptions(int Params, TSynchronizeOptions & Options);
  469. UnicodeString __fastcall SerializeCopyParamForCommandLine(const TCopyParamType * CopyParams);
  470. void __fastcall SynchronizeInNewWindow(const TSynchronizeParamType & Params, const TCopyParamType * CopyParams);
  471. void __fastcall FullSynchronizeInNewWindow(
  472. TSynchronizeMode Mode, int Params, const UnicodeString & LocalDirectory, const UnicodeString & RemoteDirectory,
  473. const TCopyParamType * CopyParams);
  474. bool __fastcall SynchronizeAllowSelectedOnly();
  475. virtual void __fastcall BatchStart(void *& Storage);
  476. virtual void __fastcall BatchEnd(void * Storage);
  477. bool __fastcall ExecuteFileOperation(TFileOperation Operation, TOperationSide Side,
  478. TStrings * FileList, bool NoConfirmation, void * Param);
  479. bool __fastcall ExecuteCopyMoveFileOperation(
  480. TFileOperation Operation, TOperationSide Side, TStrings * FileList, bool NoConfirmation, void * Param);
  481. bool __fastcall ExecuteDeleteFileOperation(TOperationSide Side, TStrings * FileList, void * Param);
  482. virtual bool __fastcall DDGetTarget(UnicodeString & Directory,
  483. bool & ForceQueue, UnicodeString & CounterName);
  484. virtual void __fastcall DDFakeFileInitDrag(TFileList * FileList, bool & Created);
  485. UnicodeString __fastcall CreateFakeTransferDirectory();
  486. void __fastcall DDFakeCreated(TObject * Sender, const UnicodeString FileName);
  487. void __fastcall ClipboardFakeCreated(TObject * Sender, const UnicodeString FileName);
  488. void __fastcall ClipboardDataObjectRelease(TObject * Sender);
  489. virtual void __fastcall SideEnter(TOperationSide Side);
  490. virtual TOperationSide __fastcall GetSide(TOperationSide Side);
  491. TStrings * __fastcall PanelExport(TOperationSide Side, TPanelExport Export);
  492. virtual void __fastcall PanelExportStore(TOperationSide Side,
  493. TPanelExport Export, TPanelExportDestination Destination,
  494. TStrings * ExportData);
  495. void __fastcall GenerateUrl(TStrings * Paths);
  496. void __fastcall QueueListUpdate(TTerminalQueue * Queue);
  497. void __fastcall QueueItemUpdate(TTerminalQueue * Queue, TQueueItem * Item);
  498. void __fastcall UpdateQueueStatus(bool QueueChanging);
  499. bool IsAnythingQueued();
  500. void __fastcall RefreshQueueItems();
  501. virtual int __fastcall GetStaticComponentsHeight();
  502. void __fastcall FillQueueViewItem(TListItem * Item,
  503. TQueueItemProxy * QueueItem, bool Detail);
  504. void __fastcall QueueViewDeleteItem(int Index);
  505. void __fastcall UserActionTimer(TObject * Sender);
  506. void __fastcall UpdateQueueView();
  507. bool __fastcall CanCloseQueue(TTerminalQueue * Queue);
  508. bool __fastcall CanCloseQueue();
  509. virtual bool __fastcall IsFileControl(TObject * Control, TOperationSide Side);
  510. virtual void __fastcall ReloadLocalDirectory(const UnicodeString Directory = L"");
  511. virtual bool __fastcall PanelOperation(TOperationSide Side, bool DragDrop);
  512. void __fastcall DoWarnLackOfTempSpace(const UnicodeString Path,
  513. __int64 RequiredSpace, bool & Continue);
  514. void __fastcall AddDelayedDirectoryDeletion(const UnicodeString TempDir, int SecDelay);
  515. void __fastcall DoDelayedDeletion(TObject * Sender);
  516. TDragDropFilesEx * __fastcall DragDropFiles(TObject * Sender);
  517. void __fastcall RemoteFileControlDDTargetDrop();
  518. bool __fastcall RemoteFileControlFileOperation(TObject * Sender,
  519. TFileOperation Operation, bool NoConfirmation, void * Param);
  520. void __fastcall DDDownload(
  521. TStrings * FilesToCopy, const UnicodeString & TargetDir, const TCopyParamType * CopyParam, int Params);
  522. bool __fastcall EnsureCommandSessionFallback(TFSCapability Capability);
  523. bool __fastcall CommandSessionFallback();
  524. void __fastcall FileTerminalRemoved(const UnicodeString FileName,
  525. TEditedFileData * Data, TObject * Token, void * Arg);
  526. void __fastcall FileConfigurationChanged(const UnicodeString FileName,
  527. TEditedFileData * Data, TObject * Token, void * Arg);
  528. void __fastcall CustomExecuteFile(TOperationSide Side,
  529. TExecuteFileBy ExecuteFileBy, UnicodeString FileName, UnicodeString OriginalFileName,
  530. const TEditorData * ExternalEditor, UnicodeString LocalRootDirectory,
  531. UnicodeString RemoteDirectory, bool NewFile);
  532. void __fastcall ExecuteFile(TOperationSide Side,
  533. TExecuteFileBy ExecuteFileBy, const TEditorData * ExternalEditor,
  534. UnicodeString FullFileName, TObject * Object,
  535. const TFileMasks::TParams & MaskParams);
  536. bool __fastcall RemoteExecuteForceText(TExecuteFileBy ExecuteFileBy,
  537. const TEditorData * ExternalEditor);
  538. void __fastcall ExecuteFileNormalize(TExecuteFileBy & ExecuteFileBy,
  539. const TEditorData *& ExternalEditor, const UnicodeString & FileName,
  540. bool Local, const TFileMasks::TParams & MaskParams);
  541. void __fastcall ExecuteRemoteFile(
  542. const UnicodeString & FullFileName, TRemoteFile * File, TExecuteFileBy ExecuteFileBy);
  543. void __fastcall TemporaryFileCopyParam(TCopyParamType & CopyParam);
  544. void __fastcall TemporaryDirectoryForRemoteFiles(
  545. UnicodeString RemoteDirectory, TCopyParamType CopyParam,
  546. UnicodeString & Result, UnicodeString & RootDirectory);
  547. void __fastcall TemporarilyDownloadFiles(TStrings * FileList, bool ForceText,
  548. UnicodeString & RootTempDir, UnicodeString & TempDir, bool AllFiles, bool GetTargetNames,
  549. bool AutoOperation);
  550. void __fastcall LocalEditorClosed(TObject * Sender, bool Forced);
  551. TTBXPopupMenu * __fastcall HistoryMenu(TOperationSide Side, bool Back);
  552. UnicodeString __fastcall FileStatusBarText(const TStatusFileInfo & FileInfo, TOperationSide Side);
  553. void __fastcall UpdateFileStatusBar(TTBXStatusBar * StatusBar,
  554. const TStatusFileInfo & FileInfo, TOperationSide Side);
  555. void __fastcall UpdateFileStatusExtendedPanels(
  556. TTBXStatusBar * StatusBar, const TStatusFileInfo & FileInfo);
  557. void __fastcall FileStatusBarPanelClick(TTBXStatusPanel * Panel, TOperationSide Side);
  558. virtual void __fastcall DoDirViewLoaded(TCustomDirView * Sender);
  559. virtual void __fastcall UpdateControls();
  560. void __fastcall UpdateTransferList();
  561. void __fastcall UpdateTransferLabel();
  562. void __fastcall StartUpdates();
  563. void __fastcall TransferPresetAutoSelect();
  564. virtual void __fastcall GetTransferPresetAutoSelectData(TCopyParamRuleData & Data);
  565. inline bool __fastcall CustomCommandRemoteAllowed();
  566. void __fastcall CustomCommandMenu(
  567. TAction * Action, TStrings * LocalFileList, TStrings * RemoteFileList);
  568. void __fastcall LoadToolbarsLayoutStr(UnicodeString LayoutStr, UnicodeString ButtonsStr);
  569. UnicodeString __fastcall GetToolbarItemName(TTBCustomItem * Item);
  570. UnicodeString __fastcall GetToolbarsLayoutStr();
  571. UnicodeString __fastcall GetToolbarsButtonsStr();
  572. virtual void __fastcall Dispatch(void * Message);
  573. void __fastcall PostComponentHide(Byte Component);
  574. void __fastcall GetSpaceAvailable(const UnicodeString Path,
  575. TSpaceAvailable & ASpaceAvailable, bool & Close);
  576. void __fastcall CalculateSize(TStrings * FileList, __int64 & Size,
  577. TCalculateSizeStats & Stats, bool & Close);
  578. void __fastcall CalculateChecksum(const UnicodeString & Alg, TStrings * FileList,
  579. TCalculatedChecksumEvent OnCalculatedChecksum, bool & Close);
  580. void __fastcall UpdateCustomCommandsToolbar();
  581. virtual void __fastcall UpdateActions();
  582. void __fastcall UpdateSessionColor(TColor value);
  583. void __fastcall SetSessionColor(TColor value);
  584. void __fastcall NoteTimer(TObject * Sender);
  585. void __fastcall AddNote(UnicodeString Note, bool UpdateNow = true);
  586. void __fastcall PostNote(UnicodeString Note, unsigned int Seconds,
  587. TNotifyEvent OnNoteClick, TObject * NoteData);
  588. bool __fastcall CancelNote(bool Force);
  589. void __fastcall UpdateNoteHints();
  590. void __fastcall UpdatesChecked();
  591. void __fastcall UpdatesNoteClicked(TObject * Sender);
  592. void __fastcall TransferPresetNoteClicked(TObject * Sender);
  593. void __fastcall TransferPresetNoteMessage(TTransferPresetNoteData * NoteData,
  594. bool AllowNeverAskAgain);
  595. void __fastcall UpdateTrayIcon();
  596. void __fastcall TrayIconClick(TObject * Sender);
  597. void __fastcall Notify(TTerminal * Terminal, UnicodeString Message,
  598. TQueryType Type, bool Important = false, TNotifyEvent OnClick = NULL,
  599. TObject * UserData = NULL, Exception * E = NULL);
  600. virtual void __fastcall UpdateSessionData(TSessionData * Data);
  601. virtual void __fastcall UpdateRemotePathComboBox(bool TextOnly);
  602. virtual void __fastcall ToolbarItemResize(TTBXCustomDropDownItem * Item, int Width);
  603. virtual void __fastcall CreateWnd();
  604. virtual void __fastcall DestroyWnd();
  605. virtual bool __fastcall OpenBookmark(TOperationSide Side, TBookmark * Bookmark);
  606. void __fastcall DoFindFiles(TTerminal * Terminal, UnicodeString Directory, const TFileMasks & FileMask,
  607. TFileFoundEvent OnFileFound, TFindingFileEvent OnFindingFile);
  608. virtual void __fastcall DoFocusRemotePath(TTerminal * Terminal, const UnicodeString & Path);
  609. bool __fastcall CanOperateOnFoundFiles(TTerminal * ATerminal);
  610. void __fastcall DoOperationOnFoundFiles(
  611. TFileOperation Operation, TTerminal * ATerminal, TStrings * FileList, TFileOperationFinishedEvent OnFileOperationFinished);
  612. void __fastcall DoDeleteFoundFiles(TTerminal * Terminal, TStrings * FileList, TFileOperationFinishedEvent OnFileOperationFinished);
  613. void __fastcall DoDownloadFoundFiles(TTerminal * ATerminal, TStrings * FileList, TFileOperationFinishedEvent OnFileOperationFinished);
  614. void __fastcall DoEditFoundFiles(TTerminal * ATerminal, TStrings * FileList, TFileOperationFinishedEvent OnFileOperationFinished);
  615. bool __fastcall ExecuteFileOperation(TFileOperation Operation, TOperationSide Side,
  616. bool OnFocused, bool NoConfirmation = false, void * Param = NULL);
  617. void __fastcall UpdateCopyParamCounters(const TCopyParamType & CopyParam);
  618. int __fastcall AddSessionColor(TColor Color);
  619. void __fastcall UpdateSessionTab(TTabSheet * TabSheet);
  620. void __fastcall UpdateNewSessionTab();
  621. void __fastcall AddFixedSessionImages();
  622. int __fastcall AddFixedSessionImage(int GlyphsSourceIndex);
  623. TObjectList * __fastcall DoCollectWorkspace();
  624. void __fastcall DoSaveWorkspace(const UnicodeString & Name,
  625. TObjectList * DataList, bool SavePasswords, bool Explicit);
  626. UnicodeString __fastcall WorkspaceName();
  627. virtual bool __fastcall EligibleForImageDisplayMode(TTBCustomItem * Item);
  628. virtual bool __fastcall UpdateToolbarDisplayMode();
  629. virtual void __fastcall QueueLabelUpdateStatus();
  630. void __fastcall EditorAutoConfig();
  631. void __fastcall DirViewContextPopupDefaultItem(
  632. TOperationSide Side, TTBXCustomItem * Item, TDoubleClickAction DoubleClickAction);
  633. void __fastcall DirViewContextPopup(
  634. TOperationSide Side, Byte PopupComponent, const TPoint & MousePos);
  635. bool __fastcall CommandLineFromAnotherInstance(const UnicodeString & CommandLine);
  636. bool __fastcall CanCommandLineFromAnotherInstance();
  637. void __fastcall SetQueueProgress();
  638. void __fastcall UpdateQueueLabel();
  639. void __fastcall SetTaskbarListProgressState(TBPFLAG Flags);
  640. void __fastcall SetTaskbarListProgressValue(int Progress);
  641. void __fastcall SetTaskbarListProgressValue(TFileOperationProgressType * ProgressData);
  642. TManagedTerminal * __fastcall GetSessionTabTerminal(TTabSheet * TabSheet);
  643. bool __fastcall SessionTabSwitched();
  644. void __fastcall RestoreApp();
  645. void __fastcall GoToQueue();
  646. virtual UnicodeString __fastcall DefaultDownloadTargetDirectory() = 0;
  647. void __fastcall LockFiles(TStrings * FileList, bool Lock);
  648. void __fastcall SaveInternalEditor(
  649. const UnicodeString FileName, TEditedFileData * Data, TObject * Token,
  650. void * Arg);
  651. void __fastcall SaveAllInternalEditors(TObject * Sender);
  652. void __fastcall InternalEditorModified(
  653. const UnicodeString FileName, TEditedFileData * Data, TObject * Token,
  654. void * Arg);
  655. void __fastcall AnyInternalEditorModified(TObject * Sender, bool & Modified);
  656. virtual void __fastcall StartingDisconnected();
  657. void __fastcall DoTerminalListChanged();
  658. void __fastcall NeedSession(bool Startup);
  659. bool __fastcall DraggingAllFilesFromDirView(TOperationSide Side, TStrings * FileList);
  660. bool __fastcall SelectedAllFilesInDirView(TCustomDirView * DView);
  661. TSessionData * __fastcall SessionDataForCode();
  662. void __fastcall RefreshPanel(const UnicodeString & Session, const UnicodeString & Path);
  663. DYNAMIC void __fastcall ChangeScale(int M, int D);
  664. virtual void __fastcall UpdateImages();
  665. void __fastcall UpdatePixelsPerInchMainWindowCounter();
  666. void __fastcall CopyPopup(TControl * DestControl, TControl * SourceControl);
  667. void __fastcall CreateRemoteDirectory(const UnicodeString & Path, TRemoteProperties & Properties);
  668. void __fastcall DoFullSynchronize(
  669. void * Token, TProcessedSynchronizationChecklistItem OnProcessedItem,
  670. TUpdatedSynchronizationChecklistItems OnUpdatedSynchronizationChecklistItems);
  671. void __fastcall DoSynchronizeChecklistCalculateSize(
  672. TSynchronizeChecklist * Checklist, const TSynchronizeChecklist::TItemList & Items, void * Token);
  673. void __fastcall DoSynchronizeMove(
  674. TOperationSide Side, const UnicodeString & FileName, const UnicodeString & NewFileName, TRemoteFile * RemoteFile);
  675. void __fastcall DoSynchronizeBrowse(TOperationSide Side, TSynchronizeChecklist::TAction Action, const TSynchronizeChecklist::TItem * Item);
  676. void __fastcall FullSynchronize(
  677. TSynchronizeParams & Params, TProcessedSynchronizationChecklistItem OnProcessedItem,
  678. TUpdatedSynchronizationChecklistItems OnUpdatedSynchronizationChecklistItems);
  679. void __fastcall SynchronizeProcessedItem(void * Token, const TSynchronizeChecklist::TItem * ChecklistItem);
  680. void __fastcall CreateOpenDirMenuList(TTBCustomItem * Menu, TOperationSide Side, TBookmarkList * BookmarkList);
  681. void __fastcall CreateOpenDirMenu(TTBCustomItem * Menu, TOperationSide Side);
  682. bool __fastcall TryOpenDirectory(TOperationSide Side, const UnicodeString & Path);
  683. void __fastcall ClipboardStop();
  684. void __fastcall ClipboardClear();
  685. void __fastcall ClipboardDownload(const UnicodeString & TargetDirectory, bool NoConfirmation, bool DragDrop);
  686. bool __fastcall DoesClipboardContainOurFiles();
  687. bool __fastcall CanPasteToDirViewFromClipBoard();
  688. void __fastcall CloseSessionTab(int Index);
  689. void __fastcall DoFileColorsChanged(TCustomDirView * DirView);
  690. virtual void __fastcall FileColorsChanged();
  691. TColor __fastcall PanelColor();
  692. TColor __fastcall DisabledPanelColor();
  693. void __fastcall WMSettingChange(TMessage & Message);
  694. void __fastcall ResetIncrementalSearch();
  695. void __fastcall IncrementalSearch(const UnicodeString & Text, bool SkipCurrent, bool Reverse);
  696. TListItem * __fastcall GetNextFile(TListItem * Item, bool Reverse);
  697. TListItem * __fastcall SearchFile(const UnicodeString & Text, bool SkipCurrent, bool Reverse);
  698. void __fastcall CMDialogKey(TWMKeyDown & Message);
  699. DYNAMIC void __fastcall Deactivate();
  700. void __fastcall CenterReconnectToolbar();
  701. void __fastcall DoOpenFolderOrWorkspace(const UnicodeString & Name, bool ConnectFirstTerminal);
  702. virtual void __fastcall ThemeChanged();
  703. int __fastcall GetStaticQueuePanelComponentsHeight();
  704. int __fastcall GetMinQueueViewHeight();
  705. void __fastcall DetachTerminal(TObject * ATerminal);
  706. bool __fastcall IsActiveTerminal(TTerminal * Terminal);
  707. void __fastcall UpdateRowSelect(TCustomDirView * DirView);
  708. void __fastcall MakeFocusedItemVisible(TCustomDirView * DirView);
  709. virtual void __fastcall DoRemotePathComboBoxAdjustImageIndex(
  710. TTBXComboBoxItem * Sender, const UnicodeString AText, int AIndex, int & ImageIndex);
  711. virtual void __fastcall DoRemotePathComboBoxCancel(TObject * Sender);
  712. virtual void __fastcall DoRemotePathComboBoxItemClick(TObject * Sender);
  713. public:
  714. virtual __fastcall ~TCustomScpExplorerForm();
  715. void __fastcall AddBookmark(TOperationSide Side);
  716. virtual void __fastcall AddEditLink(TOperationSide Side, bool Add);
  717. bool __fastcall CanAddEditLink(TOperationSide Side);
  718. bool __fastcall LinkFocused();
  719. virtual Boolean __fastcall AllowedAction(TAction * Action, TActionAllowed Allowed);
  720. bool __fastcall IsBusy();
  721. virtual void __fastcall ConfigurationChanged();
  722. void __fastcall CreateDirectory(TOperationSide Side);
  723. void __fastcall ExecuteFileOperationCommand(TFileOperation Operation, TOperationSide Side,
  724. bool OnFocused, bool NoConfirmation = false, void * Param = NULL);
  725. void __fastcall ExecuteCopyOperationCommand(
  726. TOperationSide Side, bool OnFocused, unsigned int Flags);
  727. virtual void LocalLocalCopy(TFileOperation Operation, TOperationSide Side, bool OnFocused, bool NoConfirmation);
  728. void __fastcall AdHocCustomCommand(bool OnFocused);
  729. virtual TCustomDirView * __fastcall DirView(TOperationSide Side);
  730. virtual bool __fastcall DirViewEnabled(TOperationSide Side);
  731. virtual void __fastcall ChangePath(TOperationSide Side) = 0;
  732. virtual void __fastcall StoreParams();
  733. int __fastcall CustomCommandState(const TCustomCommandType & Command, bool OnFocused, TCustomCommandListType ListType);
  734. bool __fastcall GetLastCustomCommand(bool OnFocused,
  735. TCustomCommandType & CustomCommand, int & State);
  736. void __fastcall LastCustomCommand(bool OnFocused);
  737. void __fastcall BothCustomCommand(const TCustomCommandType & Command);
  738. void __fastcall LockWindow(bool Force = false);
  739. void __fastcall UnlockWindow();
  740. void __fastcall SuspendWindowLock();
  741. void __fastcall ResumeWindowLock();
  742. bool __fastcall HasActiveTerminal();
  743. virtual bool IsLocalBrowserMode();
  744. void __fastcall NewSession(bool FromSite, const UnicodeString & SessionUrl = L"");
  745. void __fastcall DuplicateSession();
  746. void __fastcall RenameSession();
  747. void __fastcall CloseSession();
  748. void __fastcall DisconnectSession();
  749. void __fastcall ReconnectSession();
  750. void __fastcall OpenDirectory(TOperationSide Side);
  751. virtual void __fastcall HomeDirectory(TOperationSide Side);
  752. void __fastcall ReloadDirectory(TOperationSide Side);
  753. void __fastcall OpenStoredSession(TSessionData * Data);
  754. void __fastcall OpenFolderOrWorkspace(const UnicodeString & Name);
  755. void __fastcall Idle();
  756. __fastcall TCustomScpExplorerForm(TComponent* Owner);
  757. void __fastcall SaveCurrentSession();
  758. UnicodeString __fastcall CreateHiddenDuplicateSession();
  759. UnicodeString __fastcall SaveHiddenDuplicateSession(TSessionData * SessionData);
  760. TSessionData * __fastcall CloneCurrentSessionData();
  761. bool __fastcall SaveWorkspace(bool EnableAutoSave);
  762. virtual void __fastcall CompareDirectories();
  763. void __fastcall ExecuteCurrentFile();
  764. virtual void __fastcall OpenConsole(UnicodeString Command = L"");
  765. virtual void __fastcall UpdateTerminal(TManagedTerminal * Terminal);
  766. virtual void __fastcall SynchronizeDirectories();
  767. virtual void __fastcall FullSynchronizeDirectories() = 0;
  768. virtual void __fastcall ExploreLocalDirectory(TOperationSide Side);
  769. virtual void __fastcall GoToCommandLine();
  770. virtual void __fastcall GoToTree();
  771. void __fastcall PanelExport(TOperationSide Side, TPanelExport Export,
  772. TPanelExportDestination Destination);
  773. void __fastcall Filter(TOperationSide Side);
  774. void __fastcall ExecuteFile(TOperationSide Side, TExecuteFileBy ExecuteFileBy,
  775. const TEditorData * ExternalEditor = NULL, bool AllSelected = false,
  776. bool OnFocused = false);
  777. void __fastcall ExecuteCurrentFileWith(bool OnFocused);
  778. void __fastcall EditNew(TOperationSide Side);
  779. bool __fastcall AllowQueueOperation(TQueueOperation Operation, void ** Param = NULL);
  780. void __fastcall ExecuteQueueOperation(TQueueOperation Operation, void * Param = NULL);
  781. TQueueOperation __fastcall DefaultQueueOperation();
  782. bool __fastcall GetQueueEnabled();
  783. void __fastcall ToggleQueueEnabled();
  784. UnicodeString __fastcall GetQueueProgressTitle();
  785. void __fastcall LastTerminalClosed(TObject * Sender);
  786. void __fastcall TerminalRemoved(TObject * Sender);
  787. void __fastcall TerminalDisconnected();
  788. void __fastcall TerminalConnecting();
  789. void __fastcall TerminalListChanged(TObject * Sender);
  790. void __fastcall ApplicationTitleChanged();
  791. unsigned int __fastcall MoreMessageDialog(const UnicodeString Message,
  792. TStrings * MoreMessages, TQueryType Type, unsigned int Answers,
  793. UnicodeString HelpKeyword, const TMessageParams * Params = NULL,
  794. TTerminal * Terminal = NULL);
  795. void __fastcall OperationFinished(TFileOperation Operation, TOperationSide Side,
  796. bool Temp, const UnicodeString & FileName, bool Success, TOnceDoneOperation & OnceDoneOperation);
  797. void __fastcall OperationProgress(TFileOperationProgressType & ProgressData);
  798. UnicodeString __fastcall GetProgressTitle();
  799. void __fastcall ShowExtendedException(TTerminal * Terminal, Exception * E);
  800. void __fastcall InactiveTerminalException(TTerminal * Terminal, Exception * E);
  801. void __fastcall TerminalReady();
  802. void __fastcall QueueEvent(TManagedTerminal * Terminal, TTerminalQueue * Queue, TQueueEvent Event);
  803. void __fastcall QueueEmptyNoteClicked(TObject * Sender);
  804. bool __fastcall DoSynchronizeDirectories(
  805. UnicodeString & LocalDirectory, UnicodeString & RemoteDirectory, int UseDefaults);
  806. int __fastcall DoFullSynchronizeDirectories(
  807. UnicodeString & LocalDirectory, UnicodeString & RemoteDirectory, TSynchronizeMode & Mode,
  808. int Params, bool & SaveMode, int UseDefaults);
  809. void __fastcall StandaloneEdit(const UnicodeString & FileName);
  810. bool __fastcall CanPasteFromClipBoard();
  811. virtual void __fastcall PasteFromClipBoard();
  812. virtual void __fastcall CopyFilesToClipboard(TOperationSide Side, bool OnFocused);
  813. void __fastcall ToggleQueueVisibility();
  814. virtual UnicodeString __fastcall PathForCaption();
  815. void __fastcall FileListFromClipboard();
  816. void __fastcall SelectAll(TOperationSide Side, TSelectMode Mode);
  817. void __fastcall SelectByMask(TOperationSide Side, bool Select);
  818. void __fastcall RestoreSelectedNames(TOperationSide Side);
  819. void __fastcall SelectSameExt(bool Select);
  820. void __fastcall PreferencesDialog(TPreferencesMode APreferencesMode);
  821. virtual void __fastcall BeforeAction();
  822. void __fastcall FileSystemInfo();
  823. void __fastcall SessionGenerateUrl();
  824. void __fastcall FileGenerateUrl();
  825. void __fastcall ReadDirectoryCancelled();
  826. void __fastcall SynchronizeBrowsingChanged();
  827. void __fastcall ToggleShowHiddenFiles();
  828. void __fastcall SetFormatSizeBytes(TFormatBytesStyle Style);
  829. void __fastcall ToggleAutoReadDirectoryAfterOp();
  830. void __fastcall PopupTrayBalloon(TTerminal * Terminal, const UnicodeString & Str,
  831. TQueryType Type, Exception * E = NULL, unsigned int Seconds = 0,
  832. TNotifyEvent OnBalloonClick = NULL, TObject * UserData = NULL);
  833. void __fastcall RemoteFindFiles();
  834. virtual void __fastcall HistoryGo(TOperationSide Side, int Index);
  835. void __fastcall UpdateTaskbarList(ITaskbarList3 * TaskbarList);
  836. virtual void __fastcall DisplaySystemContextMenu();
  837. virtual void __fastcall GoToAddress() = 0;
  838. bool __fastcall CanConsole();
  839. bool __fastcall CanChangePassword();
  840. void __fastcall ChangePassword();
  841. bool __fastcall CanPrivateKeyUpload();
  842. void __fastcall PrivateKeyUpload();
  843. bool __fastcall IsComponentPossible(Byte Component);
  844. void __fastcall ReplaceTerminal(TManagedTerminal * value);
  845. virtual void __fastcall BrowseFile();
  846. void __fastcall CloseApp();
  847. virtual bool IsSideLocalBrowser(TOperationSide Side);
  848. __property bool ComponentVisible[Byte Component] = { read = GetComponentVisible, write = SetComponentVisible };
  849. __property bool EnableFocusedOperation[TOperationSide Side] = { read = GetEnableFocusedOperation, index = 0 };
  850. __property bool EnableSelectedOperation[TOperationSide Side] = { read = GetEnableSelectedOperation, index = 0 };
  851. __property bool EnableFocusedFileOperation[TOperationSide Side] = { read = GetEnableFocusedOperation, index = 1 };
  852. __property bool EnableSelectedFileOperation[TOperationSide Side] = { read = GetEnableSelectedOperation, index = 1 };
  853. __property bool HasDirView[TOperationSide Side] = { read = GetHasDirView };
  854. __property TManagedTerminal * Terminal = { read = FTerminal, write = SetTerminal };
  855. __property TTerminalQueue * Queue = { read = FQueue, write = SetQueue };
  856. __property TColor SessionColor = { read = FSessionColor, write = SetSessionColor };
  857. };
  858. //---------------------------------------------------------------------------
  859. class TAutoBatch
  860. {
  861. public:
  862. TAutoBatch(TCustomScpExplorerForm * Form);
  863. ~TAutoBatch();
  864. private:
  865. TCustomScpExplorerForm * FForm;
  866. void * FBatchStorage;
  867. };
  868. //---------------------------------------------------------------------------
  869. #endif