123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "ScpCommander.h"
- #include "ScpExplorer.h"
- #include <CoreMain.h>
- #include <Common.h>
- #include <Exceptions.h>
- #include <Cryptography.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"
- #include "PasswordEdit.hpp"
- #include "ProgParams.h"
- #include "Tools.h"
- #include "Custom.h"
- #include "HelpWin.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- const UnicodeString AppName = L"WinSCP";
- //---------------------------------------------------------------------------
- TConfiguration * __fastcall CreateConfiguration()
- {
- TConfiguration * Configuration = new TWinConfiguration();
- TProgramParams * Params = TProgramParams::Instance();
- UnicodeString IniFileName = Params->SwitchValue(L"ini");
- if (!IniFileName.IsEmpty())
- {
- if (AnsiSameText(IniFileName, L"nul"))
- {
- Configuration->SetNulStorage();
- }
- else
- {
- 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>();
- }
- return ScpExplorer;
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall SshVersionString()
- {
- return FORMAT(L"WinSCP-release-%s", (Configuration->Version));
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall AppNameString()
- {
- return L"WinSCP";
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall GetRegistryKey()
- {
- return L"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->MainFormHandle, true);
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall LocalSystemSettings(TCustomForm * /*Control*/)
- {
- // noop
- }
- //---------------------------------------------------------------------------
- void __fastcall ShowExtendedException(Exception * E)
- {
- ShowExtendedExceptionEx(NULL, E);
- }
- //---------------------------------------------------------------------------
- void __fastcall ShowExtendedExceptionEx(TTerminal * Terminal,
- Exception * E)
- {
- UnicodeString Message; // not used
- bool Show = ExceptionMessage(E, Message);
- TTerminalManager * Manager = TTerminalManager::Instance(false);
- TQueryType Type;
- ESshTerminate * Terminate = dynamic_cast<ESshTerminate*>(E);
- bool CloseOnCompletion = (Terminate != NULL);
- Type = CloseOnCompletion ? qtInformation : qtError;
- bool ConfirmExitOnCompletion =
- CloseOnCompletion &&
- (Terminate->Operation == odoDisconnect) &&
- WinConfiguration->ConfirmExitOnCompletion;
- if (E->InheritsFrom(__classid(EFatal)) && (Terminal != NULL) &&
- (Manager != NULL) && (Manager->ActiveTerminal == Terminal))
- {
- if (CloseOnCompletion)
- {
- Manager->DisconnectActiveTerminal();
- }
- int SessionReopenTimeout = 0;
- TManagedTerminal * ManagedTerminal = dynamic_cast<TManagedTerminal *>(Terminal);
- if ((ManagedTerminal != NULL) &&
- ((Configuration->SessionReopenTimeout == 0) ||
- ((double)ManagedTerminal->ReopenStart == 0) ||
- (int(double(Now() - ManagedTerminal->ReopenStart) * MSecsPerDay) < Configuration->SessionReopenTimeout)))
- {
- SessionReopenTimeout = GUIConfiguration->SessionReopenAutoIdle;
- }
- unsigned int Result;
- if (CloseOnCompletion)
- {
- assert(Show);
- if (ConfirmExitOnCompletion)
- {
- TMessageParams Params(mpNeverAskAgainCheck);
- Result = FatalExceptionMessageDialog(E, Type, 0,
- (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
- {
- if (Show)
- {
- Result = FatalExceptionMessageDialog(E, Type, SessionReopenTimeout);
- }
- else
- {
- Result = qaOK;
- }
- }
- if (Result == qaYes)
- {
- assert(Terminate != NULL);
- assert(Terminate->Operation != odoIdle);
- Application->Terminate();
- switch (Terminate->Operation)
- {
- case odoDisconnect:
- break;
- case odoShutDown:
- ShutDownWindows();
- break;
- default:
- assert(false);
- }
- }
- else if (Result == qaRetry)
- {
- Manager->ReconnectActiveTerminal();
- }
- else
- {
- Manager->FreeActiveTerminal();
- }
- }
- else
- {
- // this should not happen as we never use Terminal->CloseOnCompletion
- // on inactive terminal
- if (CloseOnCompletion)
- {
- assert(Show);
- if (ConfirmExitOnCompletion)
- {
- TMessageParams Params(mpNeverAskAgainCheck);
- if (ExceptionMessageDialog(E, Type, L"", qaOK, HELP_NONE, &Params) ==
- qaNeverAskAgain)
- {
- WinConfiguration->ConfirmExitOnCompletion = false;
- }
- }
- }
- else
- {
- if (Show)
- {
- ExceptionMessageDialog(E, Type);
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall ShowNotification(TTerminal * Terminal, const UnicodeString & Str,
- TQueryType Type)
- {
- TTerminalManager * Manager = TTerminalManager::Instance(false);
- assert(Manager != NULL);
- Manager->ScpExplorer->PopupTrayBalloon(Terminal, Str, Type);
- }
- //---------------------------------------------------------------------------
- void __fastcall ConfigureInterface()
- {
- UnicodeString 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(L"OfficeXP");
- new TTBXOffice2003Theme(L"Office2003");
- }
- //---------------------------------------------------------------------------
- void __fastcall DoAboutDialog(TConfiguration *Configuration)
- {
- DoAboutDialog(Configuration, true, NULL);
- }
- //---------------------------------------------------------------------
- void __fastcall DoProductLicense()
- {
- DoLicenseDialog(lcWinScp);
- }
- //---------------------------------------------------------------------
- static inline void __fastcall GetToolbarKey(const UnicodeString & ToolbarName,
- const UnicodeString & Value, UnicodeString & ToolbarKey)
- {
- int ToolbarNameLen;
- if ((ToolbarName.Length() > 7) &&
- (ToolbarName.SubString(ToolbarName.Length() - 7 + 1, 7) == L"Toolbar"))
- {
- ToolbarNameLen = ToolbarName.Length() - 7;
- }
- else
- {
- ToolbarNameLen = ToolbarName.Length();
- }
- ToolbarKey = ToolbarName.SubString(1, ToolbarNameLen) + L"_" + Value;
- }
- //---------------------------------------------------------------------------
- static int __fastcall ToolbarReadInt(const UnicodeString ToolbarName,
- const UnicodeString Value, const int Default, const void * ExtraData)
- {
- int Result;
- if (Value == L"Rev")
- {
- Result = 2000;
- }
- else
- {
- TStrings * Storage = static_cast<TStrings *>(const_cast<void*>(ExtraData));
- UnicodeString ToolbarKey;
- GetToolbarKey(ToolbarName, Value, ToolbarKey);
- if (Storage->IndexOfName(ToolbarKey) >= 0)
- {
- Result = StrToIntDef(Storage->Values[ToolbarKey], Default);
- }
- else
- {
- Result = Default;
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- static UnicodeString __fastcall ToolbarReadString(const UnicodeString ToolbarName,
- const UnicodeString Value, const UnicodeString Default, const void * ExtraData)
- {
- UnicodeString Result;
- TStrings * Storage = static_cast<TStrings *>(const_cast<void*>(ExtraData));
- UnicodeString ToolbarKey;
- GetToolbarKey(ToolbarName, Value, ToolbarKey);
- if (Storage->IndexOfName(ToolbarKey) >= 0)
- {
- Result = Storage->Values[ToolbarKey];
- }
- else
- {
- Result = Default;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- static void __fastcall ToolbarWriteInt(const UnicodeString ToolbarName,
- const UnicodeString Value, const int Data, const void * ExtraData)
- {
- if (Value != L"Rev")
- {
- TStrings * Storage = static_cast<TStrings *>(const_cast<void*>(ExtraData));
- UnicodeString ToolbarKey;
- GetToolbarKey(ToolbarName, Value, ToolbarKey);
- assert(Storage->IndexOfName(ToolbarKey) < 0);
- Storage->Values[ToolbarKey] = IntToStr(Data);
- }
- }
- //---------------------------------------------------------------------------
- static void __fastcall ToolbarWriteString(const UnicodeString ToolbarName,
- const UnicodeString Value, const UnicodeString Data, const void * ExtraData)
- {
- TStrings * Storage = static_cast<TStrings *>(const_cast<void*>(ExtraData));
- UnicodeString ToolbarKey;
- GetToolbarKey(ToolbarName, Value, ToolbarKey);
- assert(Storage->IndexOfName(ToolbarKey) < 0);
- Storage->Values[ToolbarKey] = Data;
- }
- //---------------------------------------------------------------------------
- UnicodeString __fastcall GetToolbarsLayoutStr(const TComponent * OwnerComponent)
- {
- UnicodeString 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, UnicodeString 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);
- Menu->Add(Item);
- }
- //---------------------------------------------------------------------------
- static TComponent * LastPopupComponent = NULL;
- static TDateTime LastCloseUp;
- //---------------------------------------------------------------------------
- void __fastcall MenuPopup(TPopupMenu * AMenu, TPoint Point,
- TComponent * PopupComponent)
- {
- // 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 = dynamic_cast<TTBXPopupMenu *>(AMenu);
- if (Menu == NULL)
- {
- 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);
- if (!AItem->Enabled && !AItem->Visible)
- {
- TTBXLabelItem * LabelItem = new TTBXLabelItem(Menu);
- // TTBXLabelItem has it's own Caption
- LabelItem->Caption = AItem->Caption;
- LabelItem->SectionHeader = true;
- Item = LabelItem;
- }
- else
- {
- // see TB2DsgnConverter.pas DoConvert
- if (AItem->Caption == L"-")
- {
- 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,
- TThreadID & ThreadId)
- {
- TThreadParam * Param = new TThreadParam;
- Param->ThreadFunc = ThreadFunc;
- Param->Parameter = Parameter;
- return BeginThread(SecurityAttributes, StackSize, ThreadProc, Param,
- CreationFlags, ThreadId);
- }
- //---------------------------------------------------------------------------
- static TShortCut FirstCtrlNumberShortCut = ShortCut(L'0', TShiftState() << ssCtrl);
- static TShortCut LastCtrlNumberShortCut = ShortCut(L'9', TShiftState() << ssCtrl);
- static TShortCut FirstShiftCtrlAltLetterShortCut = ShortCut(L'A', TShiftState() << ssShift << ssCtrl << ssAlt);
- static TShortCut LastShiftCtrlAltLetterShortCut = ShortCut(L'Z', TShiftState() << ssShift << ssCtrl << ssAlt);
- //---------------------------------------------------------------------------
- void __fastcall InitializeShortCutCombo(TComboBox * ComboBox,
- const TShortCuts & ShortCuts)
- {
- ComboBox->Items->BeginUpdate();
- try
- {
- ComboBox->Items->Clear();
- ComboBox->Items->AddObject(LoadStr(SHORTCUT_NONE), reinterpret_cast<TObject* >(0));
- for (TShortCut AShortCut = FirstCtrlNumberShortCut; AShortCut <= LastCtrlNumberShortCut; AShortCut++)
- {
- if (!ShortCuts.Has(AShortCut))
- {
- ComboBox->Items->AddObject(ShortCutToText(AShortCut), reinterpret_cast<TObject* >(AShortCut));
- }
- }
- for (TShortCut AShortCut = FirstShiftCtrlAltLetterShortCut; AShortCut <= LastShiftCtrlAltLetterShortCut; AShortCut++)
- {
- if (!ShortCuts.Has(AShortCut))
- {
- ComboBox->Items->AddObject(ShortCutToText(AShortCut), reinterpret_cast<TObject* >(AShortCut));
- }
- }
- }
- __finally
- {
- ComboBox->Items->EndUpdate();
- }
- ComboBox->Style = csDropDownList;
- ComboBox->DropDownCount = 16;
- }
- //---------------------------------------------------------------------------
- void __fastcall SetShortCutCombo(TComboBox * ComboBox, TShortCut Value)
- {
- for (int Index = ComboBox->Items->Count - 1; Index >= 0; Index--)
- {
- TShortCut AShortCut = TShortCut(ComboBox->Items->Objects[Index]);
- if (AShortCut == Value)
- {
- ComboBox->ItemIndex = Index;
- break;
- }
- else if (AShortCut < Value)
- {
- assert(Value != 0);
- ComboBox->Items->InsertObject(Index + 1, ShortCutToText(Value),
- reinterpret_cast<TObject* >(Value));
- ComboBox->ItemIndex = Index + 1;
- break;
- }
- assert(Index > 0);
- }
- }
- //---------------------------------------------------------------------------
- TShortCut __fastcall GetShortCutCombo(TComboBox * ComboBox)
- {
- return TShortCut(ComboBox->Items->Objects[ComboBox->ItemIndex]);
- }
- //---------------------------------------------------------------------------
- bool __fastcall IsCustomShortCut(TShortCut ShortCut)
- {
- return
- ((FirstCtrlNumberShortCut <= ShortCut) && (ShortCut <= LastCtrlNumberShortCut)) ||
- ((FirstShiftCtrlAltLetterShortCut <= ShortCut) && (ShortCut <= LastShiftCtrlAltLetterShortCut));
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- class TMasterPasswordDialog : public TCustomDialog
- {
- public:
- __fastcall TMasterPasswordDialog(bool Current);
- bool __fastcall Execute();
- protected:
- virtual void __fastcall DoValidate();
- virtual void __fastcall DoChange(bool & CanSubmit);
- private:
- TPasswordEdit * CurrentEdit;
- TPasswordEdit * NewEdit;
- TPasswordEdit * ConfirmEdit;
- };
- //---------------------------------------------------------------------------
- __fastcall TMasterPasswordDialog::TMasterPasswordDialog(bool Current) :
- TCustomDialog(Current ? HELP_MASTER_PASSWORD_CURRENT : HELP_MASTER_PASSWORD_CHANGE)
- {
- Caption = LoadStr(MASTER_PASSWORD_CAPTION);
- CurrentEdit = new TPasswordEdit(this);
- AddEdit(CurrentEdit, CreateLabel(LoadStr(MASTER_PASSWORD_CURRENT)));
- EnableControl(CurrentEdit, Current || WinConfiguration->UseMasterPassword);
- CurrentEdit->MaxLength = PasswordMaxLength();
- if (!Current)
- {
- NewEdit = new TPasswordEdit(this);
- AddEdit(NewEdit, CreateLabel(LoadStr(MASTER_PASSWORD_NEW)));
- NewEdit->MaxLength = CurrentEdit->MaxLength;
- if (!WinConfiguration->UseMasterPassword)
- {
- ActiveControl = NewEdit;
- }
- ConfirmEdit = new TPasswordEdit(this);
- AddEdit(ConfirmEdit, CreateLabel(LoadStr(MASTER_PASSWORD_CONFIRM)));
- ConfirmEdit->MaxLength = CurrentEdit->MaxLength;
- }
- else
- {
- NewEdit = NULL;
- ConfirmEdit = NULL;
- }
- }
- //---------------------------------------------------------------------------
- bool __fastcall TMasterPasswordDialog::Execute()
- {
- bool Result = TCustomDialog::Execute();
- if (Result)
- {
- if (CurrentEdit->Enabled)
- {
- WinConfiguration->SetMasterPassword(CurrentEdit->Text);
- }
- if (NewEdit != NULL)
- {
- WinConfiguration->SetMasterPassword(NewEdit->Text);
- }
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TMasterPasswordDialog::DoChange(bool & CanSubmit)
- {
- CanSubmit =
- (!WinConfiguration->UseMasterPassword || (IsValidPassword(CurrentEdit->Text) >= 0)) &&
- ((NewEdit == NULL) || (IsValidPassword(NewEdit->Text) >= 0)) &&
- ((ConfirmEdit == NULL) || (IsValidPassword(ConfirmEdit->Text) >= 0));
- TCustomDialog::DoChange(CanSubmit);
- }
- //---------------------------------------------------------------------------
- void __fastcall TMasterPasswordDialog::DoValidate()
- {
- TCustomDialog::DoValidate();
- if (WinConfiguration->UseMasterPassword &&
- !WinConfiguration->ValidateMasterPassword(CurrentEdit->Text))
- {
- CurrentEdit->SetFocus();
- CurrentEdit->SelectAll();
- throw Exception(LoadStr(MASTER_PASSWORD_INCORRECT));
- }
- if (NewEdit != NULL)
- {
- if (NewEdit->Text != ConfirmEdit->Text)
- {
- ConfirmEdit->SetFocus();
- ConfirmEdit->SelectAll();
- throw Exception(LoadStr(MASTER_PASSWORD_DIFFERENT));
- }
- int Valid = IsValidPassword(NewEdit->Text);
- if (Valid <= 0)
- {
- assert(Valid == 0);
- if (MessageDialog(LoadStr(MASTER_PASSWORD_SIMPLE), qtWarning,
- qaOK | qaCancel, HELP_MASTER_PASSWORD_SIMPLE) == qaCancel)
- {
- NewEdit->SetFocus();
- NewEdit->SelectAll();
- Abort();
- }
- }
- }
- }
- //---------------------------------------------------------------------------
- static bool __fastcall DoMasterPasswordDialog(bool Current)
- {
- bool Result;
- TMasterPasswordDialog * Dialog = new TMasterPasswordDialog(Current);
- try
- {
- Result = Dialog->Execute();
- }
- __finally
- {
- delete Dialog;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- bool __fastcall DoMasterPasswordDialog()
- {
- return DoMasterPasswordDialog(true);
- }
- //---------------------------------------------------------------------------
- bool __fastcall DoChangeMasterPasswordDialog()
- {
- return DoMasterPasswordDialog(false);
- }
- //---------------------------------------------------------------------------
- void __fastcall MessageWithNoHelp(const UnicodeString & Message)
- {
- TMessageParams Params;
- Params.AllowHelp = false; // to avoid recursion
- if (MessageDialog(LoadStr(HELP_SEND_MESSAGE), qtConfirmation,
- qaOK | qaCancel, HELP_NONE, &Params) == qaOK)
- {
- SearchHelp(Message);
- }
- }
|