| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "ScpCommander.h"
- #include "ScpExplorer.h"
- #include <CoreMain.h>
- #include <Common.h>
- #include <Exceptions.h>
- #include "ProgParams.h"
- #include "VCLCommon.h"
- #include "WinConfiguration.h"
- #include "TerminalManager.h"
- #include "TextsWin.h"
- #include "TBXThemes.hpp"
- #include "TBXOfficeXPTheme.hpp"
- #include "TBXOffice2003Theme.hpp"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- const AnsiString AppName = "WinSCP";
- const AnsiString AppNameVersion = "WinSCP";
- //---------------------------------------------------------------------------
- TConfiguration * __fastcall CreateConfiguration()
- {
- TConfiguration * Configuration = new TWinConfiguration();
- TProgramParams * Params = TProgramParams::Instance();
- AnsiString IniFileName = Params->SwitchValue("ini");
- if (!IniFileName.IsEmpty())
- {
- IniFileName = ExpandFileName(ExpandEnvironmentVariables(IniFileName));
- Configuration->IniFileStorageName = IniFileName;
- }
- return Configuration;
- }
- //---------------------------------------------------------------------------
- TCustomScpExplorerForm * __fastcall CreateScpExplorer()
- {
- TCustomScpExplorerForm * ScpExplorer;
- if (WinConfiguration->Interface == ifExplorer)
- {
- ScpExplorer = SafeFormCreate<TScpExplorerForm>();
- }
- else
- {
- ScpExplorer = SafeFormCreate<TScpCommanderForm>();
- }
- ScpExplorer->Icon->Assign(Application->Icon);
- return ScpExplorer;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall SshVersionString()
- {
- return FORMAT("WinSCP-release-%s", (Configuration->Version));
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall GetRegistryKey()
- {
- return "Software\\Martin Prikryl\\WinSCP 2";
- }
- //---------------------------------------------------------------------------
- static bool ForcedOnForeground = false;
- void __fastcall SetOnForeground(bool OnForeground)
- {
- ForcedOnForeground = OnForeground;
- }
- //---------------------------------------------------------------------------
- void __fastcall FlashOnBackground()
- {
- assert(Application);
- if (!ForcedOnForeground && !ForegroundTask())
- {
- FlashWindow(Application->Handle, true);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall ShowExtendedException(Exception * E)
- {
- ShowExtendedExceptionEx(NULL, E);
- }
- //---------------------------------------------------------------------------
- void __fastcall ShowExtendedExceptionEx(TTerminal * Terminal,
- Exception * E)
- {
- if (!E->Message.IsEmpty())
- {
- if (E->InheritsFrom(__classid(Exception)))
- {
- if (!E->InheritsFrom(__classid(EAbort)))
- {
- TTerminalManager * Manager = TTerminalManager::Instance(false);
- TQueryType Type;
- bool CloseOnCompletion = (dynamic_cast<ESshTerminate*>(E) != NULL);
- Type = CloseOnCompletion ? qtInformation : qtError;
- if (E->InheritsFrom(__classid(EFatal)) && (Terminal != NULL) &&
- (Manager != NULL) && (Manager->ActiveTerminal == Terminal))
- {
- if (CloseOnCompletion)
- {
- Manager->DisconnectActiveTerminal();
- }
- int Result;
- if (CloseOnCompletion)
- {
- if (WinConfiguration->ConfirmExitOnCompletion)
- {
- TMessageParams Params(mpNeverAskAgainCheck);
- Result = FatalExceptionMessageDialog(E, Type,
- Manager->Count > 1 ?
- FMTLOAD(DISCONNECT_ON_COMPLETION, (Manager->Count - 1)) :
- LoadStr(EXIT_ON_COMPLETION),
- qaYes | qaNo, HELP_NONE, &Params);
- if (Result == qaNeverAskAgain)
- {
- Result = qaYes;
- WinConfiguration->ConfirmExitOnCompletion = false;
- }
- }
- else
- {
- Result = qaYes;
- }
- }
- else
- {
- Result = FatalExceptionMessageDialog(E, Type);
- }
- if (Result == qaYes)
- {
- Application->Terminate();
- }
- else if (Result == qaRetry)
- {
- Manager->ReconnectActiveTerminal();
- }
- else
- {
- Manager->FreeActiveTerminal();
- }
- }
- else
- {
- if (CloseOnCompletion)
- {
- if (WinConfiguration->ConfirmExitOnCompletion)
- {
- TMessageParams Params(mpNeverAskAgainCheck);
- if (ExceptionMessageDialog(E, Type, "", qaOK, HELP_NONE, &Params) ==
- qaNeverAskAgain)
- {
- WinConfiguration->ConfirmExitOnCompletion = false;
- }
- }
- }
- else
- {
- ExceptionMessageDialog(E, Type);
- }
- }
- }
- }
- else
- {
- FlashOnBackground();
- ShowException(ExceptObject(), ExceptAddr());
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall ShowNotification(TTerminal * Terminal, const AnsiString & Str,
- TQueryType Type)
- {
- TTerminalManager * Manager = TTerminalManager::Instance(false);
- assert(Manager != NULL);
- Manager->ScpExplorer->PopupTrayBalloon(Terminal, Str, Type);
- }
- //---------------------------------------------------------------------------
- void __fastcall ConfigureInterface()
- {
- AnsiString S;
- S = LoadStr(MIDDLE_EAST);
- if (!S.IsEmpty())
- {
- SysLocale.MiddleEast = static_cast<bool>(StrToInt(S));
- }
- else
- {
- SysLocale.MiddleEast = false;
- }
- S = LoadStr(BIDI_MODE);
- if (!S.IsEmpty())
- {
- Application->BiDiMode = static_cast<TBiDiMode>(StrToInt(bdRightToLeft));
- }
- else
- {
- Application->BiDiMode = bdLeftToRight;
- }
- SetTBXSysParam(TSP_XPVISUALSTYLE, XPVS_AUTOMATIC);
- // Can be called during configuration creation.
- // Skip now, will be called again later.
- if (Configuration != NULL)
- {
- TBXSetTheme(WinConfiguration->Theme);
- }
- }
- //---------------------------------------------------------------------------
- // dummy function to force linking of TBXOfficeXPTheme.pas
- void __fastcall CreateThemes()
- {
- new TTBXOfficeXPTheme("OfficeXP");
- new TTBXOffice2003Theme("Office2003");
- }
- //---------------------------------------------------------------------------
- void __fastcall DoAboutDialog(TConfiguration *Configuration)
- {
- DoAboutDialog(Configuration, true, NULL);
- }
- //---------------------------------------------------------------------
- void __fastcall DoProductLicense()
- {
- DoLicenseDialog(lcWinScp);
- }
- //---------------------------------------------------------------------
- static inline void __fastcall GetToolbarKey(const AnsiString & ToolbarName,
- const AnsiString & Value, AnsiString & ToolbarKey)
- {
- int ToolbarNameLen;
- if ((ToolbarName.Length() > 7) &&
- (ToolbarName.SubString(ToolbarName.Length() - 7 + 1, 7) == "Toolbar"))
- {
- ToolbarNameLen = ToolbarName.Length() - 7;
- }
- else
- {
- ToolbarNameLen = ToolbarName.Length();
- }
- ToolbarKey = ToolbarName.SubString(1, ToolbarNameLen) + "_" + Value;
- }
- //---------------------------------------------------------------------------
- static int __fastcall ToolbarReadInt(const AnsiString ToolbarName,
- const AnsiString Value, const int Default, const void * ExtraData)
- {
- int Result;
- if (Value == "Rev")
- {
- Result = 2000;
- }
- else
- {
- TStrings * Storage = static_cast<TStrings *>(const_cast<void*>(ExtraData));
- AnsiString ToolbarKey;
- GetToolbarKey(ToolbarName, Value, ToolbarKey);
- if (Storage->IndexOfName(ToolbarKey) >= 0)
- {
- Result = StrToIntDef(Storage->Values[ToolbarKey], Default);
- }
- else
- {
- Result = Default;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- static AnsiString __fastcall ToolbarReadString(const AnsiString ToolbarName,
- const AnsiString Value, const AnsiString Default, const void * ExtraData)
- {
- AnsiString Result;
- TStrings * Storage = static_cast<TStrings *>(const_cast<void*>(ExtraData));
- AnsiString ToolbarKey;
- GetToolbarKey(ToolbarName, Value, ToolbarKey);
- if (Storage->IndexOfName(ToolbarKey) >= 0)
- {
- Result = Storage->Values[ToolbarKey];
- }
- else
- {
- Result = Default;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- static void __fastcall ToolbarWriteInt(const AnsiString ToolbarName,
- const AnsiString Value, const int Data, const void * ExtraData)
- {
- if (Value != "Rev")
- {
- TStrings * Storage = static_cast<TStrings *>(const_cast<void*>(ExtraData));
- AnsiString ToolbarKey;
- GetToolbarKey(ToolbarName, Value, ToolbarKey);
- assert(Storage->IndexOfName(ToolbarKey) < 0);
- Storage->Values[ToolbarKey] = IntToStr(Data);
- }
- }
- //---------------------------------------------------------------------------
- static void __fastcall ToolbarWriteString(const AnsiString ToolbarName,
- const AnsiString Value, const AnsiString Data, const void * ExtraData)
- {
- TStrings * Storage = static_cast<TStrings *>(const_cast<void*>(ExtraData));
- AnsiString ToolbarKey;
- GetToolbarKey(ToolbarName, Value, ToolbarKey);
- assert(Storage->IndexOfName(ToolbarKey) < 0);
- Storage->Values[ToolbarKey] = Data;
- }
- //---------------------------------------------------------------------------
- AnsiString __fastcall GetToolbarsLayoutStr(const TComponent * OwnerComponent)
- {
- AnsiString Result;
- TStrings * Storage = new TStringList();
- try
- {
- TBCustomSavePositions(OwnerComponent, ToolbarWriteInt, ToolbarWriteString,
- Storage);
- Result = Storage->CommaText;
- }
- __finally
- {
- delete Storage;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall LoadToolbarsLayoutStr(const TComponent * OwnerComponent, AnsiString LayoutStr)
- {
- TStrings * Storage = new TStringList();
- try
- {
- Storage->CommaText = LayoutStr;
- TBCustomLoadPositions(OwnerComponent, ToolbarReadInt, ToolbarReadString,
- Storage);
- }
- __finally
- {
- delete Storage;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall AddMenuSeparator(TTBCustomItem * Menu)
- {
- TTBXSeparatorItem * Item = new TTBXSeparatorItem(Menu);
- Item->Caption = "-";
- Item->Hint = "E";
- Menu->Add(Item);
- }
- //---------------------------------------------------------------------------
- void __fastcall MenuPopup(TPopupMenu * AMenu, TPoint Point,
- TComponent * PopupComponent)
- {
- static TComponent * LastPopupComponent = NULL;
- static TDateTime LastCloseUp;
- // pressing the same button within 200ms after closing its popup menu
- // does nothing.
- // it is to immitate close-by-click behaviour. note that menu closes itself
- // before onclick handler of button occurs
- if ((PopupComponent == LastPopupComponent) &&
- (Now() - LastCloseUp < TDateTime(0, 0, 0, 200)))
- {
- LastPopupComponent = NULL;
- }
- else
- {
- TTBXPopupMenu * Menu = CreateTBXPopupMenu(AMenu->Owner);
- Menu->OnPopup = AMenu->OnPopup;
- Menu->Items->SubMenuImages = AMenu->Images;
- for (int Index = 0; Index < AMenu->Items->Count; Index++)
- {
- TMenuItem * AItem = AMenu->Items->Items[Index];
- TTBCustomItem * Item;
- // recurse not implemented yet
- assert(AItem->Count == 0);
- // see TB2DsgnConverter.pas DoConvert
- if (AItem->Caption == "-")
- {
- Item = new TTBXSeparatorItem(Menu);
- }
- else
- {
- Item = new TTBXItem(Menu);
- Item->Action = AItem->Action;
- Item->AutoCheck = AItem->AutoCheck;
- Item->Caption = AItem->Caption;
- Item->Checked = AItem->Checked;
- if (AItem->Default)
- {
- Item->Options = Item->Options << tboDefault;
- }
- Item->Enabled = AItem->Enabled;
- Item->GroupIndex = AItem->GroupIndex;
- Item->HelpContext = AItem->HelpContext;
- Item->ImageIndex = AItem->ImageIndex;
- Item->RadioItem = AItem->RadioItem;
- Item->ShortCut = AItem->ShortCut;
- Item->SubMenuImages = AItem->SubMenuImages;
- Item->OnClick = AItem->OnClick;
- }
- Item->Hint = AItem->Hint;
- Item->Tag = AItem->Tag;
- Item->Visible = AItem->Visible;
- Menu->Items->Add(Item);
- }
- Menu->PopupComponent = PopupComponent;
- Menu->Popup(Point.x, Point.y);
- LastPopupComponent = PopupComponent;
- LastCloseUp = Now();
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall UpgradeSpeedButton(TSpeedButton * /*Button*/)
- {
- // no-op yet
- }
- //---------------------------------------------------------------------------
- struct TThreadParam
- {
- TThreadFunc ThreadFunc;
- void * Parameter;
- };
- //---------------------------------------------------------------------------
- static int __fastcall ThreadProc(void * AParam)
- {
- TThreadParam * Param = reinterpret_cast<TThreadParam *>(AParam);
- unsigned int Result = Param->ThreadFunc(Param->Parameter);
- delete Param;
- EndThread(Result);
- return Result;
- }
- //---------------------------------------------------------------------------
- int __fastcall StartThread(void * SecurityAttributes, unsigned StackSize,
- TThreadFunc ThreadFunc, void * Parameter, unsigned CreationFlags,
- unsigned & ThreadId)
- {
- TThreadParam * Param = new TThreadParam;
- Param->ThreadFunc = ThreadFunc;
- Param->Parameter = Parameter;
- return BeginThread(SecurityAttributes, StackSize, ThreadProc, Param,
- CreationFlags, ThreadId);
- }
|