NonVisual.cpp 77 KB

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