CreateDirectory.cpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. //---------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include <CoreMain.h>
  5. #include <Configuration.h>
  6. #include <RemoteFiles.h>
  7. #include <VCLCommon.h>
  8. #include <TextsWin.h>
  9. #include <Common.h>
  10. #include <WinInterface.h>
  11. #include <Tools.h>
  12. #include "CreateDirectory.h"
  13. //---------------------------------------------------------------------
  14. #pragma link "RightsExt"
  15. #pragma link "Rights"
  16. #ifndef NO_RESOURCES
  17. #pragma resource "*.dfm"
  18. #endif
  19. //---------------------------------------------------------------------
  20. bool __fastcall DoCreateDirectoryDialog(UnicodeString & Directory,
  21. TRemoteProperties * Properties, int AllowedChanges, bool & SaveSettings)
  22. {
  23. bool Result;
  24. TCreateDirectoryDialog * Dialog = new TCreateDirectoryDialog(Application, AllowedChanges, (Properties != NULL));
  25. try
  26. {
  27. Result = Dialog->Execute(Directory, Properties, SaveSettings);
  28. }
  29. __finally
  30. {
  31. delete Dialog;
  32. }
  33. return Result;
  34. }
  35. //---------------------------------------------------------------------
  36. __fastcall TCreateDirectoryDialog::TCreateDirectoryDialog(TComponent * AOwner, int AllowedChanges, bool Remote):
  37. TForm(AOwner)
  38. {
  39. UseSystemSettings(this);
  40. RightsFrame->AllowAddXToDirectories = false;
  41. FAllowedChanges = AllowedChanges;
  42. if (!Remote)
  43. {
  44. AttributesGroup->Visible = false;
  45. ClientHeight = ClientHeight - AttributesGroup->Height;
  46. }
  47. }
  48. //---------------------------------------------------------------------
  49. __fastcall TCreateDirectoryDialog::~TCreateDirectoryDialog()
  50. {
  51. }
  52. //---------------------------------------------------------------------------
  53. void __fastcall TCreateDirectoryDialog::ControlChange(TObject * /*Sender*/)
  54. {
  55. UpdateControls();
  56. }
  57. //---------------------------------------------------------------------------
  58. void __fastcall TCreateDirectoryDialog::UpdateControls()
  59. {
  60. EnableControl(OKBtn, !DirectoryEdit->Text.Trim().IsEmpty());
  61. EnableControl(SetRightsCheck, FLAGSET(FAllowedChanges, cpMode));
  62. EnableControl(RightsFrame, SetRightsCheck->Enabled && SetRightsCheck->Checked);
  63. }
  64. //---------------------------------------------------------------------------
  65. bool __fastcall TCreateDirectoryDialog::Execute(UnicodeString & Directory,
  66. TRemoteProperties * Properties, bool & SaveSettings)
  67. {
  68. DirectoryEdit->Text = Directory;
  69. SaveSettingsCheck->Checked = SaveSettings;
  70. if (Properties != NULL)
  71. {
  72. bool SetRights = Properties->Valid.Contains(vpRights);
  73. SetRightsCheck->Checked = SetRights;
  74. // expect sensible value even if rights are not set valid
  75. RightsFrame->Rights = Properties->Rights;
  76. }
  77. bool Result = (ShowModal() == DefaultResult(this));
  78. if (Result)
  79. {
  80. Directory = DirectoryEdit->Text;
  81. SaveSettings = SaveSettingsCheck->Checked;
  82. if (Properties != NULL)
  83. {
  84. if (SetRightsCheck->Enabled && SetRightsCheck->Checked)
  85. {
  86. Properties->Valid = Properties->Valid << vpRights;
  87. Properties->Rights = RightsFrame->Rights;
  88. }
  89. else
  90. {
  91. Properties->Valid = Properties->Valid >> vpRights;
  92. }
  93. }
  94. }
  95. return Result;
  96. }
  97. //---------------------------------------------------------------------------
  98. void __fastcall TCreateDirectoryDialog::DirectoryEditChange(TObject * /*Sender*/)
  99. {
  100. UpdateControls();
  101. }
  102. //---------------------------------------------------------------------------
  103. void __fastcall TCreateDirectoryDialog::FormShow(TObject * /*Sender*/)
  104. {
  105. InstallPathWordBreakProc(DirectoryEdit);
  106. UpdateControls();
  107. }
  108. //---------------------------------------------------------------------------
  109. void __fastcall TCreateDirectoryDialog::HelpButtonClick(TObject * /*Sender*/)
  110. {
  111. FormHelp(this);
  112. }
  113. //---------------------------------------------------------------------------
  114. void __fastcall TCreateDirectoryDialog::FormCloseQuery(TObject * /*Sender*/,
  115. bool & /*CanClose*/)
  116. {
  117. if (ModalResult == DefaultResult(this))
  118. {
  119. ExitActiveControl(this);
  120. }
  121. }
  122. //---------------------------------------------------------------------------