NonVisual.cpp 84 KB

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