CustomScpExplorer.h 46 KB

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