| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- //---------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include <Dialogs.hpp>
- //---------------------------------------------------------------------
- #include <Common.h>
- #include <CustomWinConfiguration.h>
- #include <WinInterface.h>
- #include <VCLCommon.h>
- #include <TextsWin.h>
- #include <HelpWin.h>
- #include <CoreMain.h>
- #include "Custom.h"
- //---------------------------------------------------------------------
- #pragma link "PasswordEdit"
- #ifndef NO_RESOURCES
- #pragma resource "*.dfm"
- #endif
- //---------------------------------------------------------------------
- __fastcall TCustomDialog::TCustomDialog(UnicodeString AHelpKeyword)
- : TForm(GetFormOwner())
- {
- UseSystemSettings(this);
- FPos = 8;
- HelpKeyword = AHelpKeyword;
- TBorderIcons BI = BorderIcons;
- if (HelpKeyword.IsEmpty())
- {
- BI >> biHelp;
- OKButton->Left = CancelButton->Left;
- CancelButton->Left = HelpButton->Left;
- HelpButton->Visible = false;
- }
- else
- {
- BI << biHelp;
- }
- BorderIcons = BI;
- }
- //---------------------------------------------------------------------
- bool __fastcall TCustomDialog::Execute()
- {
- Changed();
- return (ShowModal() == mrOk);
- }
- //---------------------------------------------------------------------
- void __fastcall TCustomDialog::DoChange(bool & /*CanSubmit*/)
- {
- // noop
- }
- //---------------------------------------------------------------------
- void __fastcall TCustomDialog::Changed()
- {
- bool CanSubmit = true;
- DoChange(CanSubmit);
- EnableControl(OKButton, CanSubmit);
- }
- //---------------------------------------------------------------------
- void __fastcall TCustomDialog::Change(TObject * /*Sender*/)
- {
- Changed();
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomDialog::HelpButtonClick(TObject * /*Sender*/)
- {
- FormHelp(this);
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomDialog::DoShow()
- {
- OKButton->TabOrder = FCount;
- CancelButton->TabOrder = static_cast<short>(FCount + 1);
- HelpButton->TabOrder = static_cast<short>(FCount + 2);
- Changed();
- TForm::DoShow();
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomDialog::DoValidate()
- {
- // noop
- }
- //---------------------------------------------------------------------------
- bool __fastcall TCustomDialog::CloseQuery()
- {
- if (ModalResult == mrOk)
- {
- DoValidate();
- }
- return TForm::CloseQuery();
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomDialog::AddWinControl(TWinControl * Control)
- {
- Control->TabOrder = FCount;
- FCount++;
- }
- //---------------------------------------------------------------------------
- TLabel * __fastcall TCustomDialog::CreateLabel(UnicodeString Label)
- {
- TLabel * Result = new TLabel(this);
- Result->Caption = Label;
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomDialog::AddEditLikeControl(TWinControl * Edit, TLabel * Label)
- {
- int PrePos = FPos;
- Label->Parent = this;
- Label->Left = 8;
- Label->Top = FPos;
- FPos += 16;
- Edit->Parent = this;
- Edit->Left = 8;
- Edit->Top = FPos;
- Edit->Width = ClientWidth - (Edit->Left * 2);
- // this updates Height property to real value
- Edit->HandleNeeded();
- FPos += Edit->Height + 8;
- if (Label->FocusControl == NULL)
- {
- Label->FocusControl = Edit;
- }
- else
- {
- assert(Label->FocusControl == Edit);
- }
- ClientHeight = ClientHeight + (FPos - PrePos);
- AddWinControl(Edit);
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomDialog::AddEdit(TCustomEdit * Edit, TLabel * Label)
- {
- AddEditLikeControl(Edit, Label);
- TEdit * PublicEdit = reinterpret_cast<TEdit *>(Edit);
- if (PublicEdit->OnChange == NULL)
- {
- PublicEdit->OnChange = Change;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomDialog::AddComboBox(TCustomCombo * Combo, TLabel * Label)
- {
- AddEditLikeControl(Combo, Label);
- TComboBox * PublicCombo = reinterpret_cast<TComboBox *>(Combo);
- if (PublicCombo->OnChange == NULL)
- {
- PublicCombo->OnChange = Change;
- }
- }
- //---------------------------------------------------------------------------
- void __fastcall TCustomDialog::AddButtonControl(TButtonControl * Control)
- {
- int PrePos = FPos;
- Control->Parent = this;
- Control->Left = 14;
- Control->Top = FPos;
- Control->Width = ClientWidth - Control->Left - 8;
- // this updates Height property to real value
- Control->HandleNeeded();
- FPos += Control->Height + 8;
- ClientHeight = ClientHeight + (FPos - PrePos);
- AddWinControl(Control);
- TCheckBox * PublicControl = reinterpret_cast<TCheckBox *>(Control);
- if (PublicControl->OnClick == NULL)
- {
- PublicControl->OnClick = Change;
- }
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- class TSaveSessionDialog : public TCustomDialog
- {
- public:
- __fastcall TSaveSessionDialog(TSessionData * OriginalSession, bool CanSavePassword, bool NotRecommendedSavingPassword);
- bool __fastcall Execute(UnicodeString & SessionName, bool & SavePassword);
- protected:
- DYNAMIC void __fastcall DoShow();
- virtual void __fastcall DoValidate();
- virtual void __fastcall DoChange(bool & CanSubmit);
- private:
- TSessionData * FOriginalSession;
- TComboBox * SessionNameCombo;
- TCheckBox * SavePasswordCheck;
- };
- //---------------------------------------------------------------------------
- __fastcall TSaveSessionDialog::TSaveSessionDialog(
- TSessionData * OriginalSession, bool CanSavePassword, bool NotRecommendedSavingPassword) :
- TCustomDialog(HELP_SESSION_SAVE),
- FOriginalSession(OriginalSession)
- {
- Caption = LoadStr(SAVE_SESSION_CAPTION);
- SessionNameCombo = new TComboBox(this);
- SessionNameCombo->AutoComplete = false;
- AddComboBox(SessionNameCombo, CreateLabel(LoadStr(SAVE_SESSION_PROMPT)));
- // parent has to be set before following
- InstallPathWordBreakProc(SessionNameCombo);
- SessionNameCombo->Items->BeginUpdate();
- try
- {
- for (int Index = 0; Index < StoredSessions->Count; Index++)
- {
- TSessionData * Data = StoredSessions->Sessions[Index];
- if (!Data->Special)
- {
- SessionNameCombo->Items->Add(Data->Name);
- }
- }
- }
- __finally
- {
- SessionNameCombo->Items->EndUpdate();
- }
- SavePasswordCheck = new TCheckBox(this);
- SavePasswordCheck->Caption = LoadStr(
- NotRecommendedSavingPassword ? SAVE_SESSION_PASSWORD :
- (CustomWinConfiguration->UseMasterPassword ? SAVE_SESSION_PASSWORD_MASTER : SAVE_SESSION_PASSWORD_RECOMMENDED));
- AddButtonControl(SavePasswordCheck);
- EnableControl(SavePasswordCheck, CanSavePassword);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TSaveSessionDialog::Execute(UnicodeString & SessionName, bool & SavePassword)
- {
- SessionNameCombo->Text = SessionName;
- SavePasswordCheck->Checked = SavePassword;
- bool Result = TCustomDialog::Execute();
- if (Result)
- {
- SessionName = SessionNameCombo->Text;
- SavePassword = SavePasswordCheck->Checked;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall TSaveSessionDialog::DoShow()
- {
- int P = SessionNameCombo->Text.LastDelimiter(L"/");
- if (P > 0)
- {
- SessionNameCombo->SetFocus();
- SessionNameCombo->SelStart = P;
- SessionNameCombo->SelLength = SessionNameCombo->Text.Length() - P;
- }
- TCustomDialog::DoShow();
- }
- //---------------------------------------------------------------------------
- void __fastcall TSaveSessionDialog::DoValidate()
- {
- SessionNameValidate(SessionNameCombo->Text, FOriginalSession);
- if (SavePasswordCheck->Enabled && SavePasswordCheck->Checked &&
- CustomWinConfiguration->UseMasterPassword)
- {
- CustomWinConfiguration->AskForMasterPasswordIfNotSet();
- }
- TCustomDialog::DoValidate();
- }
- //---------------------------------------------------------------------------
- void __fastcall TSaveSessionDialog::DoChange(bool & CanSubmit)
- {
- CanSubmit = !SessionNameCombo->Text.IsEmpty();
- TCustomDialog::DoChange(CanSubmit);
- }
- //---------------------------------------------------------------------------
- bool __fastcall DoSaveSessionDialog(UnicodeString & SessionName,
- bool * SavePassword, TSessionData * OriginalSession, bool NotRecommendedSavingPassword)
- {
- bool Result;
- TSaveSessionDialog * Dialog = new TSaveSessionDialog(
- OriginalSession, (SavePassword != NULL), NotRecommendedSavingPassword);
- try
- {
- bool Dummy = false;
- if (SavePassword == NULL)
- {
- SavePassword = &Dummy;
- }
- Result = Dialog->Execute(SessionName, *SavePassword);
- }
- __finally
- {
- delete Dialog;
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- void __fastcall SessionNameValidate(const UnicodeString & Text,
- TSessionData * RenamingSession)
- {
- TSessionData::ValidatePath(Text);
- assert(StoredSessions);
- TSessionData * Data = (TSessionData *)StoredSessions->FindByName(Text);
- if (Data && Data->Special)
- {
- MessageDialog(FMTLOAD(CANNOT_OVERWRITE_SPECIAL_SESSION, (Text)),
- qtError, qaOK, HELP_NONE);
- Abort();
- }
- else if (Data && (Data != RenamingSession) &&
- MessageDialog(FMTLOAD(CONFIRM_OVERWRITE_SESSION, (Text)),
- qtConfirmation, qaYes | qaNo, HELP_SESSION_SAVE_OVERWRITE) != qaYes)
- {
- Abort();
- }
- }
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- class TShortCutDialog : public TCustomDialog
- {
- public:
- __fastcall TShortCutDialog(const TShortCuts & ShortCuts, UnicodeString HelpKeyword);
- bool __fastcall Execute(TShortCut & ShortCut);
- private:
- TComboBox * ShortCutCombo;
- };
- //---------------------------------------------------------------------------
- __fastcall TShortCutDialog::TShortCutDialog(const TShortCuts & ShortCuts, UnicodeString HelpKeyword) :
- TCustomDialog(HelpKeyword)
- {
- Caption = LoadStr(SHORTCUT_CAPTION);
- ShortCutCombo = new TComboBox(this);
- AddComboBox(ShortCutCombo, CreateLabel(LoadStr(SHORTCUT_LABEL)));
- InitializeShortCutCombo(ShortCutCombo, ShortCuts);
- }
- //---------------------------------------------------------------------------
- bool __fastcall TShortCutDialog::Execute(TShortCut & ShortCut)
- {
- SetShortCutCombo(ShortCutCombo, ShortCut);
- bool Result = TCustomDialog::Execute();
- if (Result)
- {
- ShortCut = GetShortCutCombo(ShortCutCombo);
- }
- return Result;
- }
- //---------------------------------------------------------------------------
- bool __fastcall DoShortCutDialog(TShortCut & ShortCut,
- const TShortCuts & ShortCuts, UnicodeString HelpKeyword)
- {
- bool Result;
- TShortCutDialog * Dialog = new TShortCutDialog(ShortCuts, HelpKeyword);
- try
- {
- Result = Dialog->Execute(ShortCut);
- }
- __finally
- {
- delete Dialog;
- }
- return Result;
- }
|