NonVisual.cpp 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include <Common.h>
  5. #include "NonVisual.h"
  6. #include <CoreMain.h>
  7. #include <TextsWin.h>
  8. #include <Tools.h>
  9. #include <Setup.h>
  10. #include <Interface.h>
  11. #include "WinConfiguration.h"
  12. #include "TerminalManager.h"
  13. #include "TBX.hpp"
  14. #include "VCLCommon.h"
  15. #include <HistoryComboBox.hpp>
  16. //---------------------------------------------------------------------------
  17. #pragma package(smart_init)
  18. #pragma link "TB2Item"
  19. #pragma link "TBX"
  20. #pragma link "TB2ExtItems"
  21. #pragma link "TBXExtItems"
  22. #pragma link "TBXToolPals"
  23. #pragma resource "*.dfm"
  24. TNonVisualDataModule *NonVisualDataModule;
  25. //---------------------------------------------------------------------------
  26. #define SCPCOMMANDER ((TScpCommanderForm *)ScpExplorer)
  27. #define UPDEX(HandleAction, Condition, OtherEnabled, OtherDisabled) if (Action == HandleAction) { \
  28. ((TCustomAction *)Action)->Enabled = (Condition); \
  29. if (((TCustomAction *)Action)->Enabled) { OtherEnabled; } else { OtherDisabled; }; \
  30. Handled = true; } else
  31. #define UPDEX1(HandleAction, Condition, Other) UPDEX(HandleAction, Condition, Other, Other)
  32. #define UPD(HandleAction, Condition) if (Action == HandleAction) { \
  33. ((TCustomAction *)Action)->Enabled = (Condition); Handled = true; } else
  34. #define UPDFUNC(HandleAction, Function) if (Action == HandleAction) { Function; Handled = true; } else
  35. #define EXE(HandleAction, Command) if (Action == HandleAction) { \
  36. Command; Handled = true; } else
  37. #define UPDACT(HandleAction, Command) \
  38. EXE(HandleAction, ((TCustomAction *)Action)->Enabled = true; Command)
  39. #define UPDCOMP(COMP) if (Action == COMP ## Action) { COMP ## Action->Enabled = true; \
  40. COMP ## Action->Visible = ScpExplorer->IsComponentPossible(fc ## COMP); \
  41. COMP ## Action->Checked = ScpExplorer->ComponentVisible[fc ## COMP]; Handled = true; } else
  42. #define EXECOMP(COMP) EXE(COMP ## Action, \
  43. ScpExplorer->ComponentVisible[fc ## COMP] = !ScpExplorer->ComponentVisible[fc ## COMP] )
  44. #define COLPROPS(SIDE) \
  45. ((TCustomDirViewColProperties*)ScpExplorer->DirView(os ## SIDE)->ColProperties)
  46. #define UPDSORT(SIDE, PREFIX, COL) if (Action == SIDE ## SortBy ## COL ## Action) { \
  47. SIDE ## SortBy ## COL ## Action->Enabled = true; Handled = true; \
  48. SIDE ## SortBy ## COL ## Action->Checked = (COLPROPS(SIDE)->SortColumn == PREFIX ## COL); } else
  49. #define EXESORT(SIDE, PREFIX, COL) EXE(SIDE ## SortBy ## COL ## Action, \
  50. if (COLPROPS(SIDE)->SortColumn == PREFIX ## COL) \
  51. COLPROPS(SIDE)->SortAscending = !COLPROPS(SIDE)->SortAscending; \
  52. else COLPROPS(SIDE)->SortColumn = PREFIX ## COL )
  53. #define UPDSORTA(SIDE) if (Action == SIDE ## SortAscendingAction) { \
  54. SIDE ## SortAscendingAction->Enabled = true; Handled = true; \
  55. SIDE ## SortAscendingAction->Checked = COLPROPS(SIDE)->SortAscending; } else
  56. #define EXESORTA(SIDE) EXE(SIDE ## SortAscendingAction, \
  57. COLPROPS(SIDE)->SortAscending = !COLPROPS(SIDE)->SortAscending; )
  58. #define UPDSORTC(LPREFIX, LCOL, RPREFIX, RCOL) if (Action == CurrentSortBy ## RCOL ## Action) { \
  59. CurrentSortBy ## RCOL ## Action->Enabled = ScpExplorer->AllowedAction(Action, aaShortCut); \
  60. if (CurrentSortBy ## RCOL ## Action->Enabled) { \
  61. if (ScpExplorer->DirView(osCurrent) == ScpExplorer->DirView(osRemote)) \
  62. CurrentSortBy ## RCOL ## Action->Checked = (COLPROPS(Current)->SortColumn == RPREFIX ## RCOL); \
  63. else CurrentSortBy ## RCOL ## Action->Checked = (COLPROPS(Current)->SortColumn == LPREFIX ## LCOL); \
  64. } else CurrentSortBy ## RCOL ## Action->Checked = false; Handled = true; } else
  65. #define EXESORTC(COL, LCOL, RCOL) \
  66. EXE(CurrentSortBy ## COL ## Action, \
  67. Integer NewSortCol = \
  68. ((ScpExplorer->DirView(osCurrent) == ScpExplorer->DirView(osRemote)) ? RCOL : LCOL); \
  69. if (COLPROPS(Current)->SortColumn == NewSortCol) \
  70. COLPROPS(Current)->SortAscending = !COLPROPS(Current)->SortAscending; \
  71. else COLPROPS(Current)->SortColumn = NewSortCol \
  72. )
  73. #define UPDSHCOL(SIDE, PREFIX, COL) \
  74. EXE(ShowHide ## SIDE ## COL ## ColumnAction, \
  75. ShowHide ## SIDE ## COL ## ColumnAction->Checked = COLPROPS(SIDE)->Visible[PREFIX ## COL])
  76. #define EXESHCOL(SIDE, PREFIX, COL) \
  77. EXE(ShowHide ## SIDE ## COL ## ColumnAction, \
  78. COLPROPS(SIDE)->Visible[PREFIX ## COL] = !COLPROPS(SIDE)->Visible[PREFIX ## COL])
  79. #define BAND_COMPONENTS \
  80. EMIT_BAND_COMPONENT(ExplorerMenuBand) \
  81. EMIT_BAND_COMPONENT(ExplorerAddressBand) \
  82. EMIT_BAND_COMPONENT(ExplorerToolbarBand) \
  83. EMIT_BAND_COMPONENT(ExplorerSelectionBand) \
  84. EMIT_BAND_COMPONENT(ExplorerSessionBand) \
  85. EMIT_BAND_COMPONENT(ExplorerPreferencesBand) \
  86. EMIT_BAND_COMPONENT(ExplorerSortBand) \
  87. EMIT_BAND_COMPONENT(ExplorerUpdatesBand) \
  88. EMIT_BAND_COMPONENT(ExplorerTransferBand) \
  89. EMIT_BAND_COMPONENT(ExplorerCustomCommandsBand) \
  90. EMIT_BAND_COMPONENT(CommanderMenuBand) \
  91. EMIT_BAND_COMPONENT(CommanderSessionBand) \
  92. EMIT_BAND_COMPONENT(CommanderPreferencesBand) \
  93. EMIT_BAND_COMPONENT(CommanderSortBand) \
  94. EMIT_BAND_COMPONENT(CommanderCommandsBand) \
  95. EMIT_BAND_COMPONENT(CommanderUpdatesBand) \
  96. EMIT_BAND_COMPONENT(CommanderTransferBand) \
  97. EMIT_BAND_COMPONENT(CommanderCustomCommandsBand) \
  98. EMIT_BAND_COMPONENT(CommanderLocalHistoryBand) \
  99. EMIT_BAND_COMPONENT(CommanderLocalNavigationBand) \
  100. EMIT_BAND_COMPONENT(CommanderLocalFileBand) \
  101. EMIT_BAND_COMPONENT(CommanderLocalSelectionBand) \
  102. EMIT_BAND_COMPONENT(CommanderRemoteHistoryBand) \
  103. EMIT_BAND_COMPONENT(CommanderRemoteNavigationBand) \
  104. EMIT_BAND_COMPONENT(CommanderRemoteFileBand) \
  105. EMIT_BAND_COMPONENT(CommanderRemoteSelectionBand)
  106. //---------------------------------------------------------------------------
  107. __fastcall TNonVisualDataModule::TNonVisualDataModule(TComponent* Owner)
  108. : TDataModule(Owner)
  109. {
  110. FListColumn = NULL;
  111. FSessionIdleTimerExecuting = false;
  112. FCustomizedToolbar = NULL;
  113. FBusy = 0;
  114. QueueSpeedComboBoxItem(QueuePopupSpeedComboBoxItem);
  115. }
  116. //---------------------------------------------------------------------------
  117. __fastcall TNonVisualDataModule::~TNonVisualDataModule()
  118. {
  119. }
  120. //---------------------------------------------------------------------------
  121. void __fastcall TNonVisualDataModule::ExplorerActionsUpdate(
  122. TBasicAction * BasicAction, bool & Handled)
  123. {
  124. TAction * Action = DebugNotNull(dynamic_cast<TAction *>(BasicAction));
  125. if (!ScpExplorer || !ScpExplorer->AllowedAction(Action, aaUpdate))
  126. {
  127. Action->Enabled = false;
  128. Handled = true;
  129. return;
  130. }
  131. void * Param;
  132. #define HasTerminal ScpExplorer->HasActiveTerminal()
  133. // CURRENT DIRVIEW
  134. #define EnabledSelectedOperation (ScpExplorer->EnableSelectedOperation[osCurrent])
  135. #define EnabledFocusedOperation (ScpExplorer->EnableFocusedOperation[osCurrent])
  136. #define EnabledSelectedFileOperation (ScpExplorer->EnableSelectedFileOperation[osCurrent])
  137. #define EnabledFocusedFileOperation (ScpExplorer->EnableFocusedFileOperation[osCurrent])
  138. #define EnabledLocalSelectedOperation (ScpExplorer->HasDirView[osLocal] && ScpExplorer->EnableSelectedOperation[osLocal])
  139. #define EnabledLocalFocusedOperation (ScpExplorer->HasDirView[osLocal] && ScpExplorer->EnableFocusedOperation[osLocal])
  140. #define EnabledLocalSelectedFileOperation (ScpExplorer->HasDirView[osLocal] && ScpExplorer->EnableSelectedFileOperation[osLocal])
  141. #define EnabledRemoteSelectedOperation (ScpExplorer->EnableSelectedOperation[osRemote])
  142. #define EnabledRemoteFocusedOperation (ScpExplorer->EnableFocusedOperation[osRemote])
  143. #define EnabledRemoteSelectedFileOperation (ScpExplorer->EnableSelectedFileOperation[osRemote])
  144. // focused operation
  145. UPD(CurrentDeleteFocusedAction, EnabledFocusedOperation)
  146. UPD(CurrentPropertiesFocusedAction, EnabledFocusedOperation)
  147. UPD(CurrentEditFocusedAction, EnabledFocusedFileOperation &&
  148. !WinConfiguration->DisableOpenEdit)
  149. UPD(CurrentSystemMenuFocusedAction, EnabledFocusedOperation)
  150. UPD(CurrentEditWithFocusedAction, EnabledFocusedFileOperation &&
  151. !WinConfiguration->DisableOpenEdit)
  152. UPD(CurrentEditInternalFocusedAction, EnabledFocusedFileOperation &&
  153. !WinConfiguration->DisableOpenEdit)
  154. UPD(CurrentCopyToClipboardFocusedAction, EnabledFocusedOperation)
  155. // file operation
  156. UPD(CurrentRenameAction, EnabledFocusedOperation &&
  157. ((ScpExplorer->HasDirView[osLocal] && DirView(osLocal) == DirView(osCurrent)) ||
  158. ScpExplorer->Terminal->IsCapable[fcRename]))
  159. UPD(CurrentEditAction, EnabledSelectedFileOperation &&
  160. !WinConfiguration->DisableOpenEdit)
  161. UPD(CurrentEditInternalAction, EnabledSelectedFileOperation &&
  162. !WinConfiguration->DisableOpenEdit)
  163. UPD(CurrentEditWithAction, EnabledSelectedFileOperation &&
  164. !WinConfiguration->DisableOpenEdit)
  165. UPD(CurrentOpenAction, EnabledFocusedOperation &&
  166. !WinConfiguration->DisableOpenEdit)
  167. UPDEX1(CurrentAddEditLinkContextAction, ScpExplorer->CanAddEditLink(osCurrent),
  168. Action->Visible = ScpExplorer->LinkFocused())
  169. UPD(NewLinkAction, ScpExplorer->CanAddEditLink(osCurrent))
  170. // selected operation
  171. UPD(CurrentDeleteAction, EnabledSelectedOperation)
  172. UPD(CurrentDeleteAlternativeAction, EnabledSelectedOperation)
  173. UPD(CurrentPropertiesAction, EnabledSelectedOperation)
  174. UPD(CurrentCopyToClipboardAction, EnabledSelectedOperation)
  175. UPD(RemoteMoveToAction, EnabledSelectedOperation &&
  176. (DirView(osRemote) == DirView(osCurrent)) &&
  177. ScpExplorer->Terminal->IsCapable[fcRemoteMove])
  178. UPD(RemoteCopyToAction, EnabledSelectedOperation &&
  179. (DirView(osRemote) == DirView(osCurrent)))
  180. UPD(FileListToCommandLineAction, EnabledSelectedOperation)
  181. UPD(FileListToClipboardAction, EnabledSelectedOperation)
  182. UPD(FullFileListToClipboardAction, EnabledSelectedOperation)
  183. UPD(FileGenerateUrlAction2, EnabledSelectedOperation && (DirView(osRemote) == DirView(osCurrent)))
  184. UPD(FileListFromClipboardAction, IsFormatInClipboard(CF_TEXT))
  185. UPD(CurrentAddEditLinkAction, ScpExplorer->CanAddEditLink(osCurrent))
  186. UPD(LockAction,
  187. EnabledSelectedOperation && (DirView(osRemote) == DirView(osCurrent)) &&
  188. ScpExplorer->Terminal->IsCapable[fcLocking])
  189. UPD(UnlockAction,
  190. EnabledSelectedOperation && (DirView(osRemote) == DirView(osCurrent)) &&
  191. ScpExplorer->Terminal->IsCapable[fcLocking])
  192. // local selected operation
  193. UPD(LocalCopyAction, HasTerminal && EnabledLocalSelectedOperation)
  194. UPD(LocalCopyQueueAction, HasTerminal && EnabledLocalSelectedOperation && ScpExplorer->Terminal->IsCapable[fcBackgroundTransfers])
  195. UPD(LocalCopyNonQueueAction, HasTerminal && EnabledLocalSelectedOperation)
  196. UPD(LocalRenameAction, EnabledLocalSelectedOperation)
  197. UPD(LocalEditAction, EnabledLocalSelectedFileOperation && !WinConfiguration->DisableOpenEdit)
  198. UPD(LocalMoveAction, HasTerminal && EnabledLocalSelectedOperation)
  199. UPD(LocalCreateDirAction2, true)
  200. UPD(LocalDeleteAction, EnabledLocalSelectedOperation)
  201. UPD(LocalPropertiesAction, EnabledLocalSelectedOperation)
  202. UPD(LocalAddEditLinkAction2, ScpExplorer->CanAddEditLink(osLocal))
  203. UPD(LocalNewFileAction, !WinConfiguration->DisableOpenEdit)
  204. // local focused operation
  205. UPD(LocalCopyFocusedAction, HasTerminal && EnabledLocalFocusedOperation)
  206. UPD(LocalCopyFocusedQueueAction, HasTerminal && EnabledLocalFocusedOperation && ScpExplorer->Terminal->IsCapable[fcBackgroundTransfers])
  207. UPD(LocalCopyFocusedNonQueueAction, HasTerminal && EnabledLocalFocusedOperation)
  208. UPD(LocalMoveFocusedAction, HasTerminal && EnabledLocalFocusedOperation)
  209. // remote selected operation
  210. UPD(RemoteCopyAction, EnabledRemoteSelectedOperation)
  211. UPD(RemoteCopyQueueAction, EnabledRemoteSelectedOperation && ScpExplorer->Terminal->IsCapable[fcBackgroundTransfers])
  212. UPD(RemoteCopyNonQueueAction, EnabledRemoteSelectedOperation)
  213. UPD(RemoteRenameAction, EnabledRemoteSelectedOperation &&
  214. ScpExplorer->Terminal->IsCapable[fcRename])
  215. UPD(RemoteEditAction, EnabledRemoteSelectedFileOperation && !WinConfiguration->DisableOpenEdit)
  216. UPD(RemoteMoveAction, EnabledRemoteSelectedOperation)
  217. UPD(RemoteCreateDirAction2, DirViewEnabled(osRemote))
  218. UPD(RemoteNewFileAction, DirViewEnabled(osRemote) && !WinConfiguration->DisableOpenEdit)
  219. UPD(RemoteDeleteAction, EnabledRemoteSelectedOperation)
  220. UPD(RemotePropertiesAction, EnabledRemoteSelectedOperation)
  221. UPD(RemoteAddEditLinkAction2, ScpExplorer->CanAddEditLink(osRemote))
  222. // remote focused operation
  223. UPD(RemoteCopyFocusedAction, EnabledRemoteFocusedOperation)
  224. UPD(RemoteCopyFocusedQueueAction, EnabledRemoteFocusedOperation && ScpExplorer->Terminal->IsCapable[fcBackgroundTransfers])
  225. UPD(RemoteCopyFocusedNonQueueAction, EnabledRemoteFocusedOperation)
  226. UPD(RemoteMoveFocusedAction, EnabledRemoteFocusedOperation)
  227. UPD(RemoteMoveToFocusedAction, EnabledFocusedOperation &&
  228. (DirView(osRemote) == DirView(osCurrent)) &&
  229. ScpExplorer->Terminal->IsCapable[fcRemoteMove])
  230. UPD(RemoteCopyToFocusedAction, EnabledFocusedOperation &&
  231. DirView(osRemote) == DirView(osCurrent))
  232. // directory
  233. UPD(CurrentCreateDirAction, DirViewEnabled(osCurrent))
  234. UPD(NewDirAction, DirViewEnabled(osCurrent))
  235. UPD(RemoteFindFilesAction, DirViewEnabled(osRemote))
  236. // selection
  237. UPD(SelectOneAction, DirView(osCurrent)->FilesCount)
  238. UPD(SelectAction, DirView(osCurrent)->FilesCount)
  239. UPD(UnselectAction, DirView(osCurrent)->SelCount)
  240. UPD(SelectAllAction, DirView(osCurrent)->FilesCount)
  241. UPD(InvertSelectionAction, DirView(osCurrent)->FilesCount)
  242. UPD(ClearSelectionAction, DirView(osCurrent)->SelCount)
  243. UPD(RestoreSelectionAction, DirView(osCurrent)->SelectedNamesSaved)
  244. UPD(SelectSameExtAction, EnabledFocusedFileOperation)
  245. UPD(UnselectSameExtAction, EnabledFocusedFileOperation)
  246. UPD(PasteAction2, ScpExplorer->CanPasteFromClipBoard())
  247. UPD(LocalSelectAction, ScpExplorer->HasDirView[osLocal] && DirView(osLocal)->FilesCount)
  248. UPD(LocalUnselectAction, ScpExplorer->HasDirView[osLocal] && DirView(osLocal)->SelCount)
  249. UPD(LocalSelectAllAction, ScpExplorer->HasDirView[osLocal] && DirView(osLocal)->FilesCount)
  250. UPD(RemoteSelectAction, DirView(osRemote)->FilesCount)
  251. UPD(RemoteUnselectAction, DirView(osRemote)->SelCount)
  252. UPD(RemoteSelectAllAction, DirView(osRemote)->FilesCount)
  253. //style
  254. UPDACT(CurrentCycleStyleAction,
  255. CurrentCycleStyleAction->ImageIndex = 8 + (DirView(osCurrent)->ViewStyle + 1) % 4)
  256. #define STYLEACTION(Style) UPDACT(Current ## Style ## Action, \
  257. Current ## Style ## Action->Checked = (DirView(osCurrent)->ViewStyle == vs ## Style))
  258. STYLEACTION(Icon)
  259. STYLEACTION(SmallIcon)
  260. STYLEACTION(List)
  261. STYLEACTION(Report)
  262. #undef STYLEACTION
  263. // REMOTE+LOCAL
  264. // back/forward
  265. #define HISTORYACTION(SIDE, DIRECTION, HINTFMT, DELTA) \
  266. UPDEX(SIDE ## DIRECTION ## Action, DirViewEnabled(os ## SIDE) && (DirView(os ## SIDE)->DIRECTION ## Count > 0), \
  267. SIDE ## DIRECTION ## Action->Hint = FMTLOAD(HINTFMT, (DirView(os ## SIDE)->HistoryPath[DELTA])), \
  268. SIDE ## DIRECTION ## Action->Hint = L"")
  269. HISTORYACTION(Local, Back, EXPLORER_BACK_HINT, -1)
  270. HISTORYACTION(Local, Forward, EXPLORER_FORWARD_HINT, 1)
  271. HISTORYACTION(Remote, Back, EXPLORER_BACK_HINT, -1)
  272. HISTORYACTION(Remote, Forward, EXPLORER_FORWARD_HINT, 1)
  273. #undef HISTORYACTION
  274. #define PANEL_ACTIONS(SIDE) \
  275. UPD(SIDE ## ParentDirAction, DirViewEnabled(os ## SIDE) && !DirView(os ## SIDE)->IsRoot) \
  276. UPD(SIDE ## RootDirAction, DirViewEnabled(os ## SIDE) &&!DirView(os ## SIDE)->IsRoot) \
  277. UPD(SIDE ## HomeDirAction, DirViewEnabled(os ## SIDE)) \
  278. UPD(SIDE ## RefreshAction, DirViewEnabled(os ## SIDE) && DirView(os ## SIDE)->DirOK) \
  279. UPD(SIDE ## OpenDirAction, DirViewEnabled(os ## SIDE)) \
  280. UPD(SIDE ## ChangePathAction, DirViewEnabled(os ## SIDE)) \
  281. UPD(SIDE ## AddBookmarkAction, DirViewEnabled(os ## SIDE)) \
  282. UPD(SIDE ## PathToClipboardAction, DirViewEnabled(os ## SIDE)) \
  283. UPDEX1(SIDE ## FilterAction, DirViewEnabled(os ## SIDE), Action->Checked = !DirView(os ## SIDE)->Mask.IsEmpty())
  284. PANEL_ACTIONS(Local)
  285. PANEL_ACTIONS(Remote)
  286. #undef PANEL_ACTIONS
  287. UPD(LocalExploreDirectoryAction, true)
  288. // HELP
  289. UPD(AboutAction, true)
  290. UPD(HomepageAction, true)
  291. UPD(HistoryPageAction, true)
  292. UPD(TableOfContentsAction, true)
  293. UPD(ForumPageAction, true)
  294. UPDACT(CheckForUpdatesAction, ShowUpdatesUpdate())
  295. UPD(UpdatesPreferencesAction, true)
  296. UPD(DonatePageAction, true)
  297. UPD(DownloadPageAction, true)
  298. UPDEX1(TipsAction, true, TipsAction->Visible = AnyTips())
  299. // VIEW
  300. UPDCOMP(SessionsTabs)
  301. UPDCOMP(StatusBar)
  302. UPDCOMP(ToolBar2)
  303. UPDCOMP(LocalStatusBar)
  304. UPDCOMP(RemoteStatusBar)
  305. UPDCOMP(CommandLinePanel)
  306. UPDCOMP(RemoteTree)
  307. UPDCOMP(LocalTree)
  308. #define EMIT_BAND_COMPONENT(COMP) UPDCOMP(COMP)
  309. BAND_COMPONENTS
  310. #undef EMIT_BAND_COMPONENT
  311. UPD(GoToCommandLineAction, true)
  312. UPD(GoToTreeAction, true)
  313. UPDEX(ShowHiddenFilesAction, true,
  314. ShowHiddenFilesAction->Checked = WinConfiguration->ShowHiddenFiles, )
  315. UPDEX(FormatSizeBytesNoneAction, true,
  316. FormatSizeBytesNoneAction->Checked = (WinConfiguration->FormatSizeBytes == fbNone), )
  317. UPDEX(FormatSizeBytesKilobytesAction, true,
  318. FormatSizeBytesKilobytesAction->Checked = (WinConfiguration->FormatSizeBytes == fbKilobytes), )
  319. UPDEX(FormatSizeBytesShortAction, true,
  320. FormatSizeBytesShortAction->Checked = (WinConfiguration->FormatSizeBytes == fbShort), )
  321. UPDEX(AutoReadDirectoryAfterOpAction, true,
  322. AutoReadDirectoryAfterOpAction->Checked = Configuration->AutoReadDirectoryAfterOp, )
  323. UPD(PreferencesAction, true)
  324. UPD(PresetsPreferencesAction, true)
  325. UPD(FileColorsPreferencesAction, true)
  326. UPDEX(LockToolbarsAction, true,
  327. LockToolbarsAction->Checked = WinConfiguration->LockToolbars, )
  328. UPDEX(SelectiveToolbarTextAction, true,
  329. SelectiveToolbarTextAction->Checked = WinConfiguration->SelectiveToolbarText, )
  330. UPDCOMP(CustomCommandsBand)
  331. UPD(ColorMenuAction, HasTerminal)
  332. UPD(GoToAddressAction, true)
  333. UPD(CustomizeToolbarAction, IsToolbarCustomizable())
  334. // SORT
  335. UPDSORTA(Local)
  336. UPDSORT(Local, dv, Name)
  337. UPDSORT(Local, dv, Ext)
  338. UPDSORT(Local, dv, Size)
  339. UPDSORT(Local, dv, Type)
  340. UPDSORT(Local, dv, Changed)
  341. UPDSORT(Local, dv, Attr)
  342. UPDSORTA(Remote)
  343. UPDSORT(Remote, uv, Name)
  344. UPDSORT(Remote, uv, Ext)
  345. UPDSORT(Remote, uv, Size)
  346. UPDSORT(Remote, uv, Changed)
  347. UPDSORT(Remote, uv, Rights)
  348. UPDSORT(Remote, uv, Owner)
  349. UPDSORT(Remote, uv, Group)
  350. UPDSORT(Remote, uv, Type)
  351. UPDSORTA(Current)
  352. UPDSORTC(dv, Name, uv, Name)
  353. UPDSORTC(dv, Ext, uv, Ext)
  354. UPDSORTC(dv, Size, uv, Size)
  355. UPDSORTC(dv, Type, uv, Type)
  356. UPDSORTC(dv, Changed, uv, Changed)
  357. UPDSORTC(dv, Attr, uv, Rights)
  358. UPDSORTC(dv, Name, uv, Owner)
  359. UPDSORTC(dv, Name, uv, Group)
  360. #define COLVIEWPROPS ((TCustomDirViewColProperties*)(((TCustomDirView*)(((TListColumns*)(ListColumn->Collection))->Owner()))->ColProperties))
  361. UPDEX(SortColumnAscendingAction, (ListColumn != NULL), SortColumnAscendingAction->Checked =
  362. (COLVIEWPROPS->SortColumn == ListColumn->Index) && COLVIEWPROPS->SortAscending, )
  363. UPDEX(SortColumnDescendingAction, (ListColumn != NULL), SortColumnDescendingAction->Checked =
  364. (COLVIEWPROPS->SortColumn == ListColumn->Index) && !COLVIEWPROPS->SortAscending, )
  365. #undef COLVIEWPROPS
  366. // SHOW/HIDE COLUMN
  367. UPDSHCOL(Local, dv, Name)
  368. UPDSHCOL(Local, dv, Ext)
  369. UPDSHCOL(Local, dv, Size)
  370. UPDSHCOL(Local, dv, Type)
  371. UPDSHCOL(Local, dv, Changed)
  372. UPDSHCOL(Local, dv, Attr)
  373. UPDSHCOL(Remote, uv, Name)
  374. UPDSHCOL(Remote, uv, Ext)
  375. UPDSHCOL(Remote, uv, Size)
  376. UPDSHCOL(Remote, uv, Changed)
  377. UPDSHCOL(Remote, uv, Rights)
  378. UPDSHCOL(Remote, uv, Owner)
  379. UPDSHCOL(Remote, uv, Group)
  380. UPDSHCOL(Remote, uv, LinkTarget)
  381. UPDSHCOL(Remote, uv, Type)
  382. UPD(HideColumnAction, (ListColumn != NULL))
  383. UPD(BestFitColumnAction, (ListColumn != NULL))
  384. // SESSION
  385. UPD(NewSessionAction, true)
  386. UPD(SiteManagerAction, true)
  387. UPD(DuplicateSessionAction, (ScpExplorer->Terminal != NULL))
  388. UPD(RenameSessionAction, (ScpExplorer->Terminal != NULL))
  389. UPD(CloseSessionAction2, (ScpExplorer->Terminal != NULL))
  390. UPDEX1(DisconnectSessionAction, HasTerminal, DisconnectSessionAction->Visible = (ScpExplorer->Terminal == NULL) || !ScpExplorer->Terminal->Disconnected)
  391. UPDEX1(ReconnectSessionAction, (ScpExplorer->Terminal != NULL) && ScpExplorer->Terminal->Disconnected, ReconnectSessionAction->Visible = ReconnectSessionAction->Enabled)
  392. UPD(SavedSessionsAction2, true)
  393. UPD(WorkspacesAction, StoredSessions->HasAnyWorkspace())
  394. UPD(OpenedSessionsAction, HasTerminal)
  395. UPD(SaveCurrentSessionAction2, HasTerminal)
  396. UPD(SaveWorkspaceAction, HasTerminal)
  397. // COMMAND
  398. UPD(CompareDirectoriesAction, HasTerminal)
  399. UPD(SynchronizeAction, HasTerminal)
  400. UPD(FullSynchronizeAction, HasTerminal)
  401. UPD(ConsoleAction, ScpExplorer->CanConsole())
  402. UPD(PuttyAction, HasTerminal && TTerminalManager::Instance()->CanOpenInPutty())
  403. UPD(SynchronizeBrowsingAction, HasTerminal)
  404. UPD(CloseApplicationAction, true)
  405. UPD(FileSystemInfoAction, HasTerminal)
  406. UPD(SessionGenerateUrlAction2, HasTerminal)
  407. UPD(ClearCachesAction, HasTerminal && !ScpExplorer->Terminal->AreCachesEmpty)
  408. UPD(NewFileAction, DirViewEnabled(osCurrent) && !WinConfiguration->DisableOpenEdit)
  409. UPD(EditorListCustomizeAction, true)
  410. UPD(ChangePasswordAction, ScpExplorer->CanChangePassword())
  411. UPD(PrivateKeyUploadAction, ScpExplorer->CanPrivateKeyUpload())
  412. // CUSTOM COMMANDS
  413. UPD(CustomCommandsFileAction, true)
  414. UPD(CustomCommandsNonFileAction, true)
  415. UPD(CustomCommandsEnterAction, true)
  416. UPD(CustomCommandsEnterFocusedAction, true)
  417. UPDFUNC(CustomCommandsLastAction, CustomCommandsLastUpdate(CustomCommandsLastAction))
  418. UPDFUNC(CustomCommandsLastFocusedAction, CustomCommandsLastUpdate(CustomCommandsLastFocusedAction))
  419. UPD(CustomCommandsCustomizeAction, true)
  420. // QUEUE
  421. UPDEX(QueueEnableAction, HasTerminal, Action->Checked = ScpExplorer->GetQueueEnabled(), )
  422. #define UPDQUEUE(OPERATION) UPD(Queue ## OPERATION ## Action, \
  423. ScpExplorer->AllowQueueOperation(qo ## OPERATION))
  424. UPDQUEUE(GoTo)
  425. UPDQUEUE(Preferences)
  426. UPDEX(QueueItemQueryAction, ScpExplorer->AllowQueueOperation(qoItemQuery),
  427. Action->Visible = true, Action->Visible = false)
  428. UPDEX(QueueItemErrorAction, ScpExplorer->AllowQueueOperation(qoItemError),
  429. Action->Visible = true, Action->Visible = false)
  430. UPDEX(QueueItemPromptAction, ScpExplorer->AllowQueueOperation(qoItemPrompt),
  431. Action->Visible = true, Action->Visible = false)
  432. UPDQUEUE(ItemDelete)
  433. UPDEX(QueueItemExecuteAction, ScpExplorer->AllowQueueOperation(qoItemExecute),
  434. Action->Visible = true, Action->Visible =
  435. !ScpExplorer->AllowQueueOperation(qoItemPause) &&
  436. !ScpExplorer->AllowQueueOperation(qoItemResume))
  437. UPDEX(QueueItemPauseAction, ScpExplorer->AllowQueueOperation(qoItemPause),
  438. Action->Visible = true, Action->Visible = false)
  439. UPDEX(QueueItemResumeAction, ScpExplorer->AllowQueueOperation(qoItemResume),
  440. Action->Visible = true, Action->Visible = false)
  441. UPDQUEUE(ItemUp)
  442. UPDQUEUE(ItemDown)
  443. UPDQUEUE(PauseAll)
  444. UPDQUEUE(ResumeAll)
  445. UPDQUEUE(DeleteAll)
  446. UPDQUEUE(DeleteAllDone)
  447. #undef UPDQUEUE
  448. UPDEX(QueueItemSpeedAction, ScpExplorer->AllowQueueOperation(qoItemSpeed, &Param),
  449. QueueItemSpeedAction->Text = SetSpeedLimit(reinterpret_cast<unsigned long>(Param)),
  450. QueueItemSpeedAction->Text = L"")
  451. UPDACT(QueueToggleShowAction,
  452. Action->Checked = ScpExplorer->ComponentVisible[fcQueueView])
  453. #define QUEUEACTION(SHOW) UPDACT(Queue ## SHOW ## Action, \
  454. Action->Checked = WinConfiguration->QueueView.Show == qv ## SHOW)
  455. QUEUEACTION(Show)
  456. QUEUEACTION(HideWhenEmpty)
  457. QUEUEACTION(Hide)
  458. #undef QUEUEACTION
  459. UPDEX1(QueueCycleOnceEmptyAction, ScpExplorer->AllowQueueOperation(qoOnceEmpty),
  460. QueueCycleOnceEmptyAction->ImageIndex = CurrentQueueOnceEmptyAction()->ImageIndex;
  461. QueueCycleOnceEmptyAction->Checked = !QueueIdleOnceEmptyAction->Checked)
  462. UPD(QueueIdleOnceEmptyAction, ScpExplorer->AllowQueueOperation(qoOnceEmpty))
  463. UPD(QueueDisconnectOnceEmptyAction2, ScpExplorer->AllowQueueOperation(qoOnceEmpty))
  464. UPD(QueueSuspendOnceEmptyAction2, ScpExplorer->AllowQueueOperation(qoOnceEmpty))
  465. UPD(QueueShutDownOnceEmptyAction2, ScpExplorer->AllowQueueOperation(qoOnceEmpty))
  466. UPDCOMP(CommanderPreferencesBand)
  467. UPDACT(QueueToolbarAction,
  468. Action->Enabled = ScpExplorer->ComponentVisible[fcQueueView];
  469. Action->Checked = ScpExplorer->ComponentVisible[fcQueueToolbar])
  470. UPDACT(QueueFileListAction,
  471. Action->Enabled = ScpExplorer->ComponentVisible[fcQueueView];
  472. Action->Checked = ScpExplorer->ComponentVisible[fcQueueFileList])
  473. ;
  474. }
  475. //---------------------------------------------------------------------------
  476. void __fastcall TNonVisualDataModule::ExplorerActionsExecute(
  477. TBasicAction * BasicAction, bool & Handled)
  478. {
  479. DebugAssert(ScpExplorer);
  480. TAction * Action = DebugNotNull(dynamic_cast<TAction *>(BasicAction));
  481. if (!ScpExplorer->AllowedAction(Action, aaExecute))
  482. {
  483. Handled = true;
  484. return;
  485. }
  486. ScpExplorer->BeforeAction();
  487. unsigned int ShortCutFlag = FLAGMASK((Action->ActionComponent == NULL), cocShortCutHint);
  488. {
  489. TAutoNestingCounter Counter(FBusy);
  490. // focused operation
  491. EXE(CurrentDeleteFocusedAction, ScpExplorer->ExecuteFileOperationCommand(foDelete, osCurrent, true))
  492. EXE(CurrentPropertiesFocusedAction, ScpExplorer->ExecuteFileOperationCommand(foSetProperties, osCurrent, true))
  493. EXE(CurrentEditFocusedAction, ScpExplorer->ExecuteFile(osCurrent, efDefaultEditor, NULL, true, true))
  494. EXE(CurrentSystemMenuFocusedAction, ScpExplorer->DisplaySystemContextMenu())
  495. EXE(CurrentEditWithFocusedAction, ScpExplorer->ExecuteCurrentFileWith(true))
  496. EXE(CurrentEditInternalFocusedAction, ScpExplorer->ExecuteFile(osCurrent, efInternalEditor, NULL, true, true))
  497. EXE(CurrentCopyToClipboardFocusedAction, ScpExplorer->CopyFilesToClipboard(osCurrent, true))
  498. // operation
  499. EXE(CurrentEditAction, ScpExplorer->ExecuteFile(osCurrent, efDefaultEditor, NULL, true, false))
  500. EXE(CurrentEditInternalAction, ScpExplorer->ExecuteFile(osCurrent, efInternalEditor, NULL, true, false))
  501. EXE(CurrentEditWithAction, ScpExplorer->ExecuteCurrentFileWith(false))
  502. EXE(CurrentOpenAction, ScpExplorer->ExecuteCurrentFile())
  503. EXE(CurrentAddEditLinkAction, ScpExplorer->AddEditLink(osCurrent, false))
  504. EXE(CurrentAddEditLinkContextAction, ScpExplorer->AddEditLink(osCurrent, false))
  505. EXE(NewLinkAction, ScpExplorer->AddEditLink(osCurrent, true))
  506. EXE(CurrentRenameAction, ScpExplorer->ExecuteFileOperationCommand(foRename, osCurrent, false))
  507. EXE(CurrentDeleteAction, ScpExplorer->ExecuteFileOperationCommand(foDelete, osCurrent, false))
  508. EXE(CurrentDeleteAlternativeAction, ScpExplorer->ExecuteFileOperationCommand(foDelete, osCurrent, false, false, (void*)true))
  509. EXE(CurrentPropertiesAction, ScpExplorer->ExecuteFileOperationCommand(foSetProperties, osCurrent, false))
  510. EXE(CurrentCopyToClipboardAction, ScpExplorer->CopyFilesToClipboard(osCurrent, false))
  511. EXE(FileListToCommandLineAction, ScpExplorer->PanelExport(osCurrent, peFileList, pedCommandLine))
  512. EXE(FileListToClipboardAction, ScpExplorer->PanelExport(osCurrent, peFileList, pedClipboard))
  513. EXE(FullFileListToClipboardAction, ScpExplorer->PanelExport(osCurrent, peFullFileList, pedClipboard))
  514. EXE(FileGenerateUrlAction2, ScpExplorer->FileGenerateUrl())
  515. EXE(FileListFromClipboardAction, ScpExplorer->FileListFromClipboard())
  516. EXE(LockAction, ScpExplorer->ExecuteFileOperationCommand(foLock, osCurrent, false))
  517. EXE(UnlockAction, ScpExplorer->ExecuteFileOperationCommand(foUnlock, osCurrent, false))
  518. // local selected operation
  519. EXE(LocalCopyAction, ScpExplorer->ExecuteCopyOperationCommand(osLocal, false, ShortCutFlag))
  520. EXE(LocalCopyQueueAction, ScpExplorer->ExecuteCopyOperationCommand(osLocal, false, cocQueue))
  521. EXE(LocalCopyNonQueueAction, ScpExplorer->ExecuteCopyOperationCommand(osLocal, false, cocNonQueue))
  522. EXE(LocalRenameAction, ScpExplorer->ExecuteFileOperationCommand(foRename, osLocal, false))
  523. EXE(LocalEditAction, ScpExplorer->ExecuteFile(osLocal, efDefaultEditor, NULL, true, false))
  524. EXE(LocalMoveAction, ScpExplorer->ExecuteFileOperationCommand(foMove, osLocal, false))
  525. EXE(LocalCreateDirAction2, ScpExplorer->CreateDirectory(osLocal))
  526. EXE(LocalDeleteAction, ScpExplorer->ExecuteFileOperationCommand(foDelete, osLocal, false))
  527. EXE(LocalPropertiesAction, ScpExplorer->ExecuteFileOperationCommand(foSetProperties, osLocal, false))
  528. EXE(LocalAddEditLinkAction2, ScpExplorer->AddEditLink(osLocal, false))
  529. EXE(LocalNewFileAction, ScpExplorer->EditNew(osLocal))
  530. // local focused operation
  531. EXE(LocalCopyFocusedAction, ScpExplorer->ExecuteCopyOperationCommand(osLocal, true, ShortCutFlag))
  532. EXE(LocalCopyFocusedQueueAction, ScpExplorer->ExecuteCopyOperationCommand(osLocal, true, cocQueue))
  533. EXE(LocalCopyFocusedNonQueueAction, ScpExplorer->ExecuteCopyOperationCommand(osLocal, true, cocNonQueue))
  534. EXE(LocalMoveFocusedAction, ScpExplorer->ExecuteFileOperationCommand(foMove, osLocal, true))
  535. // remote selected operation
  536. EXE(RemoteCopyAction, ScpExplorer->ExecuteCopyOperationCommand(osRemote, false, ShortCutFlag))
  537. EXE(RemoteCopyQueueAction, ScpExplorer->ExecuteCopyOperationCommand(osRemote, false, cocQueue))
  538. EXE(RemoteCopyNonQueueAction, ScpExplorer->ExecuteCopyOperationCommand(osRemote, false, cocNonQueue))
  539. EXE(RemoteRenameAction, ScpExplorer->ExecuteFileOperationCommand(foRename, osRemote, false))
  540. EXE(RemoteEditAction, ScpExplorer->ExecuteFile(osRemote, efDefaultEditor, NULL, true, false))
  541. EXE(RemoteMoveAction, ScpExplorer->ExecuteFileOperationCommand(foMove, osRemote, false))
  542. EXE(RemoteCreateDirAction2, ScpExplorer->CreateDirectory(osRemote))
  543. EXE(RemoteNewFileAction, ScpExplorer->EditNew(osRemote))
  544. EXE(RemoteDeleteAction, ScpExplorer->ExecuteFileOperationCommand(foDelete, osRemote, false))
  545. EXE(RemotePropertiesAction, ScpExplorer->ExecuteFileOperationCommand(foSetProperties, osRemote, false))
  546. EXE(RemoteMoveToAction, ScpExplorer->ExecuteFileOperationCommand(foRemoteMove, osCurrent, false))
  547. EXE(RemoteCopyToAction, ScpExplorer->ExecuteFileOperationCommand(foRemoteCopy, osCurrent, false))
  548. EXE(RemoteAddEditLinkAction2, ScpExplorer->AddEditLink(osRemote, false))
  549. // remote focused operation
  550. EXE(RemoteCopyFocusedAction, ScpExplorer->ExecuteCopyOperationCommand(osRemote, true, ShortCutFlag))
  551. EXE(RemoteCopyFocusedQueueAction, ScpExplorer->ExecuteCopyOperationCommand(osRemote, true, cocQueue))
  552. EXE(RemoteCopyFocusedNonQueueAction, ScpExplorer->ExecuteCopyOperationCommand(osRemote, true, cocNonQueue))
  553. EXE(RemoteMoveFocusedAction, ScpExplorer->ExecuteFileOperationCommand(foMove, osRemote, true))
  554. EXE(RemoteMoveToFocusedAction, ScpExplorer->ExecuteFileOperationCommand(foRemoteMove, osCurrent, true))
  555. EXE(RemoteCopyToFocusedAction, ScpExplorer->ExecuteFileOperationCommand(foRemoteCopy, osCurrent, true))
  556. // directory
  557. EXE(CurrentCreateDirAction, ScpExplorer->CreateDirectory(osCurrent))
  558. EXE(NewDirAction, ScpExplorer->CreateDirectory(osCurrent))
  559. EXE(RemoteFindFilesAction, ScpExplorer->RemoteFindFiles())
  560. //selection
  561. EXE(SelectOneAction, DirView(osCurrent)->SelectCurrentItem(DirView(osCurrent)->NortonLike))
  562. EXE(SelectAction, ScpExplorer->SelectByMask(osCurrent, true))
  563. EXE(UnselectAction, ScpExplorer->SelectByMask(osCurrent, false))
  564. EXE(SelectAllAction, ScpExplorer->SelectAll(osCurrent, smAll))
  565. EXE(InvertSelectionAction, ScpExplorer->SelectAll(osCurrent, smInvert))
  566. EXE(ClearSelectionAction, ScpExplorer->SelectAll(osCurrent, smNone))
  567. EXE(RestoreSelectionAction, ScpExplorer->RestoreSelectedNames(osCurrent))
  568. EXE(SelectSameExtAction, ScpExplorer->SelectSameExt(true))
  569. EXE(UnselectSameExtAction, ScpExplorer->SelectSameExt(false))
  570. EXE(LocalSelectAction, ScpExplorer->SelectByMask(osLocal, true))
  571. EXE(LocalUnselectAction, ScpExplorer->SelectByMask(osLocal, false))
  572. EXE(LocalSelectAllAction, ScpExplorer->SelectAll(osLocal, smAll))
  573. EXE(RemoteSelectAction, ScpExplorer->SelectByMask(osRemote, true))
  574. EXE(RemoteUnselectAction, ScpExplorer->SelectByMask(osRemote, false))
  575. EXE(RemoteSelectAllAction, ScpExplorer->SelectAll(osRemote, smAll))
  576. EXE(PasteAction2, ScpExplorer->PasteFromClipBoard())
  577. // style
  578. EXE(CurrentCycleStyleAction,
  579. if (DirView(osCurrent)->ViewStyle == vsReport) DirView(osCurrent)->ViewStyle = vsIcon;
  580. else DirView(osCurrent)->ViewStyle = (TViewStyle)(DirView(osCurrent)->ViewStyle + 1);
  581. )
  582. #define STYLEACTION(Style) EXE(Current ## Style ## Action, \
  583. DirView(osCurrent)->ViewStyle = vs ## Style)
  584. STYLEACTION(Icon)
  585. STYLEACTION(SmallIcon)
  586. STYLEACTION(List)
  587. STYLEACTION(Report)
  588. #undef STYLEACTION
  589. #define PANEL_ACTIONS(SIDE) \
  590. EXE(SIDE ## BackAction, ScpExplorer->HistoryGo(os ## SIDE, -1)) \
  591. EXE(SIDE ## ForwardAction, ScpExplorer->HistoryGo(os ## SIDE, 1)) \
  592. EXE(SIDE ## ParentDirAction, DirView(os ## SIDE)->ExecuteParentDirectory()) \
  593. EXE(SIDE ## RootDirAction, DirView(os ## SIDE)->ExecuteRootDirectory()) \
  594. EXE(SIDE ## HomeDirAction, ScpExplorer->HomeDirectory(os ## SIDE)) \
  595. EXE(SIDE ## RefreshAction, ScpExplorer->ReloadDirectory(os ## SIDE)) \
  596. EXE(SIDE ## OpenDirAction, ScpExplorer->OpenDirectory(os ## SIDE)) \
  597. EXE(SIDE ## ChangePathAction, ScpExplorer->ChangePath(os ## SIDE)) \
  598. EXE(SIDE ## AddBookmarkAction, ScpExplorer->AddBookmark(os ## SIDE)) \
  599. EXE(SIDE ## PathToClipboardAction, ScpExplorer->PanelExport(os ## SIDE, pePath, pedClipboard)) \
  600. EXE(SIDE ## FilterAction, ScpExplorer->Filter(os ## SIDE))
  601. PANEL_ACTIONS(Local)
  602. PANEL_ACTIONS(Remote)
  603. #undef PANEL_ACTIONS
  604. EXE(LocalExploreDirectoryAction, ScpExplorer->ExploreLocalDirectory())
  605. //HELP
  606. EXE(AboutAction, DoAboutDialog(Configuration))
  607. EXE(HomepageAction, OpenBrowser(LoadStr(HOMEPAGE_URL)))
  608. EXE(HistoryPageAction, OpenBrowser(LoadStr(HISTORY_URL)))
  609. EXE(TableOfContentsAction, Application->HelpSystem->ShowTableOfContents())
  610. EXE(ForumPageAction, OpenBrowser(LoadStr(FORUM_URL)))
  611. EXE(CheckForUpdatesAction, CheckForUpdates(false))
  612. EXE(UpdatesPreferencesAction, PreferencesDialog(pmUpdates))
  613. EXE(DonatePageAction, OpenBrowser(LoadStr(DONATE_URL)))
  614. EXE(DownloadPageAction, OpenBrowser(LoadStr(DOWNLOAD_URL)))
  615. EXE(TipsAction, ShowTips())
  616. // VIEW
  617. EXECOMP(SessionsTabs)
  618. EXECOMP(StatusBar)
  619. EXECOMP(ToolBar2)
  620. EXECOMP(LocalStatusBar)
  621. EXECOMP(RemoteStatusBar)
  622. #define EMIT_BAND_COMPONENT(COMP) EXECOMP(COMP)
  623. BAND_COMPONENTS
  624. #undef EMIT_BAND_COMPONENT
  625. EXECOMP(CommandLinePanel)
  626. EXECOMP(RemoteTree)
  627. EXECOMP(LocalTree)
  628. EXE(GoToCommandLineAction, ScpExplorer->GoToCommandLine())
  629. EXE(GoToTreeAction, ScpExplorer->GoToTree())
  630. EXE(ShowHiddenFilesAction, ScpExplorer->ToggleShowHiddenFiles())
  631. EXE(FormatSizeBytesNoneAction, ScpExplorer->SetFormatSizeBytes(fbNone))
  632. EXE(FormatSizeBytesKilobytesAction, ScpExplorer->SetFormatSizeBytes(fbKilobytes))
  633. EXE(FormatSizeBytesShortAction, ScpExplorer->SetFormatSizeBytes(fbShort))
  634. EXE(AutoReadDirectoryAfterOpAction, ScpExplorer->ToggleAutoReadDirectoryAfterOp())
  635. EXE(PreferencesAction, PreferencesDialog(::pmDefault) )
  636. EXE(PresetsPreferencesAction, PreferencesDialog(pmPresets) )
  637. EXE(FileColorsPreferencesAction, PreferencesDialog(pmFileColors) )
  638. EXE(LockToolbarsAction, WinConfiguration->LockToolbars = !WinConfiguration->LockToolbars)
  639. EXE(SelectiveToolbarTextAction, WinConfiguration->SelectiveToolbarText = !WinConfiguration->SelectiveToolbarText)
  640. EXECOMP(CustomCommandsBand)
  641. EXE(ColorMenuAction, CreateSessionColorMenu(ColorMenuAction))
  642. EXE(GoToAddressAction, ScpExplorer->GoToAddress())
  643. EXE(CustomizeToolbarAction, CreateToolbarButtonsList())
  644. #define COLVIEWPROPS ((TCustomDirViewColProperties*)(((TCustomDirView*)(((TListColumns*)(ListColumn->Collection))->Owner()))->ColProperties))
  645. // SORT
  646. EXESORTA(Local)
  647. EXESORT(Local, dv, Name)
  648. EXESORT(Local, dv, Ext)
  649. EXESORT(Local, dv, Size)
  650. EXESORT(Local, dv, Type)
  651. EXESORT(Local, dv, Changed)
  652. EXESORT(Local, dv, Attr)
  653. EXESORTA(Remote)
  654. EXESORT(Remote, uv, Name)
  655. EXESORT(Remote, uv, Ext)
  656. EXESORT(Remote, uv, Size)
  657. EXESORT(Remote, uv, Changed)
  658. EXESORT(Remote, uv, Rights)
  659. EXESORT(Remote, uv, Owner)
  660. EXESORT(Remote, uv, Group)
  661. EXESORT(Remote, uv, Type)
  662. EXESORTA(Current)
  663. EXESORTC(Name, dvName, uvName)
  664. EXESORTC(Ext, dvExt, uvExt)
  665. EXESORTC(Size, dvSize, uvSize)
  666. EXESORTC(Type, dvType, uvType)
  667. EXESORTC(Changed, dvChanged, uvChanged)
  668. EXESORTC(Rights, dvAttr, uvRights)
  669. EXESORTC(Owner, dvName, uvOwner)
  670. EXESORTC(Group, dvName, uvGroup)
  671. EXE(SortColumnAscendingAction, DebugAssert(ListColumn);
  672. COLVIEWPROPS->SortColumn = ListColumn->Index; COLVIEWPROPS->SortAscending = true; ListColumn = NULL )
  673. EXE(SortColumnDescendingAction, DebugAssert(ListColumn);
  674. COLVIEWPROPS->SortColumn = ListColumn->Index; COLVIEWPROPS->SortAscending = false; ListColumn = NULL )
  675. // SHOW/HIDE COLUMN
  676. EXESHCOL(Local, dv, Name)
  677. EXESHCOL(Local, dv, Ext)
  678. EXESHCOL(Local, dv, Size)
  679. EXESHCOL(Local, dv, Type)
  680. EXESHCOL(Local, dv, Changed)
  681. EXESHCOL(Local, dv, Attr)
  682. EXESHCOL(Remote, uv, Name)
  683. EXESHCOL(Remote, uv, Ext)
  684. EXESHCOL(Remote, uv, Size)
  685. EXESHCOL(Remote, uv, Changed)
  686. EXESHCOL(Remote, uv, Rights)
  687. EXESHCOL(Remote, uv, Owner)
  688. EXESHCOL(Remote, uv, Group)
  689. EXESHCOL(Remote, uv, LinkTarget)
  690. EXESHCOL(Remote, uv, Type)
  691. EXE(HideColumnAction, DebugAssert(ListColumn);
  692. COLVIEWPROPS->Visible[ListColumn->Index] = false; ListColumn = NULL )
  693. EXE(BestFitColumnAction, DebugAssert(ListColumn); ListColumn = NULL ) // TODO
  694. #undef COLVIEWPROPS
  695. // SESSION
  696. EXE(NewSessionAction, ScpExplorer->NewSession())
  697. EXE(SiteManagerAction, ScpExplorer->NewSession())
  698. EXE(DuplicateSessionAction, ScpExplorer->DuplicateSession())
  699. EXE(RenameSessionAction, ScpExplorer->RenameSession())
  700. EXE(CloseSessionAction2, ScpExplorer->CloseSession())
  701. EXE(DisconnectSessionAction, ScpExplorer->DisconnectSession())
  702. EXE(ReconnectSessionAction, ScpExplorer->ReconnectSession())
  703. EXE(SavedSessionsAction2, CreateSessionListMenu(SavedSessionsAction2))
  704. EXE(WorkspacesAction, CreateWorkspacesMenu(WorkspacesAction))
  705. EXE(OpenedSessionsAction, CreateOpenedSessionListMenu(OpenedSessionsAction))
  706. EXE(SaveCurrentSessionAction2, ScpExplorer->SaveCurrentSession())
  707. EXE(SaveWorkspaceAction, ScpExplorer->SaveWorkspace(false))
  708. // COMMAND
  709. EXE(CompareDirectoriesAction, ScpExplorer->CompareDirectories())
  710. EXE(SynchronizeAction, ScpExplorer->SynchronizeDirectories())
  711. EXE(FullSynchronizeAction, ScpExplorer->FullSynchronizeDirectories())
  712. EXE(ConsoleAction, ScpExplorer->OpenConsole())
  713. EXE(PuttyAction, TTerminalManager::Instance()->OpenInPutty())
  714. EXE(SynchronizeBrowsingAction, ScpExplorer->SynchronizeBrowsingChanged())
  715. EXE(CloseApplicationAction, ScpExplorer->CloseApp())
  716. EXE(FileSystemInfoAction, ScpExplorer->FileSystemInfo())
  717. EXE(SessionGenerateUrlAction2, ScpExplorer->SessionGenerateUrl())
  718. EXE(ClearCachesAction, ScpExplorer->Terminal->ClearCaches())
  719. EXE(NewFileAction, ScpExplorer->EditNew(osCurrent))
  720. EXE(EditorListCustomizeAction, PreferencesDialog(pmEditor))
  721. EXE(ChangePasswordAction, ScpExplorer->ChangePassword())
  722. EXE(PrivateKeyUploadAction, ScpExplorer->PrivateKeyUpload())
  723. // CUSTOM COMMANDS
  724. EXE(CustomCommandsFileAction, CreateCustomCommandsMenu(CustomCommandsFileAction, ccltFile))
  725. EXE(CustomCommandsNonFileAction, CreateCustomCommandsMenu(CustomCommandsNonFileAction, ccltNonFile))
  726. EXE(CustomCommandsEnterAction, ScpExplorer->AdHocCustomCommand(false))
  727. EXE(CustomCommandsEnterFocusedAction, ScpExplorer->AdHocCustomCommand(true))
  728. EXE(CustomCommandsLastAction, ScpExplorer->LastCustomCommand(false))
  729. EXE(CustomCommandsLastFocusedAction, ScpExplorer->LastCustomCommand(true))
  730. EXE(CustomCommandsCustomizeAction, CustomCommandsCustomize(NULL))
  731. // QUEUE
  732. EXE(QueueEnableAction, ScpExplorer->ToggleQueueEnabled())
  733. #define EXEQUEUE(OPERATION) EXE(Queue ## OPERATION ## Action, \
  734. ScpExplorer->ExecuteQueueOperation(qo ## OPERATION))
  735. EXEQUEUE(GoTo)
  736. EXEQUEUE(Preferences)
  737. EXEQUEUE(ItemQuery)
  738. EXEQUEUE(ItemError)
  739. EXEQUEUE(ItemPrompt)
  740. EXEQUEUE(ItemDelete)
  741. EXEQUEUE(ItemExecute)
  742. EXEQUEUE(ItemPause)
  743. EXEQUEUE(ItemResume)
  744. EXEQUEUE(ItemUp)
  745. EXEQUEUE(ItemDown)
  746. EXEQUEUE(PauseAll)
  747. EXEQUEUE(ResumeAll)
  748. EXEQUEUE(DeleteAll)
  749. EXEQUEUE(DeleteAllDone)
  750. #undef EXEQUEUE
  751. EXE(QueueToggleShowAction, ScpExplorer->ToggleQueueVisibility())
  752. #define QUEUEACTION(SHOW) EXE(Queue ## SHOW ## Action, \
  753. TQueueViewConfiguration Config = WinConfiguration->QueueView; \
  754. if (Config.Show != qvShow) Config.LastHideShow = Config.Show; \
  755. Config.Show = qv ## SHOW; \
  756. WinConfiguration->QueueView = Config)
  757. QUEUEACTION(Show)
  758. QUEUEACTION(HideWhenEmpty)
  759. QUEUEACTION(Hide)
  760. #undef QUEUEACTION
  761. EXE(QueueCycleOnceEmptyAction, CycleQueueOnceEmptyAction())
  762. EXE(QueueIdleOnceEmptyAction, SetQueueOnceEmptyAction(QueueIdleOnceEmptyAction))
  763. EXE(QueueDisconnectOnceEmptyAction2, SetQueueOnceEmptyAction(QueueDisconnectOnceEmptyAction2))
  764. EXE(QueueSuspendOnceEmptyAction2, SetQueueOnceEmptyAction(QueueSuspendOnceEmptyAction2))
  765. EXE(QueueShutDownOnceEmptyAction2, SetQueueOnceEmptyAction(QueueShutDownOnceEmptyAction2))
  766. EXECOMP(QueueToolbar)
  767. EXECOMP(QueueFileList)
  768. EXE(QueueItemSpeedAction, )
  769. ;
  770. }
  771. DoIdle();
  772. }
  773. //---------------------------------------------------------------------------
  774. void __fastcall TNonVisualDataModule::UpdateNonVisibleActions()
  775. {
  776. // following actions needs to be updated even when all clients
  777. // are invisible, so the queue list toolbar button can be shown
  778. NonVisualDataModule->QueueItemQueryAction->Update();
  779. NonVisualDataModule->QueueItemErrorAction->Update();
  780. NonVisualDataModule->QueueItemPromptAction->Update();
  781. }
  782. //---------------------------------------------------------------------------
  783. #define CTRL TShiftState() << ssCtrl
  784. #define ALT TShiftState() << ssAlt
  785. #define SHIFT TShiftState() << ssShift
  786. #define CTRLSHIFT TShiftState() << ssCtrl << ssShift
  787. #define CTRLALT TShiftState() << ssCtrl << ssAlt
  788. #define NONE TShiftState()
  789. void __fastcall TNonVisualDataModule::ExplorerShortcuts()
  790. {
  791. // Directory
  792. CurrentCreateDirAction->ShortCut = ShortCut(L'D', CTRL);
  793. // File operation
  794. CurrentRenameAction->ShortCut = ShortCut(VK_F2, NONE);
  795. CurrentEditAction->ShortCut = ShortCut(L'E', CTRL);
  796. CurrentAddEditLinkAction->ShortCut = ShortCut(L'L', CTRLALT);
  797. CurrentEditInternalAction->ShortCut = 0;
  798. CurrentEditInternalFocusedAction->ShortCut = 0;
  799. // Focused operation
  800. RemoteCopyAction->ShortCut = ShortCut(L'T', CTRL);
  801. RemoteMoveAction->ShortCut = ShortCut(L'M', CTRL);
  802. CurrentDeleteFocusedAction->ShortCut = ShortCut(VK_DELETE, NONE);
  803. CurrentPropertiesFocusedAction->ShortCut = ShortCut(VK_RETURN, ALT);
  804. RemoteMoveToFocusedAction->ShortCut = ShortCut(L'M', CTRLALT);
  805. // remote directory
  806. RemoteOpenDirAction->ShortCut = ShortCut(L'O', CTRL);
  807. RemoteRefreshAction->ShortCut = ShortCut(VK_F5, NONE);
  808. RemoteHomeDirAction->ShortCut = ShortCut(L'H', CTRL);
  809. RemotePathToClipboardAction->ShortCut = ShortCut(L'P', CTRLSHIFT);
  810. // selected operation
  811. CurrentDeleteAlternativeAction->ShortCut = ShortCut(VK_DELETE, SHIFT);
  812. RemoteMoveToAction->ShortCut = ShortCut(L'M', CTRLALT);
  813. // commands
  814. NewFileAction->ShortCut = ShortCut(L'E', CTRLSHIFT);
  815. RemoteFindFilesAction->ShortCut = ShortCut(VK_F3, NONE);
  816. CloseApplicationAction->ShortCut = ShortCut(VK_F4, ALT);
  817. CloneShortcuts();
  818. }
  819. //---------------------------------------------------------------------------
  820. void __fastcall TNonVisualDataModule::CommanderShortcuts()
  821. {
  822. bool ExplorerKeyboardShortcuts = WinConfiguration->ScpCommander.ExplorerKeyboardShortcuts;
  823. // Directory
  824. CurrentCreateDirAction->ShortCut = ShortCut(VK_F7, NONE);
  825. // File operation
  826. CurrentRenameAction->ShortCut = ShortCut(VK_F2, NONE);
  827. CurrentEditAction->ShortCut = ShortCut(VK_F4, NONE);
  828. CurrentAddEditLinkAction->ShortCut = ShortCut(VK_F6, ALT);
  829. CurrentEditInternalAction->ShortCut = ShortCut(VK_F4, CTRLALT);
  830. CurrentEditInternalFocusedAction->ShortCut = ShortCut(VK_F4, CTRLALT);
  831. // Focused operation
  832. RemoteCopyAction->ShortCut =
  833. ExplorerKeyboardShortcuts ? ShortCut(L'K', CTRL) : ShortCut(VK_F5, NONE);
  834. RemoteMoveAction->ShortCut = ShortCut(VK_F6, NONE);
  835. CurrentDeleteFocusedAction->ShortCut = ShortCut(VK_F8, NONE);
  836. CurrentPropertiesFocusedAction->ShortCut = ShortCut(VK_F9, NONE);
  837. RemoteMoveToFocusedAction->ShortCut = ShortCut(VK_F6, SHIFT);
  838. RemoteCopyToFocusedAction->ShortCut = ShortCut(VK_F5, SHIFT);
  839. // remote directory
  840. RemoteOpenDirAction->ShortCut = ShortCut(L'O', CTRL);
  841. RemoteRefreshAction->ShortCut =
  842. ExplorerKeyboardShortcuts ? ShortCut(VK_F5, NONE) : ShortCut(L'R', CTRL);
  843. RemoteHomeDirAction->ShortCut = ShortCut(L'H', CTRL);
  844. RemotePathToClipboardAction->ShortCut = ShortCut(VK_OEM_6 /* ] */, CTRL);
  845. // local directory
  846. LocalPathToClipboardAction->ShortCut = ShortCut(VK_OEM_4 /* [ */, CTRL);
  847. // selected operation
  848. CurrentDeleteAction->SecondaryShortCuts->Clear();
  849. CurrentDeleteAction->SecondaryShortCuts->Add(ShortCutToText(ShortCut(VK_DELETE, NONE)));
  850. CurrentDeleteAlternativeAction->ShortCut = ShortCut(VK_F8, SHIFT);
  851. CurrentDeleteAlternativeAction->SecondaryShortCuts->Clear();
  852. CurrentDeleteAlternativeAction->SecondaryShortCuts->Add(ShortCutToText(ShortCut(VK_DELETE, SHIFT)));
  853. RemoteMoveToAction->ShortCut = ShortCut(VK_F6, SHIFT);
  854. RemoteCopyToAction->ShortCut = ShortCut(VK_F5, SHIFT);
  855. // selection
  856. SelectOneAction->ShortCut = VK_INSERT;
  857. // commands
  858. NewFileAction->ShortCut = ShortCut(VK_F4, SHIFT);
  859. RemoteFindFilesAction->ShortCut =
  860. ExplorerKeyboardShortcuts ? ShortCut(VK_F3, NONE) : ShortCut(VK_F7, ALT);
  861. // legacy shortcut (can be removed when necessary)
  862. NewFileAction->SecondaryShortCuts->Clear();
  863. NewFileAction->SecondaryShortCuts->Add(ShortCutToText(ShortCut(VK_F4, CTRLSHIFT)));
  864. // Backward compatibility, can be abandoned, once there's a better use for Ctrl+T
  865. ConsoleAction->SecondaryShortCuts->Clear();
  866. ConsoleAction->SecondaryShortCuts->Add(ShortCutToText(ShortCut(L'T', CTRL)));
  867. CloseApplicationAction->ShortCut = ShortCut(VK_F10, NONE);
  868. TShortCut CtrlF4 = ShortCut(VK_F4, CTRL);
  869. LocalSortByExtAction->ShortCut = ExplorerKeyboardShortcuts ? TShortCut(0) : CtrlF4;
  870. RemoteSortByExtAction->ShortCut = LocalSortByExtAction->ShortCut;
  871. CurrentSortByExtAction->ShortCut = LocalSortByExtAction->ShortCut;
  872. int Index = CloseSessionAction2->SecondaryShortCuts->IndexOfShortCut(CtrlF4);
  873. if (ExplorerKeyboardShortcuts && (Index < 0))
  874. {
  875. CloseSessionAction2->SecondaryShortCuts->Add(ShortCutToText(CtrlF4));
  876. }
  877. else if (!ExplorerKeyboardShortcuts && (Index >= 0))
  878. {
  879. CloseSessionAction2->SecondaryShortCuts->Delete(Index);
  880. }
  881. CloneShortcuts();
  882. }
  883. #undef CTRL
  884. #undef ALT
  885. #undef NONE
  886. //---------------------------------------------------------------------------
  887. void __fastcall TNonVisualDataModule::CloneShortcuts()
  888. {
  889. // Commands
  890. NewDirAction->ShortCut = CurrentCreateDirAction->ShortCut;
  891. // File operation
  892. CurrentAddEditLinkContextAction->ShortCut = CurrentAddEditLinkAction->ShortCut;
  893. LocalAddEditLinkAction2->ShortCut = CurrentAddEditLinkAction->ShortCut;
  894. RemoteAddEditLinkAction2->ShortCut = CurrentAddEditLinkAction->ShortCut;
  895. RemoteNewFileAction->ShortCut = NewFileAction->ShortCut;
  896. LocalNewFileAction->ShortCut = NewFileAction->ShortCut;
  897. // local directory
  898. LocalOpenDirAction->ShortCut = RemoteOpenDirAction->ShortCut;
  899. LocalRefreshAction->ShortCut = RemoteRefreshAction->ShortCut;
  900. LocalHomeDirAction->ShortCut = RemoteHomeDirAction->ShortCut;
  901. // selected operation
  902. CurrentDeleteAction->ShortCut = CurrentDeleteFocusedAction->ShortCut;
  903. CurrentPropertiesAction->ShortCut = CurrentPropertiesFocusedAction->ShortCut;
  904. // local selected operation
  905. LocalCopyAction->ShortCut = RemoteCopyAction->ShortCut;
  906. LocalRenameAction->ShortCut = CurrentRenameAction->ShortCut;
  907. LocalEditAction->ShortCut = CurrentEditAction->ShortCut;
  908. LocalMoveAction->ShortCut = RemoteMoveAction->ShortCut;
  909. LocalCreateDirAction2->ShortCut = CurrentCreateDirAction->ShortCut;
  910. LocalDeleteAction->ShortCut = CurrentDeleteAction->ShortCut;
  911. LocalPropertiesAction->ShortCut = CurrentPropertiesAction->ShortCut;
  912. // local focused operation
  913. LocalCopyFocusedAction->ShortCut = LocalCopyAction->ShortCut;
  914. LocalMoveFocusedAction->ShortCut = LocalMoveAction->ShortCut;
  915. // remote selected operation
  916. RemoteRenameAction->ShortCut = CurrentRenameAction->ShortCut;
  917. RemoteEditAction->ShortCut = CurrentEditAction->ShortCut;
  918. RemoteCreateDirAction2->ShortCut = CurrentCreateDirAction->ShortCut;
  919. RemoteDeleteAction->ShortCut = CurrentDeleteAction->ShortCut;
  920. RemotePropertiesAction->ShortCut = CurrentPropertiesAction->ShortCut;
  921. // remote focused operation
  922. RemoteCopyFocusedAction->ShortCut = RemoteCopyAction->ShortCut;
  923. RemoteMoveFocusedAction->ShortCut = RemoteMoveAction->ShortCut;
  924. // selection
  925. LocalSelectAction->ShortCut = SelectAction->ShortCut;
  926. LocalUnselectAction->ShortCut = UnselectAction->ShortCut;
  927. LocalSelectAllAction->ShortCut = SelectAllAction->ShortCut;
  928. RemoteSelectAction->ShortCut = SelectAction->ShortCut;
  929. RemoteUnselectAction->ShortCut = UnselectAction->ShortCut;
  930. RemoteSelectAllAction->ShortCut = SelectAllAction->ShortCut;
  931. }
  932. //---------------------------------------------------------------------------
  933. void __fastcall TNonVisualDataModule::SetScpExplorer(TCustomScpExplorerForm * value)
  934. {
  935. FScpExplorer = value;
  936. SessionIdleTimer->Enabled = (FScpExplorer != NULL);
  937. }
  938. //---------------------------------------------------------------------------
  939. void __fastcall TNonVisualDataModule::SessionIdleTimerTimer(
  940. TObject */*Sender*/)
  941. {
  942. DoIdle();
  943. }
  944. //---------------------------------------------------------------------------
  945. void __fastcall TNonVisualDataModule::DoIdle()
  946. {
  947. if (!FSessionIdleTimerExecuting)
  948. {
  949. FSessionIdleTimerExecuting = true;
  950. try
  951. {
  952. DebugAssert(ScpExplorer);
  953. ScpExplorer->Idle();
  954. }
  955. __finally
  956. {
  957. FSessionIdleTimerExecuting = false;
  958. }
  959. }
  960. }
  961. //---------------------------------------------------------------------------
  962. UnicodeString __fastcall TNonVisualDataModule::CustomCommandCaption(const TCustomCommandType * Command, bool Toolbar)
  963. {
  964. UnicodeString Result = Command->Name;
  965. if (Toolbar)
  966. {
  967. Result = StripHotkey(Result);
  968. Result = EscapeHotkey(Result);
  969. }
  970. return Result;
  971. }
  972. //---------------------------------------------------------------------------
  973. UnicodeString __fastcall TNonVisualDataModule::CustomCommandHint(const TCustomCommandType * Command)
  974. {
  975. UnicodeString Name = StripHotkey(Command->Name);
  976. UnicodeString LongHint =
  977. !Command->Description.IsEmpty() ? Command->Description : FMTLOAD(CUSTOM_COMMAND_HINT_LONG, (Name, Command->Command));
  978. UnicodeString Result = FORMAT(L"%s|%s", (Name, LongHint));
  979. return Result;
  980. }
  981. //---------------------------------------------------------------------------
  982. const int CustomCommandOnFocused = 0x0100;
  983. const int CustomCommandBoth = 0x0200;
  984. const int CustomCommandExtension = 0x0400;
  985. const int CustomCommandIndexMask = 0x00FF;
  986. //---------------------------------------------------------------------------
  987. // See IsValidIdent
  988. static UnicodeString MakeIdent(const UnicodeString & S)
  989. {
  990. UnicodeString Result;
  991. for (int Index = 1; Index <= S.Length(); Index++)
  992. {
  993. wchar_t C = S[Index];
  994. if (IsLetter(C) ||
  995. (!Result.IsEmpty() && IsDigit(C)))
  996. {
  997. Result += C;
  998. }
  999. }
  1000. return Result;
  1001. }
  1002. //---------------------------------------------------------------------------
  1003. int __fastcall TNonVisualDataModule::CreateCustomCommandsListMenu(
  1004. TCustomCommandList * List, TTBCustomItem * Menu, bool OnFocused, bool Toolbar, TCustomCommandListType ListType,
  1005. int Tag, TStrings * HiddenCommands)
  1006. {
  1007. int Result = 0;
  1008. for (int Index = 0; Index < List->Count; Index++)
  1009. {
  1010. const TCustomCommandType * Command = List->Commands[Index];
  1011. int State = ScpExplorer->CustomCommandState(*Command, OnFocused, ListType);
  1012. if (State >= 0)
  1013. {
  1014. TTBCustomItem * Item = new TTBXItem(Owner);
  1015. Item->Caption = CustomCommandCaption(Command, Toolbar);
  1016. Item->Tag = Index | Tag;
  1017. Item->Enabled = (State > 0);
  1018. if (Toolbar)
  1019. {
  1020. UnicodeString Name = ExtractFileName(Command->Id);
  1021. if (Name.IsEmpty())
  1022. {
  1023. Name = Command->Name;
  1024. }
  1025. Name = MakeIdent(Name);
  1026. Name += L"CustomCommand";
  1027. // This is only the last resort to avoid run-time errors.
  1028. // If there are duplicates, button hidding won't be deterministic.
  1029. int X = 0;
  1030. UnicodeString UniqueName = Name;
  1031. while (Owner->FindComponent(UniqueName) != NULL)
  1032. {
  1033. X++;
  1034. UniqueName = FORMAT(L"%s%d", (Name, X));
  1035. }
  1036. Item->Name = UniqueName;
  1037. Item->Visible = (HiddenCommands->IndexOf(Item->Name) < 0);
  1038. }
  1039. if (OnFocused)
  1040. {
  1041. Item->Tag = Item->Tag | CustomCommandOnFocused;
  1042. }
  1043. if (ListType == ccltBoth)
  1044. {
  1045. Item->Tag = Item->Tag | CustomCommandBoth;
  1046. }
  1047. Item->Hint = CustomCommandHint(Command);
  1048. Item->ShortCut = Command->ShortCut;
  1049. Item->OnClick = CustomCommandClick;
  1050. Menu->Add(Item);
  1051. Result++;
  1052. }
  1053. }
  1054. return Result;
  1055. }
  1056. //---------------------------------------------------------------------------
  1057. void __fastcall TNonVisualDataModule::CustomCommandsCustomize(TObject *)
  1058. {
  1059. PreferencesDialog(pmCustomCommands);
  1060. }
  1061. //---------------------------------------------------------------------------
  1062. static void GiveItemPriority(TTBCustomItem * Item)
  1063. {
  1064. DebugAssert(Item->GetTopComponent() != NULL);
  1065. TTBCustomToolbar * ToolbarComponent = dynamic_cast<TTBCustomToolbar *>(Item->GetTopComponent());
  1066. if (ToolbarComponent != NULL)
  1067. {
  1068. TTBItemViewer * Viewer = ToolbarComponent->View->Find(Item);
  1069. ToolbarComponent->View->GivePriority(Viewer);
  1070. }
  1071. }
  1072. //---------------------------------------------------------------------------
  1073. void __fastcall TNonVisualDataModule::CreateCustomCommandsMenu(
  1074. TTBCustomItem * Menu, bool OnFocused, bool Toolbar, TCustomCommandListType ListType, TStrings * HiddenCommands)
  1075. {
  1076. CreateCustomCommandsListMenu(WinConfiguration->CustomCommandList, Menu, OnFocused, Toolbar, ListType, 0, HiddenCommands);
  1077. TTBCustomItem * Item;
  1078. if ((ListType == ccltAll) || (ListType == ccltFile) || (ListType == ccltNonFile))
  1079. {
  1080. Item = new TTBXItem(Menu);
  1081. Item->Action = OnFocused ? CustomCommandsEnterFocusedAction : CustomCommandsEnterAction;
  1082. Menu->Add(Item);
  1083. GiveItemPriority(Item);
  1084. Item = new TTBXItem(Menu);
  1085. Item->Action = OnFocused ? CustomCommandsLastFocusedAction : CustomCommandsLastAction;
  1086. if (Toolbar)
  1087. {
  1088. Item->Caption = EscapeHotkey(StripHotkey(LoadStr(CUSTOM_COMMAND_LAST_SHORT)));
  1089. }
  1090. Menu->Add(Item);
  1091. GiveItemPriority(Item);
  1092. }
  1093. TTBXSeparatorItem * Separator = AddMenuSeparator(Menu);
  1094. int ExtensionItems =
  1095. CreateCustomCommandsListMenu(WinConfiguration->ExtensionList, Menu, OnFocused, Toolbar, ListType, CustomCommandExtension, HiddenCommands);
  1096. Separator->Visible = (ExtensionItems > 0);
  1097. AddMenuSeparator(Menu);
  1098. if (((ListType == ccltFile) || ((ListType == ccltNonFile) && !OnFocused)) && DebugAlwaysTrue(!Toolbar))
  1099. {
  1100. Item = new TTBXSubmenuItem(Menu);
  1101. // copy the texts from the action, but do not use is as a handler, because it will duplicate the auxiliary commands in the submenu
  1102. Item->Action = (ListType == ccltFile) ? CustomCommandsNonFileAction : CustomCommandsFileAction;
  1103. Item->Action = NULL;
  1104. TCustomCommandListType SubListType = (ListType == ccltFile) ? ccltNonFile : ccltFile;
  1105. int CustomCommandItems = CreateCustomCommandsListMenu(WinConfiguration->CustomCommandList, Item, OnFocused, Toolbar, SubListType, 0, HiddenCommands);
  1106. TTBXSeparatorItem * Separator = AddMenuSeparator(Item);
  1107. int ExtensionItems = CreateCustomCommandsListMenu(WinConfiguration->ExtensionList, Item, OnFocused, Toolbar, SubListType, CustomCommandExtension, HiddenCommands);
  1108. Separator->Visible = (ExtensionItems > 0);
  1109. Item->Enabled = (CustomCommandItems + ExtensionItems > 0);
  1110. Menu->Add(Item);
  1111. }
  1112. if (!Toolbar && (ListType != ccltBoth))
  1113. {
  1114. Item = new TTBXItem(Menu);
  1115. Item->Action = CustomCommandsBandAction;
  1116. Menu->Add(Item);
  1117. GiveItemPriority(Item);
  1118. }
  1119. Item = new TTBXItem(Menu);
  1120. Item->Action = CustomCommandsCustomizeAction;
  1121. if (ListType == ccltBoth)
  1122. {
  1123. // Hack. Bypass the Busy test in ExplorerActionsExecute.
  1124. Item->OnClick = CustomCommandsCustomize;
  1125. }
  1126. Menu->Add(Item);
  1127. GiveItemPriority(Item);
  1128. }
  1129. //---------------------------------------------------------------------------
  1130. void __fastcall TNonVisualDataModule::CreateCustomCommandsMenu(
  1131. TAction * Action, bool OnFocused, TCustomCommandListType ListType)
  1132. {
  1133. DebugAssert(Action);
  1134. TTBCustomItem * Menu = dynamic_cast<TTBCustomItem *>(Action->ActionComponent);
  1135. if (Menu)
  1136. {
  1137. int PrevCount = Menu->Count;
  1138. CreateCustomCommandsMenu(Menu, OnFocused, false, ListType, NULL);
  1139. for (int Index = 0; Index < PrevCount; Index++)
  1140. {
  1141. Menu->Delete(0);
  1142. }
  1143. }
  1144. }
  1145. //---------------------------------------------------------------------------
  1146. void __fastcall TNonVisualDataModule::CreateCustomCommandsMenu(TAction * Action, TCustomCommandListType ListType)
  1147. {
  1148. TTBCustomItem * Menu = dynamic_cast<TTBCustomItem *>(Action->ActionComponent);
  1149. if (DebugAlwaysTrue(Menu != NULL))
  1150. {
  1151. bool OnFocused =
  1152. (Menu == RemoteDirViewPopupCustomCommandsMenu) || (Menu == LocalFilePopupCustomCommandsMenu) || (Menu == RemoteFilePopupCustomCommandsMenu);
  1153. CreateCustomCommandsMenu(Action, OnFocused, ListType);
  1154. }
  1155. }
  1156. //---------------------------------------------------------------------------
  1157. bool __fastcall TNonVisualDataModule::CheckCustomCommandsToolbarList(TTBXToolbar * Toolbar, TCustomCommandList * List, int & Index)
  1158. {
  1159. bool Changed = false;
  1160. int CommandIndex = 0;
  1161. while (!Changed && (CommandIndex < List->Count))
  1162. {
  1163. TTBCustomItem * Item = Toolbar->Items->Items[Index];
  1164. const TCustomCommandType * Command = List->Commands[CommandIndex];
  1165. UnicodeString Caption = CustomCommandCaption(Command, true);
  1166. UnicodeString Hint = CustomCommandHint(Command);
  1167. Changed =
  1168. (Item->Caption != Caption) ||
  1169. (Item->Hint != Hint);
  1170. Index++;
  1171. CommandIndex++;
  1172. }
  1173. return Changed;
  1174. }
  1175. //---------------------------------------------------------------------------
  1176. void __fastcall TNonVisualDataModule::UpdateCustomCommandsToolbarList(TTBXToolbar * Toolbar, TCustomCommandList * List, int & Index)
  1177. {
  1178. for (int CommandIndex = 0; CommandIndex < List->Count; CommandIndex++, Index++)
  1179. {
  1180. TTBCustomItem * Item = Toolbar->Items->Items[Index];
  1181. DebugAssert((Item->Tag & CustomCommandIndexMask) == CommandIndex);
  1182. int State = ScpExplorer->CustomCommandState(*List->Commands[CommandIndex], false, ccltAll);
  1183. DebugAssert(State >= 0);
  1184. Item->Enabled = (State > 0);
  1185. }
  1186. }
  1187. //---------------------------------------------------------------------------
  1188. void __fastcall TNonVisualDataModule::UpdateCustomCommandsToolbar(TTBXToolbar * Toolbar)
  1189. {
  1190. TCustomCommandList * CustomCommandList = WinConfiguration->CustomCommandList;
  1191. TCustomCommandList * ExtensionList = WinConfiguration->ExtensionList;
  1192. int AfterCustomCommandsCommandCount = 2; // ad hoc, last
  1193. int AdditionalCommands = AfterCustomCommandsCommandCount + 3; // custom/ext separator + separator, customize
  1194. int CommandCount = CustomCommandList->Count + ExtensionList->Count;
  1195. bool Changed = (CommandCount + AdditionalCommands != Toolbar->Items->Count);
  1196. if (!Changed)
  1197. {
  1198. int Index = 0;
  1199. Changed = CheckCustomCommandsToolbarList(Toolbar, CustomCommandList, Index);
  1200. if (!Changed)
  1201. {
  1202. Index += AfterCustomCommandsCommandCount;
  1203. Changed = (dynamic_cast<TTBXSeparatorItem *>(Toolbar->Items->Items[Index]) == NULL);
  1204. Index++;
  1205. if (!Changed)
  1206. {
  1207. Changed = CheckCustomCommandsToolbarList(Toolbar, ExtensionList, Index);
  1208. }
  1209. }
  1210. }
  1211. if (Changed)
  1212. {
  1213. Toolbar->BeginUpdate();
  1214. try
  1215. {
  1216. std::unique_ptr<TStrings> HiddenCommands(CreateSortedStringList());
  1217. for (int Index = 0; Index < Toolbar->Items->Count; Index++)
  1218. {
  1219. TTBCustomItem * Item = Toolbar->Items->Items[Index];
  1220. if (IsCustomizableToolbarItem(Item) && !Item->Visible)
  1221. {
  1222. HiddenCommands->Add(Item->Name);
  1223. }
  1224. }
  1225. Toolbar->Items->Clear();
  1226. CreateCustomCommandsMenu(Toolbar->Items, false, true, ccltAll, HiddenCommands.get());
  1227. DebugAssert(CommandCount + AdditionalCommands == Toolbar->Items->Count);
  1228. }
  1229. __finally
  1230. {
  1231. Toolbar->EndUpdate();
  1232. }
  1233. }
  1234. else
  1235. {
  1236. int Index = 0;
  1237. UpdateCustomCommandsToolbarList(Toolbar, CustomCommandList, Index);
  1238. Index += AfterCustomCommandsCommandCount + 1;
  1239. UpdateCustomCommandsToolbarList(Toolbar, ExtensionList, Index);
  1240. }
  1241. }
  1242. //---------------------------------------------------------------------------
  1243. void __fastcall TNonVisualDataModule::CustomCommandClick(TObject * Sender)
  1244. {
  1245. TTBCustomItem * Item = dynamic_cast<TTBCustomItem *>(Sender);
  1246. DebugAssert(Item);
  1247. const TCustomCommandList * List = FLAGSET(Item->Tag, CustomCommandExtension) ? WinConfiguration->ExtensionList : WinConfiguration->CustomCommandList;
  1248. const TCustomCommandType * Command = List->Commands[Item->Tag & CustomCommandIndexMask];
  1249. if (FLAGCLEAR(Item->Tag, CustomCommandBoth))
  1250. {
  1251. ScpExplorer->ExecuteFileOperationCommand(foCustomCommand, osRemote,
  1252. FLAGSET(Item->Tag, CustomCommandOnFocused), false, const_cast<TCustomCommandType *>(Command));
  1253. }
  1254. else
  1255. {
  1256. ScpExplorer->BothCustomCommand(*Command);
  1257. }
  1258. }
  1259. //---------------------------------------------------------------------------
  1260. void __fastcall TNonVisualDataModule::CreateSessionColorMenu(TAction * Action)
  1261. {
  1262. if (DebugAlwaysTrue(Action->ActionComponent != NULL))
  1263. {
  1264. ::CreateSessionColorMenu(Action->ActionComponent, ScpExplorer->SessionColor,
  1265. SessionColorChange);
  1266. }
  1267. }
  1268. //---------------------------------------------------------------------------
  1269. void __fastcall TNonVisualDataModule::SessionColorChange(TColor Color)
  1270. {
  1271. ScpExplorer->SessionColor = Color;
  1272. }
  1273. //---------------------------------------------------------------------------
  1274. void __fastcall TNonVisualDataModule::CreateSessionListMenu(TAction * Action)
  1275. {
  1276. StoredSessions->Reload();
  1277. CreateSessionListMenuLevel(
  1278. dynamic_cast<TTBCustomItem *>(Action->ActionComponent), 0, 0);
  1279. }
  1280. //---------------------------------------------------------------------------
  1281. UnicodeString __fastcall TNonVisualDataModule::GetSessionFolderRoot(
  1282. TSessionData * Data, int Level)
  1283. {
  1284. UnicodeString Path = Data->Name;
  1285. UnicodeString Root;
  1286. for (int ALevel = 0; ALevel < Level; ALevel++)
  1287. {
  1288. Root.Insert(CutToChar(Path, L'/', false) + L'/', Root.Length() + 1);
  1289. }
  1290. return Root;
  1291. }
  1292. //---------------------------------------------------------------------------
  1293. void __fastcall TNonVisualDataModule::CreateSessionListMenuLevel(
  1294. TTBCustomItem * Menu, int Index, int Level)
  1295. {
  1296. Menu->Clear();
  1297. TTBCustomItem * Item = new TTBXItem(Menu);
  1298. UnicodeString Root;
  1299. if (Level == 0)
  1300. {
  1301. Item->Action = SiteManagerAction;
  1302. Root = L"";
  1303. }
  1304. else
  1305. {
  1306. DebugAssert(Index < StoredSessions->Count);
  1307. TSessionData * Data = StoredSessions->Sessions[Index];
  1308. Root = GetSessionFolderRoot(Data, Level);
  1309. Item->Caption = LoadStr(SAVEDSESSIONFOLDER_THIS_OPEN);
  1310. Item->Tag = MAKELONG(Index, Level);
  1311. UnicodeString FolderName = Root;
  1312. if (DebugAlwaysTrue(!FolderName.IsEmpty() && FolderName[FolderName.Length()] == L'/'))
  1313. {
  1314. FolderName.Delete(FolderName.Length(), 1);
  1315. }
  1316. Item->Hint = FMTLOAD(SAVEDSESSIONFOLDER_THIS_HINT, (FolderName));
  1317. Item->OnClick = SessionFolderThisItemClick;
  1318. }
  1319. Menu->Insert(Menu->Count, Item);
  1320. AddMenuSeparator(Menu);
  1321. int FirstSession = Menu->Count;
  1322. UnicodeString PrevName;
  1323. while (Index < StoredSessions->Count)
  1324. {
  1325. TSessionData * Data = StoredSessions->Sessions[Index];
  1326. if (!AnsiSameText(Data->Name.SubString(1, Root.Length()), Root))
  1327. {
  1328. // Sessions are sorted, so no chance further sessions may match
  1329. break;
  1330. }
  1331. else if (!Data->IsWorkspace)
  1332. {
  1333. UnicodeString Name = Data->Name.SubString(Root.Length() + 1, Data->Name.Length() - Root.Length());
  1334. int P = Name.Pos(L'/');
  1335. if (P > 0)
  1336. {
  1337. Name.SetLength(P - 1);
  1338. }
  1339. if (Name != PrevName)
  1340. {
  1341. if (P > 0)
  1342. {
  1343. TTBCustomItem * Item = new TTBXSubmenuItem(Menu);
  1344. Item->Caption = Name;
  1345. Item->Tag = ((Level + 1) << 16) | Index; // MAKELONG
  1346. Item->ImageIndex = SavedSessionsAction2->ImageIndex;
  1347. Item->OnClick = SessionFolderItemClick;
  1348. Menu->Insert(FirstSession, Item);
  1349. FirstSession++;
  1350. }
  1351. else
  1352. {
  1353. TTBCustomItem * Item = new TTBXItem(Menu);
  1354. Item->Caption = Name;
  1355. Item->Tag = Index;
  1356. Item->Hint = FMTLOAD(SAVEDSESSION_HINT, (Data->Name));
  1357. Item->OnClick = SessionItemClick;
  1358. Menu->Insert(Menu->Count, Item);
  1359. }
  1360. PrevName = Name;
  1361. }
  1362. }
  1363. Index++;
  1364. }
  1365. }
  1366. //---------------------------------------------------------------------------
  1367. void __fastcall TNonVisualDataModule::SessionFolderItemClick(TObject * Sender)
  1368. {
  1369. TTBCustomItem * Item = dynamic_cast<TTBCustomItem *>(Sender);
  1370. DebugAssert(Item != NULL);
  1371. CreateSessionListMenuLevel(Item, LOWORD(Item->Tag), HIWORD(Item->Tag));
  1372. }
  1373. //---------------------------------------------------------------------------
  1374. void __fastcall TNonVisualDataModule::SessionFolderThisItemClick(TObject * Sender)
  1375. {
  1376. TTBCustomItem * Item = DebugNotNull(dynamic_cast<TTBCustomItem *>(Sender));
  1377. int Index = LOWORD(Item->Tag);
  1378. int Level = HIWORD(Item->Tag);
  1379. UnicodeString Folder = GetSessionFolderRoot(StoredSessions->Sessions[Index], Level);
  1380. ScpExplorer->OpenFolderOrWorkspace(Folder);
  1381. }
  1382. //---------------------------------------------------------------------------
  1383. void __fastcall TNonVisualDataModule::SessionItemClick(TObject * Sender)
  1384. {
  1385. DebugAssert(StoredSessions && (((TTBCustomItem *)Sender)->Tag < StoredSessions->Count));
  1386. ScpExplorer->OpenStoredSession(StoredSessions->Sessions[((TTBCustomItem *)Sender)->Tag]);
  1387. }
  1388. //---------------------------------------------------------------------------
  1389. void __fastcall TNonVisualDataModule::CreateWorkspacesMenu(TAction * Action)
  1390. {
  1391. StoredSessions->Reload();
  1392. if (!StoredSessions->HasAnyWorkspace())
  1393. {
  1394. Abort();
  1395. }
  1396. else
  1397. {
  1398. TTBCustomItem * Menu =
  1399. DebugNotNull(dynamic_cast<TTBCustomItem *>(Action->ActionComponent));
  1400. Menu->Clear();
  1401. std::unique_ptr<TStrings> Workspaces(StoredSessions->GetWorkspaces());
  1402. for (int Index = 0; Index < Workspaces->Count; Index++)
  1403. {
  1404. TTBCustomItem * Item = new TTBXItem(Menu);
  1405. Item->Caption = Workspaces->Strings[Index];
  1406. Item->Tag = Index;
  1407. Item->Hint = FMTLOAD(WORKSPACE_HINT, (Workspaces->Strings[Index]));
  1408. Item->OnClick = WorkspaceItemClick;
  1409. Menu->Insert(Menu->Count, Item);
  1410. }
  1411. }
  1412. }
  1413. //---------------------------------------------------------------------------
  1414. void __fastcall TNonVisualDataModule::WorkspaceItemClick(TObject * Sender)
  1415. {
  1416. std::unique_ptr<TStrings> Workspaces(StoredSessions->GetWorkspaces());
  1417. ScpExplorer->OpenFolderOrWorkspace(
  1418. Workspaces->Strings[DebugNotNull(dynamic_cast<TTBCustomItem *>(Sender))->Tag]);
  1419. }
  1420. //---------------------------------------------------------------------------
  1421. TShortCut __fastcall TNonVisualDataModule::OpenSessionShortCut(int Index)
  1422. {
  1423. if (Index >= 0 && Index < 10)
  1424. {
  1425. return ShortCut((Word)(Index < 9 ? L'0' + 1 + Index : L'0'),
  1426. TShiftState() << ssAlt);
  1427. }
  1428. else
  1429. {
  1430. return scNone;
  1431. }
  1432. }
  1433. //---------------------------------------------------------------------------
  1434. void __fastcall TNonVisualDataModule::CreateOpenedSessionListMenu(TAction * Action)
  1435. {
  1436. TTBCustomItem * OpenedSessionsMenu = dynamic_cast<TTBCustomItem *>(Action->ActionComponent);
  1437. DebugAssert(OpenedSessionsMenu != NULL);
  1438. TTerminalManager * Manager = TTerminalManager::Instance();
  1439. TStrings * TerminalList = Manager->TerminalList;
  1440. int PrevCount = OpenedSessionsMenu->Count;
  1441. for (int Index = 0; Index < TerminalList->Count; Index++)
  1442. {
  1443. TTerminal * Terminal = dynamic_cast<TTerminal *>(TerminalList->Objects[Index]);
  1444. DebugAssert(Terminal);
  1445. TTBCustomItem * Item = new TTBXItem(OpenedSessionsMenu);
  1446. Item->Caption = TerminalList->Strings[Index];
  1447. Item->Tag = int(Terminal);
  1448. Item->Hint = FMTLOAD(OPENEDSESSION_HINT, (Item->Caption));
  1449. Item->Checked = (Manager->ActiveTerminal == Terminal);
  1450. Item->ShortCut = OpenSessionShortCut(Index);
  1451. Item->OnClick = OpenedSessionItemClick;
  1452. Item->RadioItem = true;
  1453. OpenedSessionsMenu->Add(Item);
  1454. }
  1455. for (int Index = 0; Index < PrevCount; Index++)
  1456. {
  1457. OpenedSessionsMenu->Delete(0);
  1458. }
  1459. }
  1460. //---------------------------------------------------------------------------
  1461. void __fastcall TNonVisualDataModule::OpenedSessionItemClick(TObject * Sender)
  1462. {
  1463. TTerminalManager::Instance()->ActiveTerminal = (TManagedTerminal*)(((TMenuItem *)Sender)->Tag);
  1464. }
  1465. //---------------------------------------------------------------------------
  1466. void __fastcall TNonVisualDataModule::CreateEditorListMenu(TTBCustomItem * Menu, bool OnFocused)
  1467. {
  1468. DebugAssert(Menu != NULL);
  1469. int PrevCount = Menu->Count;
  1470. TTBCustomItem * Item;
  1471. Item = new TTBXItem(Menu);
  1472. Item->Action = OnFocused ? CurrentEditFocusedAction : CurrentEditAction;
  1473. Menu->Add(Item);
  1474. AddMenuSeparator(Menu);
  1475. Item = new TTBXItem(Menu);
  1476. Item->Action = OnFocused ? CurrentEditInternalFocusedAction : CurrentEditInternalAction;
  1477. Menu->Add(Item);
  1478. AddMenuSeparator(Menu);
  1479. TStringList * UsedEditors = CreateSortedStringList();
  1480. try
  1481. {
  1482. const TEditorList * EditorList = WinConfiguration->EditorList;
  1483. for (int Index = 0; Index < EditorList->Count; Index++)
  1484. {
  1485. const TEditorPreferences * Editor = EditorList->Editors[Index];
  1486. if ((Editor->Data->Editor == edExternal) &&
  1487. (UsedEditors->IndexOf(Editor->Data->ExternalEditor) < 0))
  1488. {
  1489. UsedEditors->Add(Editor->Data->ExternalEditor);
  1490. TTBCustomItem * Item = new TTBXItem(Menu);
  1491. Item->Caption = Editor->Name;
  1492. Item->Tag = Index;
  1493. Item->Hint = FMTLOAD(EXTERNAL_EDITOR_HINT, (Editor->Name));
  1494. if (OnFocused)
  1495. {
  1496. Item->OnClick = EditorItemClickFocused;
  1497. }
  1498. else
  1499. {
  1500. Item->OnClick = EditorItemClick;
  1501. }
  1502. Menu->Add(Item);
  1503. }
  1504. }
  1505. Item = new TTBXItem(Menu);
  1506. Item->Action = OnFocused ? CurrentEditWithFocusedAction : CurrentEditWithAction;
  1507. Menu->Add(Item);
  1508. AddMenuSeparator(Menu);
  1509. Item = new TTBXItem(Menu);
  1510. Item->Action = EditorListCustomizeAction;
  1511. Menu->Add(Item);
  1512. for (int Index = 0; Index < PrevCount; Index++)
  1513. {
  1514. Menu->Delete(0);
  1515. }
  1516. }
  1517. __finally
  1518. {
  1519. delete UsedEditors;
  1520. }
  1521. }
  1522. //---------------------------------------------------------------------------
  1523. void __fastcall TNonVisualDataModule::DoEditorItemClick(TObject * Sender, bool OnFocused)
  1524. {
  1525. int Tag = dynamic_cast<TTBXItem*>(Sender)->Tag;
  1526. const TEditorList * EditorList = WinConfiguration->EditorList;
  1527. // sanity check
  1528. if (Tag < EditorList->Count)
  1529. {
  1530. ScpExplorer->ExecuteFile(osCurrent, efExternalEditor, EditorList->Editors[Tag]->Data,
  1531. true, OnFocused);
  1532. }
  1533. }
  1534. //---------------------------------------------------------------------------
  1535. void __fastcall TNonVisualDataModule::EditorItemClick(TObject * Sender)
  1536. {
  1537. DoEditorItemClick(Sender, false);
  1538. }
  1539. //---------------------------------------------------------------------------
  1540. void __fastcall TNonVisualDataModule::EditorItemClickFocused(TObject * Sender)
  1541. {
  1542. DoEditorItemClick(Sender, true);
  1543. }
  1544. //---------------------------------------------------------------------------
  1545. void __fastcall TNonVisualDataModule::QueuePopupPopup(TObject * /*Sender*/)
  1546. {
  1547. TAction * Action = NULL;
  1548. switch (ScpExplorer->DefaultQueueOperation())
  1549. {
  1550. case qoItemQuery:
  1551. Action = QueueItemQueryAction;
  1552. break;
  1553. case qoItemError:
  1554. Action = QueueItemErrorAction;
  1555. break;
  1556. case qoItemPrompt:
  1557. Action = QueueItemPromptAction;
  1558. break;
  1559. case qoItemExecute:
  1560. Action = QueueItemExecuteAction;
  1561. break;
  1562. case qoItemPause:
  1563. Action = QueueItemPauseAction;
  1564. break;
  1565. case qoItemResume:
  1566. Action = QueueItemResumeAction;
  1567. break;
  1568. }
  1569. TTBCustomItem * Item;
  1570. for (int Index = 0; Index < QueuePopup->Items->Count; Index++)
  1571. {
  1572. Item = QueuePopup->Items->Items[Index];
  1573. TTBItemOptions O = Item->Options;
  1574. if ((Action != NULL) && (Item->Action == Action))
  1575. {
  1576. O << tboDefault;
  1577. }
  1578. else
  1579. {
  1580. O >> tboDefault;
  1581. }
  1582. Item->Options = O;
  1583. }
  1584. QueueSpeedComboBoxItemUpdate(QueuePopupSpeedComboBoxItem);
  1585. }
  1586. //---------------------------------------------------------------------------
  1587. void __fastcall TNonVisualDataModule::ShowUpdatesUpdate()
  1588. {
  1589. TUpdatesConfiguration Updates = WinConfiguration->Updates;
  1590. unsigned short H, M, S, MS;
  1591. DecodeTime(Now(), H, M, S, MS);
  1592. int CurrentCompoundVer = Configuration->CompoundVersion;
  1593. CheckForUpdatesAction->ImageIndex =
  1594. ((Updates.HaveResults && (Updates.Results.ForVersion == CurrentCompoundVer) &&
  1595. !Updates.Results.Disabled &&
  1596. ((Updates.Results.Critical && !Updates.ShownResults && (MS >= 500)) ||
  1597. ((!Updates.Results.Critical || Updates.ShownResults) &&
  1598. ((Updates.Results.Version > CurrentCompoundVer) ||
  1599. !Updates.Results.Message.IsEmpty())))) ? 80 :
  1600. ((int(Updates.Period) <= 0) ? 81 : 63));
  1601. CheckForUpdatesAction->Visible = !IsUWP();
  1602. }
  1603. //---------------------------------------------------------------------------
  1604. void __fastcall TNonVisualDataModule::PreferencesDialog(TPreferencesMode APreferencesMode)
  1605. {
  1606. if (ScpExplorer != NULL)
  1607. {
  1608. ScpExplorer->PreferencesDialog(APreferencesMode);
  1609. }
  1610. else
  1611. {
  1612. DoPreferencesDialog(APreferencesMode);
  1613. }
  1614. }
  1615. //---------------------------------------------------------------------------
  1616. void __fastcall TNonVisualDataModule::CustomCommandsLastUpdate(TAction * Action)
  1617. {
  1618. TCustomCommandType Command;
  1619. int State;
  1620. bool Defined = ScpExplorer->GetLastCustomCommand(
  1621. (Action == CustomCommandsLastFocusedAction), Command, State);
  1622. Action->Visible = Defined;
  1623. if (Defined)
  1624. {
  1625. UnicodeString TitleCommand = Command.Command;
  1626. int MaxTitleCommandLen = 20;
  1627. if (TitleCommand.Length() > MaxTitleCommandLen)
  1628. {
  1629. TitleCommand = TitleCommand.SubString(1, MaxTitleCommandLen - 3) + Ellipsis;
  1630. }
  1631. Action->Caption = FMTLOAD(CUSTOM_COMMAND_LAST, (EscapeHotkey(TitleCommand)));
  1632. Action->Hint = Command.Command;
  1633. Action->Enabled = (State > 0);
  1634. }
  1635. }
  1636. //---------------------------------------------------------------------------
  1637. UnicodeString __fastcall TNonVisualDataModule::QueueItemSpeed(const UnicodeString & Text,
  1638. TTBXComboBoxItem * Item)
  1639. {
  1640. // Keep in sync with TProgressForm::ItemSpeed
  1641. unsigned long Speed = GetSpeedLimit(Text);
  1642. ScpExplorer->ExecuteQueueOperation(qoItemSpeed, reinterpret_cast<void*>(Speed));
  1643. UnicodeString Result = SetSpeedLimit(Speed);
  1644. SaveToHistory(Item->Strings, Result);
  1645. CustomWinConfiguration->History[L"SpeedLimit"] = Item->Strings;
  1646. return Result;
  1647. }
  1648. //---------------------------------------------------------------------------
  1649. void __fastcall TNonVisualDataModule::QueuePopupSpeedComboBoxItemItemClick(
  1650. TObject * Sender)
  1651. {
  1652. TTBXComboBoxItem * Item = dynamic_cast<TTBXComboBoxItem *>(Sender);
  1653. QueueItemSpeedAction->Text = QueueItemSpeed(Item->Text, Item);
  1654. }
  1655. //---------------------------------------------------------------------------
  1656. void __fastcall TNonVisualDataModule::QueueSpeedComboBoxItemAcceptText(
  1657. TObject * Sender, UnicodeString & NewText, bool & /*Accept*/)
  1658. {
  1659. TTBXComboBoxItem * Item = dynamic_cast<TTBXComboBoxItem *>(Sender);
  1660. NewText = QueueItemSpeed(NewText, Item);
  1661. QueueItemSpeedAction->Text = NewText;
  1662. }
  1663. //---------------------------------------------------------------------------
  1664. void __fastcall TNonVisualDataModule::QueueSpeedComboBoxItem(TTBXComboBoxItem * Item)
  1665. {
  1666. // IDE often looses this link
  1667. Item->OnAcceptText = QueueSpeedComboBoxItemAcceptText;
  1668. Item->OnItemClick = QueuePopupSpeedComboBoxItemItemClick;
  1669. }
  1670. //---------------------------------------------------------------------------
  1671. void __fastcall TNonVisualDataModule::QueueSpeedComboBoxItemUpdate(TTBXComboBoxItem * Item)
  1672. {
  1673. CopySpeedLimits(CustomWinConfiguration->History[L"SpeedLimit"], Item->Strings);
  1674. }
  1675. //---------------------------------------------------------------------------
  1676. void __fastcall TNonVisualDataModule::SetQueueOnceEmptyAction(TAction * Action)
  1677. {
  1678. TAction * Current = CurrentQueueOnceEmptyAction();
  1679. if (Current != Action)
  1680. {
  1681. Current->Checked = false;
  1682. Action->Checked = true;
  1683. }
  1684. }
  1685. //---------------------------------------------------------------------------
  1686. void __fastcall TNonVisualDataModule::CycleQueueOnceEmptyAction()
  1687. {
  1688. TAction * Current = CurrentQueueOnceEmptyAction();
  1689. Current->Checked = false;
  1690. if (Current == QueueIdleOnceEmptyAction)
  1691. {
  1692. QueueDisconnectOnceEmptyAction2->Checked = true;
  1693. }
  1694. else if (Current == QueueDisconnectOnceEmptyAction2)
  1695. {
  1696. QueueSuspendOnceEmptyAction2->Checked = true;
  1697. }
  1698. else if (Current == QueueSuspendOnceEmptyAction2)
  1699. {
  1700. QueueShutDownOnceEmptyAction2->Checked = true;
  1701. }
  1702. else if (Current == QueueShutDownOnceEmptyAction2)
  1703. {
  1704. QueueIdleOnceEmptyAction->Checked = true;
  1705. }
  1706. else
  1707. {
  1708. DebugFail();
  1709. }
  1710. }
  1711. //---------------------------------------------------------------------------
  1712. TAction * __fastcall TNonVisualDataModule::CurrentQueueOnceEmptyAction()
  1713. {
  1714. TAction * Result;
  1715. if (QueueIdleOnceEmptyAction->Checked)
  1716. {
  1717. Result = QueueIdleOnceEmptyAction;
  1718. }
  1719. else if (QueueDisconnectOnceEmptyAction2->Checked)
  1720. {
  1721. Result = QueueDisconnectOnceEmptyAction2;
  1722. }
  1723. else if (QueueSuspendOnceEmptyAction2->Checked)
  1724. {
  1725. Result = QueueSuspendOnceEmptyAction2;
  1726. }
  1727. else if (QueueShutDownOnceEmptyAction2->Checked)
  1728. {
  1729. Result = QueueShutDownOnceEmptyAction2;
  1730. }
  1731. else
  1732. {
  1733. DebugFail();
  1734. }
  1735. return Result;
  1736. }
  1737. //---------------------------------------------------------------------------
  1738. TOnceDoneOperation __fastcall TNonVisualDataModule::CurrentQueueOnceEmptyOperation()
  1739. {
  1740. TOnceDoneOperation Result;
  1741. TBasicAction * Current = CurrentQueueOnceEmptyAction();
  1742. if (Current == QueueIdleOnceEmptyAction)
  1743. {
  1744. Result = odoIdle;
  1745. }
  1746. else if (Current == QueueDisconnectOnceEmptyAction2)
  1747. {
  1748. Result = odoDisconnect;
  1749. }
  1750. else if (Current == QueueSuspendOnceEmptyAction2)
  1751. {
  1752. Result = odoSuspend;
  1753. }
  1754. else if (Current == QueueShutDownOnceEmptyAction2)
  1755. {
  1756. Result = odoShutDown;
  1757. }
  1758. else
  1759. {
  1760. DebugFail();
  1761. }
  1762. return Result;
  1763. }
  1764. //---------------------------------------------------------------------------
  1765. void __fastcall TNonVisualDataModule::ResetQueueOnceEmptyOperation()
  1766. {
  1767. SetQueueOnceEmptyAction(QueueIdleOnceEmptyAction);
  1768. }
  1769. //---------------------------------------------------------------------------
  1770. void __fastcall TNonVisualDataModule::StartBusy()
  1771. {
  1772. FBusy++;
  1773. }
  1774. //---------------------------------------------------------------------------
  1775. void __fastcall TNonVisualDataModule::EndBusy()
  1776. {
  1777. FBusy--;
  1778. }
  1779. //---------------------------------------------------------------------------
  1780. bool __fastcall TNonVisualDataModule::GetBusy()
  1781. {
  1782. return
  1783. (FBusy > 0) ||
  1784. ((ScpExplorer != NULL) && ScpExplorer->IsBusy());
  1785. }
  1786. //---------------------------------------------------------------------------
  1787. void __fastcall TNonVisualDataModule::FocusedEditMenuItemPopup(TTBCustomItem * Sender,
  1788. bool /*FromLink*/)
  1789. {
  1790. CreateEditorListMenu(Sender, true);
  1791. }
  1792. //---------------------------------------------------------------------------
  1793. void __fastcall TNonVisualDataModule::EditMenuItemPopup(TTBCustomItem * Sender,
  1794. bool /*FromLink*/)
  1795. {
  1796. CreateEditorListMenu(Sender, false);
  1797. }
  1798. //---------------------------------------------------------------------------
  1799. void __fastcall TNonVisualDataModule::QueuePopupSpeedComboBoxItemAdjustImageIndex(
  1800. TTBXComboBoxItem * Sender, const UnicodeString /*AText*/, int /*AIndex*/, int & ImageIndex)
  1801. {
  1802. // Use fixed image (do not change image by item index)
  1803. ImageIndex = Sender->ImageIndex;
  1804. }
  1805. //---------------------------------------------------------------------------
  1806. void __fastcall TNonVisualDataModule::ToolbarButtonItemClick(TObject * Sender)
  1807. {
  1808. TTBCustomItem * Item = DebugNotNull(dynamic_cast<TTBCustomItem *>(Sender));
  1809. TTBCustomItem * ButtonItem = reinterpret_cast<TTBCustomItem *>(Item->Tag);
  1810. ButtonItem->Visible = !ButtonItem->Visible;
  1811. }
  1812. //---------------------------------------------------------------------------
  1813. bool __fastcall TNonVisualDataModule::IsCustomizableToolbarItem(TTBCustomItem * Item)
  1814. {
  1815. return
  1816. ((dynamic_cast<TTBXItem *>(Item) != NULL) ||
  1817. (dynamic_cast<TTBXSubmenuItem *>(Item) != NULL)) &&
  1818. (Item->Action != CustomCommandsLastAction) &&
  1819. DebugAlwaysTrue(Item->Action != CustomCommandsLastFocusedAction);
  1820. }
  1821. //---------------------------------------------------------------------------
  1822. bool __fastcall TNonVisualDataModule::IsToolbarCustomizable()
  1823. {
  1824. bool Result = false;
  1825. if (FCustomizedToolbar != NULL)
  1826. {
  1827. for (int Index = 0; Index < FCustomizedToolbar->Items->Count; Index++)
  1828. {
  1829. if (IsCustomizableToolbarItem(FCustomizedToolbar->Items->Items[Index]))
  1830. {
  1831. Result = true;
  1832. break;
  1833. }
  1834. }
  1835. }
  1836. return Result;
  1837. }
  1838. //---------------------------------------------------------------------------
  1839. void __fastcall TNonVisualDataModule::CreateToolbarButtonsList()
  1840. {
  1841. if (FCustomizedToolbar != NULL)
  1842. {
  1843. TTBCustomItem * CustomizeItem = DebugNotNull(dynamic_cast<TTBCustomItem *>(CustomizeToolbarAction->ActionComponent));
  1844. CustomizeItem->Clear();
  1845. for (int Index = 0; Index < FCustomizedToolbar->Items->Count; Index++)
  1846. {
  1847. TTBCustomItem * ButtonItem = FCustomizedToolbar->Items->Items[Index];
  1848. TTBCustomItem * Item = NULL;
  1849. if (dynamic_cast<TTBSeparatorItem *>(ButtonItem) != NULL)
  1850. {
  1851. Item = new TTBSeparatorItem(CustomizeItem);
  1852. }
  1853. else if (IsCustomizableToolbarItem(ButtonItem))
  1854. {
  1855. Item = new TTBXItem(CustomizeItem);
  1856. Item->Caption = StripEllipsis(ButtonItem->Caption);
  1857. Item->ImageIndex = ButtonItem->ImageIndex;
  1858. Item->Tag = reinterpret_cast<int>(ButtonItem);
  1859. Item->OnClick = ToolbarButtonItemClick;
  1860. Item->Checked = ButtonItem->Visible;
  1861. }
  1862. if (Item != NULL)
  1863. {
  1864. CustomizeItem->Insert(CustomizeItem->Count, Item);
  1865. }
  1866. }
  1867. }
  1868. }
  1869. //---------------------------------------------------------------------------
  1870. void __fastcall TNonVisualDataModule::ControlContextPopup(TObject * Sender, const TPoint & MousePos)
  1871. {
  1872. TTBDock * Dock = dynamic_cast<TTBDock *>(Sender);
  1873. if (Dock != NULL)
  1874. {
  1875. // While we can identify toolbar for which context menu is popping up in OnExecute,
  1876. // we cannot in OnUpdate, so we have to remember it here.
  1877. FCustomizedToolbar = dynamic_cast<TTBCustomToolbar *>(Dock->ControlAtPos(MousePos, true, true, false));
  1878. }
  1879. else
  1880. {
  1881. FCustomizedToolbar = NULL;
  1882. }
  1883. }