1
0

CreateDirectory.cpp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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);
  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):
  37. TForm(AOwner)
  38. {
  39. UseSystemSettings(this);
  40. RightsFrame->AllowAddXToDirectories = false;
  41. FAllowedChanges = AllowedChanges;
  42. }
  43. //---------------------------------------------------------------------
  44. __fastcall TCreateDirectoryDialog::~TCreateDirectoryDialog()
  45. {
  46. }
  47. //---------------------------------------------------------------------------
  48. void __fastcall TCreateDirectoryDialog::ControlChange(TObject * /*Sender*/)
  49. {
  50. UpdateControls();
  51. }
  52. //---------------------------------------------------------------------------
  53. void __fastcall TCreateDirectoryDialog::UpdateControls()
  54. {
  55. EnableControl(OKBtn, !DirectoryEdit->Text.Trim().IsEmpty());
  56. EnableControl(SetRightsCheck, FLAGSET(FAllowedChanges, cpMode));
  57. EnableControl(RightsFrame, SetRightsCheck->Enabled && SetRightsCheck->Checked);
  58. }
  59. //---------------------------------------------------------------------------
  60. bool __fastcall TCreateDirectoryDialog::Execute(UnicodeString & Directory,
  61. TRemoteProperties * Properties, bool & SaveSettings)
  62. {
  63. DirectoryEdit->Text = Directory;
  64. SaveSettingsCheck->Checked = SaveSettings;
  65. if (Properties != NULL)
  66. {
  67. bool SetRights = Properties->Valid.Contains(vpRights);
  68. SetRightsCheck->Checked = SetRights;
  69. // expect sensible value even if rights are not set valid
  70. RightsFrame->Rights = Properties->Rights;
  71. }
  72. bool Result = (ShowModal() == DefaultResult(this));
  73. if (Result)
  74. {
  75. Directory = DirectoryEdit->Text;
  76. SaveSettings = SaveSettingsCheck->Checked;
  77. if (Properties != NULL)
  78. {
  79. if (SetRightsCheck->Enabled && SetRightsCheck->Checked)
  80. {
  81. Properties->Valid = Properties->Valid << vpRights;
  82. Properties->Rights = RightsFrame->Rights;
  83. }
  84. else
  85. {
  86. Properties->Valid = Properties->Valid >> vpRights;
  87. }
  88. }
  89. }
  90. return Result;
  91. }
  92. //---------------------------------------------------------------------------
  93. void __fastcall TCreateDirectoryDialog::DirectoryEditChange(TObject * /*Sender*/)
  94. {
  95. UpdateControls();
  96. }
  97. //---------------------------------------------------------------------------
  98. void __fastcall TCreateDirectoryDialog::FormShow(TObject * /*Sender*/)
  99. {
  100. InstallPathWordBreakProc(DirectoryEdit);
  101. UpdateControls();
  102. }
  103. //---------------------------------------------------------------------------
  104. void __fastcall TCreateDirectoryDialog::HelpButtonClick(TObject * /*Sender*/)
  105. {
  106. FormHelp(this);
  107. }
  108. //---------------------------------------------------------------------------
  109. void __fastcall TCreateDirectoryDialog::FormCloseQuery(TObject * /*Sender*/,
  110. bool & /*CanClose*/)
  111. {
  112. if (ModalResult == DefaultResult(this))
  113. {
  114. ExitActiveControl(this);
  115. }
  116. }
  117. //---------------------------------------------------------------------------