CustomScpExplorer.h 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891
  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 * FManagedSession;
  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. int FLocalBrowserTabImageIndex;
  271. ::TTrayIcon * FTrayIcon;
  272. TCustomCommandType FLastCustomCommand;
  273. TFileMasks FDirViewMatchMask;
  274. TTBXPopupMenu * FCustomCommandMenu;
  275. TStrings * FCustomCommandLocalFileList;
  276. TStrings * FCustomCommandRemoteFileList;
  277. ITaskbarList3 * FTaskbarList;
  278. bool FShowing;
  279. int FMaxQueueLength;
  280. TDateTime FSessionsPageControlNewSessionTime;
  281. bool FAppIdle;
  282. typedef std::set<TTBCustomItem *> TItemsWithTextDisplayMode;
  283. TItemsWithTextDisplayMode FItemsWithTextDisplayMode;
  284. HWND FHiddenWindow;
  285. TStrings * FTransferResumeList;
  286. bool FMoveToQueue;
  287. bool FStandaloneEditing;
  288. TFeedSynchronizeError FOnFeedSynchronizeError;
  289. bool FNeedSession;
  290. TTerminal * FFileFindTerminal;
  291. UnicodeString FFileColorsCurrent;
  292. bool FInvalid;
  293. std::auto_ptr<TQueueFileList> FQueueFileList;
  294. bool FStarted;
  295. bool __fastcall GetEnableFocusedOperation(TOperationSide Side, int FilesOnly);
  296. bool __fastcall GetEnableSelectedOperation(TOperationSide Side, int FilesOnly);
  297. void __fastcall SetManagedSession(TManagedTerminal * value);
  298. void __fastcall DoSetManagedSession(TManagedTerminal * value, bool Replace);
  299. TManagedTerminal * GetTerminal();
  300. void __fastcall SetQueue(TTerminalQueue * value);
  301. void __fastcall TransferListChange(TObject * Sender);
  302. void __fastcall TransferListDrawItem(TTBXCustomList * Sender, TCanvas * ACanvas,
  303. const TRect & ARect, int AIndex, int AHoverIndex, bool & DrawDefault);
  304. void __fastcall CloseInternalEditor(TObject * Sender);
  305. void __fastcall ForceCloseInternalEditor(TObject * Sender);
  306. void __fastcall ForceCloseLocalEditors();
  307. void __fastcall TerminalCaptureLog(const UnicodeString & AddedLine, TCaptureOutputType OutputType);
  308. void __fastcall HistoryItemClick(System::TObject* Sender);
  309. void __fastcall UpdateHistoryMenu(TOperationSide Side, bool Back);
  310. void __fastcall AdHocCustomCommandValidate(const TCustomCommandType & Command);
  311. void __fastcall SetDockAllowDrag(bool value);
  312. void __fastcall QueueSplitterDblClick(TObject * Sender);
  313. void __fastcall QueueFileListSplitterDblClick(TObject * Sender);
  314. void __fastcall AddQueueItem(TTerminalQueue * Queue, TTransferDirection Direction,
  315. TStrings * FileList, const UnicodeString TargetDirectory,
  316. const TGUICopyParamType & CopyParam, int Params);
  317. void __fastcall AddQueueItem(TTerminalQueue * Queue, TQueueItem * QueueItem, TManagedTerminal * Terminal);
  318. void __fastcall ClearTransferSourceSelection(TTransferDirection Direction);
  319. void __fastcall SessionsDDDragOver(int KeyState, const TPoint & Point, int & Effect, int PreferredEffect);
  320. void __fastcall SessionsDDProcessDropped(TObject * Sender, int KeyState, const TPoint & Point, int Effect);
  321. void __fastcall RemoteFileControlDragDropFileOperation(
  322. TObject * Sender, int Effect, UnicodeString TargetPath, bool ForceQueue, bool Paste);
  323. void __fastcall SessionsDDDragEnter(_di_IDataObject DataObj, int KeyState,
  324. const TPoint & Point, int & Effect, bool & Accept);
  325. void __fastcall SessionsDDDragLeave();
  326. void __fastcall QueueDDProcessDropped(TObject * Sender, int KeyState, const TPoint & Point, int Effect);
  327. void __fastcall QueueDDDragEnter(_di_IDataObject DataObj, int KeyState,
  328. const TPoint & Point, int & Effect, bool & Accept);
  329. void __fastcall QueueDDDragLeave();
  330. void __fastcall EnableDDTransferConfirmation(TObject * Sender);
  331. void __fastcall CollectItemsWithTextDisplayMode(TWinControl * Control);
  332. void __fastcall CreateHiddenWindow();
  333. bool __fastcall IsQueueAutoPopup();
  334. void __fastcall UpdateSessionsPageControlHeight();
  335. TDragDropFilesEx * __fastcall CreateDragDropFilesEx();
  336. void __fastcall KeyProcessed(Word & Key, TShiftState Shift);
  337. void __fastcall CheckCustomCommandShortCut(TCustomCommandList * List, Word & Key, Classes::TShiftState Shift, TShortCut KeyShortCut);
  338. void __fastcall CMShowingChanged(TMessage & Message);
  339. void __fastcall WMClose(TMessage & Message);
  340. void __fastcall CMDpiChanged(TMessage & Message);
  341. void __fastcall WMDpiChanged(TMessage & Message);
  342. void __fastcall DoBookmarkClick(TOperationSide Side, TObject * Sender);
  343. void __fastcall LocalBookmarkClick(TObject * Sender);
  344. void __fastcall RemoteBookmarkClick(TObject * Sender);
  345. void __fastcall InitControls();
  346. void __fastcall UpdateQueueFileList();
  347. void __fastcall QueueFileListColumnAutoSize();
  348. void __fastcall AdjustQueueLayout();
  349. protected:
  350. TOperationSide FCurrentSide;
  351. bool FEverShown;
  352. TControl * FDDTargetControl;
  353. TProgressForm * FProgressForm;
  354. TSynchronizeProgressForm * FSynchronizeProgressForm;
  355. HANDLE FDDExtMapFile;
  356. TTimer * FUserActionTimer;
  357. TQueueItemProxy * FPendingQueueActionItem;
  358. TTBXPopupMenu * FHistoryMenu[2][2];
  359. bool FAllowTransferPresetAutoSelect;
  360. bool FSessionChanging;
  361. TStrings * FNotes;
  362. TTimer * FNoteTimer;
  363. TDateTime FNoteShown;
  364. UnicodeString FNote;
  365. TObject * FNoteData;
  366. UnicodeString FNoteHints;
  367. TNotifyEvent FOnNoteClick;
  368. unsigned int FLockLevel;
  369. unsigned int FLockSuspendLevel;
  370. bool FDisabledOnLockSuspend;
  371. bool FAlternativeDelete;
  372. TDragDropFilesEx * FSessionsDragDropFilesEx;
  373. TDragDropFilesEx * FQueueDragDropFilesEx;
  374. TPoint FLastContextPopupScreenPoint;
  375. int FDoNotIdleCurrentTerminal;
  376. UnicodeString FFakeFileDropTarget;
  377. TFileColorData::TList FFileColors;
  378. UnicodeString FIncrementalSearch;
  379. int FIncrementalSearching;
  380. bool FIncrementalSearchHaveNext;
  381. TOperationSide FProgressSide;
  382. bool FImmersiveDarkMode;
  383. virtual bool __fastcall CopyParamDialog(TTransferDirection Direction,
  384. TTransferType Type, bool Temp, TStrings * FileList,
  385. UnicodeString & TargetDirectory, TGUICopyParamType & CopyParam, bool Confirm,
  386. bool DragDrop, int Options);
  387. virtual void __fastcall CopyParamDialogAfter(TTransferDirection Direction, bool Temp, const UnicodeString & TargetDirectory);
  388. virtual bool __fastcall RemoteTransferDialog(TManagedTerminal *& Session,
  389. TStrings * FileList, UnicodeString & Target, UnicodeString & FileMask, bool & DirectCopy,
  390. bool NoConfirmation, bool Move);
  391. virtual void __fastcall CreateParams(TCreateParams & Params);
  392. void __fastcall DeleteFiles(TOperationSide Side, TStrings * FileList, bool Alternative);
  393. bool __fastcall RemoteTransferFiles(TStrings * FileList, bool NoConfirmation,
  394. bool Move, TManagedTerminal * Session);
  395. virtual void __fastcall DoDirViewExecFile(TObject * Sender, TListItem * Item, bool & AllowExec);
  396. virtual TControl * __fastcall GetComponent(Byte Component);
  397. bool __fastcall GetComponentVisible(Byte Component);
  398. virtual Boolean __fastcall GetHasDirView(TOperationSide Side);
  399. virtual TCustomDriveView * __fastcall DriveView(TOperationSide Side);
  400. virtual TCustomDirView * GetCurrentLocalBrowser();
  401. DYNAMIC void __fastcall KeyDown(Word & Key, Classes::TShiftState Shift);
  402. virtual void __fastcall RestoreFormParams();
  403. virtual void __fastcall RestoreParams();
  404. virtual void __fastcall SetComponentVisible(Byte Component, bool value);
  405. virtual void __fastcall ComponentShowing(Byte Component, bool value);
  406. virtual void __fastcall FixControlsPlacement();
  407. bool __fastcall SetProperties(TOperationSide Side, TStrings * FileList);
  408. void __fastcall CustomCommand(TStrings * FileList,
  409. const TCustomCommandType & Command, TStrings * ALocalFileList);
  410. void __fastcall RemoteCustomCommand(
  411. TStrings * FileList, const TCustomCommandType & ACommand,
  412. const TCustomCommandData & Data, const UnicodeString & CommandCommand);
  413. void __fastcall LocalCustomCommandPure(
  414. TStrings * FileList, const TCustomCommandType & ACommand, const UnicodeString & Command, TStrings * ALocalFileList,
  415. const TCustomCommandData & Data, bool LocalFileCommand, bool FileListCommand, UnicodeString * POutput);
  416. void __fastcall LocalCustomCommandWithLocalFiles(
  417. const TCustomCommandType & ACommand, const UnicodeString & Command, const TCustomCommandData & Data,
  418. bool FileListCommand, UnicodeString * POutput);
  419. void __fastcall LocalCustomCommand(TStrings * FileList,
  420. const TCustomCommandType & ACommand, TStrings * ALocalFileList,
  421. const TCustomCommandData & Data, const UnicodeString & CommandCommand);
  422. virtual void __fastcall SessionChanging();
  423. virtual void __fastcall SessionChanged(bool Replaced);
  424. virtual void __fastcall QueueChanged();
  425. void __fastcall InitStatusBar();
  426. void __fastcall UpdateStatusBar();
  427. virtual void __fastcall UpdateStatusPanelText(TTBXStatusPanel * Panel);
  428. virtual void __fastcall DoOperationFinished(TFileOperation Operation,
  429. TOperationSide Side, bool Temp, const UnicodeString & FileName, bool Success,
  430. TOnceDoneOperation & OnceDoneOperation);
  431. virtual void __fastcall DoOpenDirectoryDialog(TOpenDirectoryMode Mode, TOperationSide Side);
  432. void __fastcall CreateProgressForm(TSynchronizeProgress * SynchronizeProgress);
  433. void __fastcall DestroyProgressForm();
  434. virtual void __fastcall FileOperationProgress(TFileOperationProgressType & ProgressData);
  435. void __fastcall OperationComplete(const TDateTime & StartTime);
  436. void __fastcall ExecutedFileChanged(const UnicodeString FileName,
  437. TEditedFileData * Data, HANDLE UploadCompleteEvent);
  438. void __fastcall ExecutedFileReload(const UnicodeString FileName,
  439. const TEditedFileData * Data);
  440. void __fastcall ExecutedFileEarlyClosed(const TEditedFileData * Data,
  441. bool & KeepOpen);
  442. void __fastcall ExecutedFileUploadComplete(TObject * Sender);
  443. void __fastcall CMDialogChar(TMessage & AMessage);
  444. inline void __fastcall WMAppCommand(TMessage & Message);
  445. inline void __fastcall WMSysCommand(TMessage & Message);
  446. void __fastcall WMQueryEndSession(TMessage & Message);
  447. void __fastcall WMEndSession(TWMEndSession & Message);
  448. #ifdef _DEBUG
  449. inline void __fastcall WMWindowPosChanged(TWMWindowPosMsg & Message);
  450. #endif
  451. void __fastcall WMCopyData(TMessage & Message);
  452. virtual void __fastcall SysResizing(unsigned int Cmd);
  453. DYNAMIC void __fastcall DoShow();
  454. TStrings * __fastcall CreateVisitedDirectories(TOperationSide Side);
  455. void __fastcall HandleErrorList(TStringList *& ErrorList);
  456. void __fastcall TerminalSynchronizeDirectory(
  457. const UnicodeString & LocalDirectory, const UnicodeString & RemoteDirectory,
  458. bool & Continue, bool Collect, const TSynchronizeOptions * Options);
  459. void __fastcall DoSynchronize(TSynchronizeController * Sender,
  460. const UnicodeString LocalDirectory, const UnicodeString RemoteDirectory,
  461. const TCopyParamType & CopyParam, const TSynchronizeParamType & Params,
  462. TSynchronizeChecklist ** Checklist, TSynchronizeOptions * Options, bool Full);
  463. void __fastcall DoSynchronizeInvalid(TSynchronizeController * Sender,
  464. const UnicodeString Directory, const UnicodeString ErrorStr);
  465. void __fastcall DoSynchronizeTooManyDirectories(TSynchronizeController * Sender,
  466. int & MaxDirectories);
  467. void __fastcall Synchronize(const UnicodeString LocalDirectory,
  468. const UnicodeString RemoteDirectory, TSynchronizeMode Mode,
  469. const TCopyParamType & CopyParam, int Params, TSynchronizeChecklist ** Checklist,
  470. TSynchronizeOptions * Options);
  471. void __fastcall SynchronizeSessionLog(const UnicodeString & Message);
  472. void __fastcall GetSynchronizeOptions(int Params, TSynchronizeOptions & Options);
  473. UnicodeString __fastcall SerializeCopyParamForCommandLine(const TCopyParamType * CopyParams);
  474. void __fastcall SynchronizeInNewWindow(const TSynchronizeParamType & Params, const TCopyParamType * CopyParams);
  475. void __fastcall FullSynchronizeInNewWindow(
  476. TSynchronizeMode Mode, int Params, const UnicodeString & LocalDirectory, const UnicodeString & RemoteDirectory,
  477. const TCopyParamType * CopyParams);
  478. bool __fastcall SynchronizeAllowSelectedOnly();
  479. virtual void __fastcall BatchStart(void *& Storage);
  480. virtual void __fastcall BatchEnd(void * Storage);
  481. bool __fastcall ExecuteFileOperation(TFileOperation Operation, TOperationSide Side,
  482. TStrings * FileList, bool NoConfirmation, void * Param);
  483. bool __fastcall ExecuteCopyMoveFileOperation(
  484. TFileOperation Operation, TOperationSide Side, TStrings * FileList, bool NoConfirmation, void * Param);
  485. bool __fastcall ExecuteDeleteFileOperation(TOperationSide Side, TStrings * FileList, void * Param);
  486. virtual bool __fastcall DDGetTarget(UnicodeString & Directory,
  487. bool & ForceQueue, UnicodeString & CounterName);
  488. virtual void __fastcall DDFakeFileInitDrag(TFileList * FileList, bool & Created);
  489. UnicodeString __fastcall CreateFakeTransferDirectory();
  490. void __fastcall DDFakeCreated(TObject * Sender, const UnicodeString FileName);
  491. void __fastcall ClipboardFakeCreated(TObject * Sender, const UnicodeString FileName);
  492. void __fastcall ClipboardDataObjectRelease(TObject * Sender);
  493. virtual void __fastcall SideEnter(TOperationSide Side);
  494. virtual TOperationSide __fastcall GetSide(TOperationSide Side);
  495. TStrings * __fastcall PanelExport(TOperationSide Side, TPanelExport Export);
  496. virtual void __fastcall PanelExportStore(TOperationSide Side,
  497. TPanelExport Export, TPanelExportDestination Destination,
  498. TStrings * ExportData);
  499. void __fastcall GenerateUrl(TStrings * Paths);
  500. void __fastcall QueueListUpdate(TTerminalQueue * Queue);
  501. void __fastcall QueueItemUpdate(TTerminalQueue * Queue, TQueueItem * Item);
  502. void __fastcall UpdateQueueStatus(bool QueueChanging);
  503. bool IsAnythingQueued();
  504. void __fastcall RefreshQueueItems();
  505. virtual int __fastcall GetStaticComponentsHeight();
  506. void __fastcall FillQueueViewItem(TListItem * Item,
  507. TQueueItemProxy * QueueItem, bool Detail);
  508. void __fastcall QueueViewDeleteItem(int Index);
  509. void __fastcall UserActionTimer(TObject * Sender);
  510. void __fastcall UpdateQueueView();
  511. bool __fastcall CanCloseQueue(TTerminalQueue * Queue);
  512. bool __fastcall CanCloseQueue();
  513. virtual bool __fastcall IsFileControl(TObject * Control, TOperationSide Side);
  514. virtual void __fastcall ReloadLocalDirectory(const UnicodeString Directory = L"");
  515. virtual bool __fastcall PanelOperation(TOperationSide Side, bool DragDrop);
  516. void __fastcall DoWarnLackOfTempSpace(const UnicodeString Path,
  517. __int64 RequiredSpace, bool & Continue);
  518. void __fastcall AddDelayedDirectoryDeletion(const UnicodeString TempDir, int SecDelay);
  519. void __fastcall DoDelayedDeletion(TObject * Sender);
  520. TDragDropFilesEx * __fastcall DragDropFiles(TObject * Sender);
  521. void __fastcall RemoteFileControlDDTargetDrop();
  522. bool __fastcall RemoteFileControlFileOperation(TObject * Sender,
  523. TFileOperation Operation, bool NoConfirmation, void * Param);
  524. void __fastcall DDDownload(
  525. TStrings * FilesToCopy, const UnicodeString & TargetDir, const TCopyParamType * CopyParam, int Params);
  526. bool __fastcall EnsureCommandSessionFallback(TFSCapability Capability);
  527. bool __fastcall CommandSessionFallback();
  528. void __fastcall FileTerminalRemoved(const UnicodeString FileName,
  529. TEditedFileData * Data, TObject * Token, void * Arg);
  530. void __fastcall FileConfigurationChanged(const UnicodeString FileName,
  531. TEditedFileData * Data, TObject * Token, void * Arg);
  532. void __fastcall CustomExecuteFile(TOperationSide Side,
  533. TExecuteFileBy ExecuteFileBy, UnicodeString FileName, UnicodeString OriginalFileName,
  534. const TEditorData * ExternalEditor, UnicodeString LocalRootDirectory,
  535. UnicodeString RemoteDirectory, bool NewFile);
  536. void __fastcall ExecuteFile(TOperationSide Side,
  537. TExecuteFileBy ExecuteFileBy, const TEditorData * ExternalEditor,
  538. UnicodeString FullFileName, TObject * Object,
  539. const TFileMasks::TParams & MaskParams);
  540. bool __fastcall RemoteExecuteForceText(TExecuteFileBy ExecuteFileBy,
  541. const TEditorData * ExternalEditor);
  542. void __fastcall ExecuteFileNormalize(TExecuteFileBy & ExecuteFileBy,
  543. const TEditorData *& ExternalEditor, const UnicodeString & FileName,
  544. bool Local, const TFileMasks::TParams & MaskParams);
  545. void __fastcall ExecuteRemoteFile(
  546. const UnicodeString & FullFileName, TRemoteFile * File, TExecuteFileBy ExecuteFileBy);
  547. void __fastcall TemporaryFileCopyParam(TCopyParamType & CopyParam);
  548. void __fastcall TemporaryDirectoryForRemoteFiles(
  549. UnicodeString RemoteDirectory, TCopyParamType CopyParam,
  550. UnicodeString & Result, UnicodeString & RootDirectory);
  551. void __fastcall TemporarilyDownloadFiles(TStrings * FileList, bool ForceText,
  552. UnicodeString & RootTempDir, UnicodeString & TempDir, bool AllFiles, bool GetTargetNames,
  553. bool AutoOperation);
  554. void __fastcall LocalEditorClosed(TObject * Sender, bool Forced);
  555. TTBXPopupMenu * __fastcall HistoryMenu(TOperationSide Side, bool Back);
  556. UnicodeString __fastcall FileStatusBarText(const TStatusFileInfo & FileInfo, TOperationSide Side);
  557. void __fastcall UpdateFileStatusBar(TTBXStatusBar * StatusBar,
  558. const TStatusFileInfo & FileInfo, TOperationSide Side);
  559. void __fastcall UpdateFileStatusExtendedPanels(
  560. TTBXStatusBar * StatusBar, const TStatusFileInfo & FileInfo);
  561. void __fastcall FileStatusBarPanelClick(TTBXStatusPanel * Panel, TOperationSide Side);
  562. virtual void __fastcall DoDirViewLoaded(TCustomDirView * Sender);
  563. virtual void __fastcall UpdateControls();
  564. void __fastcall UpdateTransferList();
  565. void __fastcall UpdateTransferLabel();
  566. void __fastcall StartUpdates();
  567. void __fastcall TransferPresetAutoSelect();
  568. virtual void __fastcall GetTransferPresetAutoSelectData(TCopyParamRuleData & Data);
  569. inline bool __fastcall CustomCommandRemoteAllowed();
  570. void __fastcall CustomCommandMenu(
  571. TAction * Action, TStrings * LocalFileList, TStrings * RemoteFileList);
  572. void __fastcall LoadToolbarsLayoutStr(UnicodeString LayoutStr, UnicodeString ButtonsStr);
  573. UnicodeString __fastcall GetToolbarItemName(TTBCustomItem * Item);
  574. UnicodeString __fastcall GetToolbarsLayoutStr();
  575. UnicodeString __fastcall GetToolbarsButtonsStr();
  576. virtual void __fastcall Dispatch(void * Message);
  577. void __fastcall PostComponentHide(Byte Component);
  578. void __fastcall GetSpaceAvailable(const UnicodeString Path,
  579. TSpaceAvailable & ASpaceAvailable, bool & Close);
  580. void __fastcall CalculateSize(TStrings * FileList, __int64 & Size,
  581. TCalculateSizeStats & Stats, bool & Close);
  582. void __fastcall CalculateChecksum(const UnicodeString & Alg, TStrings * FileList,
  583. TCalculatedChecksumEvent OnCalculatedChecksum, bool & Close);
  584. void __fastcall UpdateCustomCommandsToolbar();
  585. virtual void __fastcall UpdateActions();
  586. void __fastcall UpdateSessionColor(TColor value);
  587. void __fastcall SetSessionColor(TColor value);
  588. void __fastcall NoteTimer(TObject * Sender);
  589. void __fastcall AddNote(UnicodeString Note, bool UpdateNow = true);
  590. void __fastcall PostNote(UnicodeString Note, unsigned int Seconds,
  591. TNotifyEvent OnNoteClick, TObject * NoteData);
  592. bool __fastcall CancelNote(bool Force);
  593. void __fastcall UpdateNoteHints();
  594. void __fastcall UpdatesChecked();
  595. void __fastcall UpdatesNoteClicked(TObject * Sender);
  596. void __fastcall TransferPresetNoteClicked(TObject * Sender);
  597. void __fastcall TransferPresetNoteMessage(TTransferPresetNoteData * NoteData,
  598. bool AllowNeverAskAgain);
  599. void __fastcall UpdateTrayIcon();
  600. void __fastcall TrayIconClick(TObject * Sender);
  601. void __fastcall Notify(TTerminal * Terminal, UnicodeString Message,
  602. TQueryType Type, bool Important = false, TNotifyEvent OnClick = NULL,
  603. TObject * UserData = NULL, Exception * E = NULL);
  604. virtual void __fastcall UpdateSessionData(TSessionData * Data);
  605. virtual void __fastcall UpdateRemotePathComboBox(bool TextOnly);
  606. virtual void __fastcall ToolbarItemResize(TTBXCustomDropDownItem * Item, int Width);
  607. virtual void __fastcall CreateWnd();
  608. virtual void __fastcall DestroyWnd();
  609. virtual bool __fastcall OpenBookmark(TOperationSide Side, TBookmark * Bookmark);
  610. void __fastcall DoFindFiles(TTerminal * Terminal, UnicodeString Directory, const TFileMasks & FileMask,
  611. TFileFoundEvent OnFileFound, TFindingFileEvent OnFindingFile);
  612. virtual void __fastcall DoFocusRemotePath(TTerminal * Terminal, const UnicodeString & Path);
  613. bool __fastcall CanOperateOnFoundFiles(TTerminal * ATerminal);
  614. void __fastcall DoOperationOnFoundFiles(
  615. TFileOperation Operation, TTerminal * ATerminal, TStrings * FileList, TFileOperationFinishedEvent OnFileOperationFinished);
  616. void __fastcall DoDeleteFoundFiles(TTerminal * Terminal, TStrings * FileList, TFileOperationFinishedEvent OnFileOperationFinished);
  617. void __fastcall DoDownloadFoundFiles(TTerminal * ATerminal, TStrings * FileList, TFileOperationFinishedEvent OnFileOperationFinished);
  618. void __fastcall DoEditFoundFiles(TTerminal * ATerminal, TStrings * FileList, TFileOperationFinishedEvent OnFileOperationFinished);
  619. bool __fastcall ExecuteFileOperation(TFileOperation Operation, TOperationSide Side,
  620. bool OnFocused, bool NoConfirmation = false, void * Param = NULL);
  621. void __fastcall UpdateCopyParamCounters(const TCopyParamType & CopyParam);
  622. int __fastcall AddSessionColor(TColor Color);
  623. void __fastcall UpdateSessionTab(TTabSheet * TabSheet);
  624. void __fastcall UpdateNewSessionTab();
  625. void __fastcall AddFixedSessionImages();
  626. int __fastcall AddFixedSessionImage(int GlyphsSourceIndex);
  627. TObjectList * __fastcall DoCollectWorkspace();
  628. void __fastcall DoSaveWorkspace(const UnicodeString & Name,
  629. TObjectList * DataList, bool SavePasswords, bool Explicit);
  630. UnicodeString __fastcall WorkspaceName();
  631. virtual bool __fastcall EligibleForImageDisplayMode(TTBCustomItem * Item);
  632. virtual bool __fastcall UpdateToolbarDisplayMode();
  633. virtual void __fastcall QueueLabelUpdateStatus();
  634. void __fastcall EditorAutoConfig();
  635. void __fastcall DirViewContextPopupDefaultItem(
  636. TOperationSide Side, TTBXCustomItem * Item, TDoubleClickAction DoubleClickAction);
  637. void __fastcall DirViewContextPopup(
  638. TOperationSide Side, Byte PopupComponent, const TPoint & MousePos);
  639. bool __fastcall CommandLineFromAnotherInstance(const UnicodeString & CommandLine);
  640. bool __fastcall CanCommandLineFromAnotherInstance();
  641. void __fastcall SetQueueProgress();
  642. void __fastcall UpdateQueueLabel();
  643. void __fastcall SetTaskbarListProgressState(TBPFLAG Flags);
  644. void __fastcall SetTaskbarListProgressValue(int Progress);
  645. void __fastcall SetTaskbarListProgressValue(TFileOperationProgressType * ProgressData);
  646. TManagedTerminal * __fastcall GetSessionTabSession(TTabSheet * TabSheet);
  647. bool __fastcall SessionTabSwitched();
  648. void __fastcall RestoreApp();
  649. void __fastcall GoToQueue();
  650. virtual UnicodeString __fastcall DefaultDownloadTargetDirectory() = 0;
  651. void __fastcall LockFiles(TStrings * FileList, bool Lock);
  652. void __fastcall SaveInternalEditor(
  653. const UnicodeString FileName, TEditedFileData * Data, TObject * Token,
  654. void * Arg);
  655. void __fastcall SaveAllInternalEditors(TObject * Sender);
  656. void __fastcall InternalEditorModified(
  657. const UnicodeString FileName, TEditedFileData * Data, TObject * Token,
  658. void * Arg);
  659. void __fastcall AnyInternalEditorModified(TObject * Sender, bool & Modified);
  660. virtual void __fastcall StartingWithoutSession();
  661. virtual void __fastcall NeedSession(bool Startup);
  662. bool __fastcall DraggingAllFilesFromDirView(TOperationSide Side, TStrings * FileList);
  663. bool __fastcall SelectedAllFilesInDirView(TCustomDirView * DView);
  664. TSessionData * __fastcall SessionDataForCode();
  665. void __fastcall RefreshPanel(const UnicodeString & Session, const UnicodeString & Path);
  666. DYNAMIC void __fastcall ChangeScale(int M, int D);
  667. virtual void __fastcall UpdateImages();
  668. void __fastcall UpdatePixelsPerInchMainWindowCounter();
  669. void __fastcall CopyPopup(TControl * DestControl, TControl * SourceControl);
  670. void __fastcall CreateRemoteDirectory(const UnicodeString & Path, TRemoteProperties & Properties);
  671. void __fastcall DoFullSynchronize(
  672. void * Token, TProcessedSynchronizationChecklistItem OnProcessedItem,
  673. TUpdatedSynchronizationChecklistItems OnUpdatedSynchronizationChecklistItems);
  674. void __fastcall DoSynchronizeChecklistCalculateSize(
  675. TSynchronizeChecklist * Checklist, const TSynchronizeChecklist::TItemList & Items, void * Token);
  676. void __fastcall DoSynchronizeMove(
  677. TOperationSide Side, const UnicodeString & FileName, const UnicodeString & NewFileName, TRemoteFile * RemoteFile);
  678. void __fastcall DoSynchronizeBrowse(TOperationSide Side, TSynchronizeChecklist::TAction Action, const TSynchronizeChecklist::TItem * Item);
  679. void __fastcall FullSynchronize(
  680. TSynchronizeParams & Params, TProcessedSynchronizationChecklistItem OnProcessedItem,
  681. TUpdatedSynchronizationChecklistItems OnUpdatedSynchronizationChecklistItems);
  682. void __fastcall SynchronizeProcessedItem(void * Token, const TSynchronizeChecklist::TItem * ChecklistItem);
  683. void __fastcall CreateOpenDirMenuList(TTBCustomItem * Menu, TOperationSide Side, TBookmarkList * BookmarkList);
  684. void __fastcall CreateOpenDirMenu(TTBCustomItem * Menu, TOperationSide Side);
  685. bool __fastcall TryOpenDirectory(TOperationSide Side, const UnicodeString & Path);
  686. void __fastcall ClipboardStop();
  687. void __fastcall ClipboardClear();
  688. void __fastcall ClipboardDownload(const UnicodeString & TargetDirectory, bool NoConfirmation, bool DragDrop);
  689. bool __fastcall DoesClipboardContainOurFiles();
  690. bool __fastcall CanPasteToDirViewFromClipBoard();
  691. void __fastcall CloseSessionTab(int Index);
  692. void __fastcall DoFileColorsChanged(TCustomDirView * DirView);
  693. virtual void __fastcall FileColorsChanged();
  694. TColor __fastcall PanelColor();
  695. TColor __fastcall DisabledPanelColor();
  696. void __fastcall WMSettingChange(TMessage & Message);
  697. void __fastcall ResetIncrementalSearch();
  698. void __fastcall IncrementalSearch(const UnicodeString & Text, bool SkipCurrent, bool Reverse);
  699. TListItem * __fastcall GetNextFile(TListItem * Item, bool Reverse);
  700. TListItem * __fastcall SearchFile(const UnicodeString & Text, bool SkipCurrent, bool Reverse);
  701. void __fastcall CMDialogKey(TWMKeyDown & Message);
  702. DYNAMIC void __fastcall Deactivate();
  703. void __fastcall CenterReconnectToolbar();
  704. void __fastcall DoOpenFolderOrWorkspace(const UnicodeString & Name, bool ConnectFirstTerminal);
  705. virtual void __fastcall ThemeChanged();
  706. int __fastcall GetStaticQueuePanelComponentsHeight();
  707. int __fastcall GetMinQueueViewHeight();
  708. void __fastcall DetachTerminal(TObject * ATerminal);
  709. bool __fastcall IsActiveTerminal(TTerminal * Terminal);
  710. void __fastcall UpdateRowSelect(TCustomDirView * DirView);
  711. void __fastcall MakeFocusedItemVisible(TCustomDirView * DirView);
  712. virtual void __fastcall DoRemotePathComboBoxAdjustImageIndex(
  713. TTBXComboBoxItem * Sender, const UnicodeString AText, int AIndex, int & ImageIndex);
  714. virtual void __fastcall DoRemotePathComboBoxCancel(TObject * Sender);
  715. virtual void __fastcall DoRemotePathComboBoxItemClick(TObject * Sender);
  716. bool GetDoNotShowCopyDialogDefault(bool DragDrop);
  717. void HandleDoNotShowCopyDialogAgain(bool DragDrop, bool DoNotShowAgain);
  718. void __fastcall UpdateDarkMode();
  719. public:
  720. virtual __fastcall ~TCustomScpExplorerForm();
  721. void __fastcall AddBookmark(TOperationSide Side);
  722. virtual void __fastcall AddEditLink(TOperationSide Side, bool Add);
  723. bool __fastcall CanAddEditLink(TOperationSide Side);
  724. bool __fastcall LinkFocused();
  725. virtual Boolean __fastcall AllowedAction(TAction * Action, TActionAllowed Allowed);
  726. bool __fastcall IsBusy();
  727. virtual void __fastcall ConfigurationChanged();
  728. void __fastcall CreateDirectory(TOperationSide Side);
  729. void __fastcall ExecuteFileOperationCommand(TFileOperation Operation, TOperationSide Side,
  730. bool OnFocused, bool NoConfirmation = false, void * Param = NULL);
  731. void __fastcall ExecuteCopyOperationCommand(
  732. TOperationSide Side, bool OnFocused, unsigned int Flags);
  733. virtual void LocalLocalCopy(
  734. TFileOperation Operation, TOperationSide Side, bool OnFocused, bool NoConfirmation, bool DragDrop, unsigned int Flags);
  735. void LocalLocalCopyCommand(TFileOperation Operation, TOperationSide Side, bool OnFocused, unsigned int Flags);
  736. void __fastcall AdHocCustomCommand(bool OnFocused);
  737. virtual TCustomDirView * __fastcall DirView(TOperationSide Side);
  738. virtual bool __fastcall DirViewEnabled(TOperationSide Side);
  739. virtual void __fastcall ChangePath(TOperationSide Side) = 0;
  740. virtual void __fastcall StoreParams();
  741. int __fastcall CustomCommandState(const TCustomCommandType & Command, bool OnFocused, TCustomCommandListType ListType);
  742. bool __fastcall GetLastCustomCommand(bool OnFocused,
  743. TCustomCommandType & CustomCommand, int & State);
  744. void __fastcall LastCustomCommand(bool OnFocused);
  745. void __fastcall BothCustomCommand(const TCustomCommandType & Command);
  746. void __fastcall LockWindow(bool Force = false);
  747. void __fastcall UnlockWindow();
  748. void __fastcall SuspendWindowLock();
  749. void __fastcall ResumeWindowLock();
  750. bool __fastcall HasActiveTerminal();
  751. bool __fastcall HasManagedSession();
  752. virtual bool IsLocalBrowserMode();
  753. bool CanCloseSession(TManagedTerminal * Session);
  754. void __fastcall NewSession(const UnicodeString & SessionUrl = L"");
  755. void __fastcall DuplicateSession();
  756. void __fastcall RenameSession();
  757. void __fastcall CloseSession();
  758. void __fastcall DisconnectSession();
  759. void __fastcall ReconnectSession();
  760. void __fastcall OpenDirectory(TOperationSide Side);
  761. virtual void __fastcall HomeDirectory(TOperationSide Side);
  762. void __fastcall ReloadDirectory(TOperationSide Side);
  763. void __fastcall OpenStoredSession(TSessionData * Data);
  764. void __fastcall OpenFolderOrWorkspace(const UnicodeString & Name);
  765. void __fastcall Idle();
  766. __fastcall TCustomScpExplorerForm(TComponent* Owner);
  767. void __fastcall SaveCurrentSession();
  768. UnicodeString __fastcall CreateHiddenDuplicateSession();
  769. UnicodeString __fastcall SaveHiddenDuplicateSession(TSessionData * SessionData);
  770. TSessionData * __fastcall CloneCurrentSessionData();
  771. bool __fastcall SaveWorkspace(bool EnableAutoSave);
  772. virtual void __fastcall CompareDirectories();
  773. void __fastcall ExecuteCurrentFile();
  774. virtual void __fastcall OpenConsole(UnicodeString Command = L"");
  775. virtual void __fastcall UpdateSession(TManagedTerminal * Terminal);
  776. virtual void __fastcall SynchronizeDirectories();
  777. virtual void __fastcall FullSynchronizeDirectories() = 0;
  778. virtual void __fastcall ExploreLocalDirectory(TOperationSide Side);
  779. virtual void __fastcall GoToCommandLine();
  780. virtual void __fastcall GoToTree();
  781. void __fastcall PanelExport(TOperationSide Side, TPanelExport Export,
  782. TPanelExportDestination Destination);
  783. void __fastcall Filter(TOperationSide Side);
  784. void __fastcall ExecuteFile(TOperationSide Side, TExecuteFileBy ExecuteFileBy,
  785. const TEditorData * ExternalEditor = NULL, bool AllSelected = false,
  786. bool OnFocused = false);
  787. void __fastcall ExecuteCurrentFileWith(bool OnFocused);
  788. void __fastcall EditNew(TOperationSide Side);
  789. bool __fastcall AllowQueueOperation(TQueueOperation Operation, void ** Param = NULL);
  790. void __fastcall ExecuteQueueOperation(TQueueOperation Operation, void * Param = NULL);
  791. TQueueOperation __fastcall DefaultQueueOperation();
  792. bool __fastcall GetQueueEnabled();
  793. void __fastcall ToggleQueueEnabled();
  794. UnicodeString __fastcall GetQueueProgressTitle();
  795. void __fastcall LastTerminalClosed();
  796. virtual TManagedTerminal * GetReplacementForLastSession();
  797. void __fastcall TerminalRemoved(TObject * Sender);
  798. void __fastcall TerminalDisconnected();
  799. void __fastcall TerminalConnecting();
  800. void __fastcall SessionListChanged();
  801. void __fastcall ApplicationTitleChanged();
  802. unsigned int __fastcall MoreMessageDialog(const UnicodeString Message,
  803. TStrings * MoreMessages, TQueryType Type, unsigned int Answers,
  804. UnicodeString HelpKeyword, const TMessageParams * Params = NULL,
  805. TTerminal * Terminal = NULL);
  806. void __fastcall OperationFinished(TFileOperation Operation, TOperationSide Side,
  807. bool Temp, const UnicodeString & FileName, bool Success, TOnceDoneOperation & OnceDoneOperation);
  808. void __fastcall OperationProgress(TFileOperationProgressType & ProgressData);
  809. UnicodeString __fastcall GetProgressTitle();
  810. void __fastcall ShowExtendedException(TTerminal * Terminal, Exception * E);
  811. void __fastcall InactiveTerminalException(TTerminal * Terminal, Exception * E);
  812. void __fastcall SessionReady();
  813. void __fastcall QueueEvent(TManagedTerminal * Terminal, TTerminalQueue * Queue, TQueueEvent Event);
  814. void __fastcall QueueEmptyNoteClicked(TObject * Sender);
  815. bool __fastcall DoSynchronizeDirectories(
  816. UnicodeString & LocalDirectory, UnicodeString & RemoteDirectory, int UseDefaults);
  817. int __fastcall DoFullSynchronizeDirectories(
  818. UnicodeString & LocalDirectory, UnicodeString & RemoteDirectory, TSynchronizeMode & Mode,
  819. int Params, bool & SaveMode, int UseDefaults);
  820. void __fastcall StandaloneEdit(const UnicodeString & FileName);
  821. bool __fastcall CanPasteFromClipBoard();
  822. virtual void __fastcall PasteFromClipBoard();
  823. virtual void __fastcall CopyFilesToClipboard(TOperationSide Side, bool OnFocused);
  824. void __fastcall ToggleQueueVisibility();
  825. virtual UnicodeString __fastcall PathForCaption();
  826. void __fastcall FileListFromClipboard();
  827. void __fastcall SelectAll(TOperationSide Side, TSelectMode Mode);
  828. void __fastcall SelectByMask(TOperationSide Side, bool Select);
  829. void __fastcall RestoreSelectedNames(TOperationSide Side);
  830. void __fastcall SelectSameExt(bool Select);
  831. void __fastcall PreferencesDialog(TPreferencesMode APreferencesMode);
  832. virtual void __fastcall BeforeAction();
  833. void __fastcall FileSystemInfo();
  834. void __fastcall SessionGenerateUrl();
  835. void __fastcall FileGenerateUrl();
  836. void __fastcall ReadDirectoryCancelled();
  837. void __fastcall SynchronizeBrowsingChanged();
  838. void __fastcall ToggleShowHiddenFiles();
  839. void __fastcall SetFormatSizeBytes(TFormatBytesStyle Style);
  840. void __fastcall ToggleAutoReadDirectoryAfterOp();
  841. void __fastcall PopupTrayBalloon(TTerminal * Terminal, const UnicodeString & Str,
  842. TQueryType Type, Exception * E = NULL, unsigned int Seconds = 0,
  843. TNotifyEvent OnBalloonClick = NULL, TObject * UserData = NULL);
  844. void __fastcall RemoteFindFiles();
  845. virtual void __fastcall HistoryGo(TOperationSide Side, int Index);
  846. void __fastcall UpdateTaskbarList(ITaskbarList3 * TaskbarList);
  847. virtual void __fastcall DisplaySystemContextMenu();
  848. virtual void __fastcall GoToAddress() = 0;
  849. bool __fastcall CanConsole();
  850. bool __fastcall CanChangePassword();
  851. void __fastcall ChangePassword();
  852. bool __fastcall CanPrivateKeyUpload();
  853. void __fastcall PrivateKeyUpload();
  854. bool __fastcall IsComponentPossible(Byte Component);
  855. void __fastcall ReplaceTerminal(TManagedTerminal * value);
  856. virtual void __fastcall BrowseFile();
  857. void __fastcall CloseApp();
  858. virtual bool IsSideLocalBrowser(TOperationSide Side);
  859. virtual UnicodeString GetLocalBrowserSessionTitle(TManagedTerminal * Session);
  860. __property bool ComponentVisible[Byte Component] = { read = GetComponentVisible, write = SetComponentVisible };
  861. __property bool EnableFocusedOperation[TOperationSide Side] = { read = GetEnableFocusedOperation, index = 0 };
  862. __property bool EnableSelectedOperation[TOperationSide Side] = { read = GetEnableSelectedOperation, index = 0 };
  863. __property bool EnableFocusedFileOperation[TOperationSide Side] = { read = GetEnableFocusedOperation, index = 1 };
  864. __property bool EnableSelectedFileOperation[TOperationSide Side] = { read = GetEnableSelectedOperation, index = 1 };
  865. __property bool HasDirView[TOperationSide Side] = { read = GetHasDirView };
  866. __property TManagedTerminal * ManagedSession = { read = FManagedSession, write = SetManagedSession };
  867. __property TManagedTerminal * Terminal = { read = GetTerminal };
  868. __property TTerminalQueue * Queue = { read = FQueue, write = SetQueue };
  869. __property TColor SessionColor = { read = FSessionColor, write = SetSessionColor };
  870. };
  871. //---------------------------------------------------------------------------
  872. class TAutoBatch
  873. {
  874. public:
  875. TAutoBatch(TCustomScpExplorerForm * Form);
  876. ~TAutoBatch();
  877. private:
  878. TCustomScpExplorerForm * FForm;
  879. void * FBatchStorage;
  880. };
  881. //---------------------------------------------------------------------------
  882. #endif