Copy.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //---------------------------------------------------------------------------
  2. #ifndef CopyH
  3. #define CopyH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <Mask.hpp>
  10. #include <ExtCtrls.hpp>
  11. #include <HistoryComboBox.hpp>
  12. #include <Vcl.Imaging.pngimage.hpp>
  13. #include "Rights.h"
  14. #include "CopyParams.h"
  15. #include <Menus.hpp>
  16. //---------------------------------------------------------------------------
  17. class TCopyDialog : public TForm
  18. {
  19. __published:
  20. TLabel *DirectoryLabel;
  21. THistoryComboBox *LocalDirectoryEdit;
  22. THistoryComboBox *RemoteDirectoryEdit;
  23. TButton *OkButton;
  24. TButton *CancelButton;
  25. TButton *LocalDirectoryBrowseButton;
  26. TCheckBox *QueueCheck2;
  27. TCheckBox *QueueIndividuallyCheck;
  28. TButton *HelpButton;
  29. TCheckBox *NeverShowAgainCheck;
  30. TButton *TransferSettingsButton;
  31. TGroupBox *CopyParamGroup;
  32. TLabel *CopyParamLabel;
  33. TImage *CopyImage;
  34. TImage *MoveImage;
  35. TImage *CopyUploadImage;
  36. TImage *CopyDownloadImage;
  37. TImage *MoveDownloadImage;
  38. TImage *MoveUploadImage;
  39. void __fastcall FormShow(TObject *Sender);
  40. void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
  41. void __fastcall LocalDirectoryBrowseButtonClick(TObject *Sender);
  42. void __fastcall ControlChange(TObject *Sender);
  43. void __fastcall TransferSettingsButtonClick(TObject *Sender);
  44. void __fastcall HelpButtonClick(TObject *Sender);
  45. void __fastcall CopyParamGroupClick(TObject *Sender);
  46. void __fastcall CopyParamGroupContextPopup(TObject *Sender,
  47. TPoint &MousePos, bool &Handled);
  48. void __fastcall TransferSettingsButtonDropDownClick(TObject *Sender);
  49. void __fastcall NeverShowAgainCheckClick(TObject *Sender);
  50. private:
  51. bool FDefaultToRemote;
  52. bool FToRemote;
  53. TStrings * FFileList;
  54. bool FMove;
  55. int FOptions;
  56. int FOutputOptions;
  57. TGUICopyParamType FParams;
  58. TPopupMenu * FPresetsMenu;
  59. UnicodeString FPreset;
  60. TCopyParamType FCopyParams;
  61. int FCopyParamAttrs;
  62. bool FSaveSettings;
  63. UnicodeString __fastcall GetDirectory();
  64. THistoryComboBox * __fastcall GetDirectoryEdit();
  65. void __fastcall SetParams(const TGUICopyParamType & value);
  66. TGUICopyParamType __fastcall GetParams();
  67. void __fastcall SetDirectory(UnicodeString value);
  68. UnicodeString __fastcall GetFileMask();
  69. void __fastcall SetOutputOptions(int value);
  70. int __fastcall GetOutputOptions();
  71. void __fastcall CopyParamClick(TObject * Sender);
  72. protected:
  73. void __fastcall UpdateControls();
  74. void __fastcall AdjustControls();
  75. void __fastcall AdjustTransferControls();
  76. bool __fastcall RemotePaths();
  77. void __fastcall CopyParamListPopup(TPoint P, int AdditionalOptions);
  78. public:
  79. __fastcall TCopyDialog(TComponent* Owner, bool ToRemote, bool Move, TStrings * FileList, int Options, int CopyParamAttrs);
  80. virtual __fastcall ~TCopyDialog();
  81. bool __fastcall Execute();
  82. __property UnicodeString Directory = { read = GetDirectory, write = SetDirectory };
  83. __property THistoryComboBox * DirectoryEdit = { read = GetDirectoryEdit };
  84. __property TGUICopyParamType Params = { read = GetParams, write = SetParams };
  85. __property int OutputOptions = { read = GetOutputOptions, write = SetOutputOptions };
  86. };
  87. //---------------------------------------------------------------------------
  88. #endif