CustomScpExplorer.h 44 KB

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