1
0

Copy.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. TButton *HelpButton;
  28. TCheckBox *NeverShowAgainCheck;
  29. TButton *TransferSettingsButton;
  30. TGroupBox *CopyParamGroup;
  31. TLabel *CopyParamLabel;
  32. TImage *Image;
  33. TPanel *ShortCutHintPanel;
  34. TLabel *ShortCutHintLabel;
  35. void __fastcall FormShow(TObject *Sender);
  36. void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
  37. void __fastcall LocalDirectoryBrowseButtonClick(TObject *Sender);
  38. void __fastcall ControlChange(TObject *Sender);
  39. void __fastcall TransferSettingsButtonClick(TObject *Sender);
  40. void __fastcall HelpButtonClick(TObject *Sender);
  41. void __fastcall CopyParamGroupClick(TObject *Sender);
  42. void __fastcall CopyParamGroupContextPopup(TObject *Sender,
  43. TPoint &MousePos, bool &Handled);
  44. void __fastcall TransferSettingsButtonDropDownClick(TObject *Sender);
  45. void __fastcall NeverShowAgainCheckClick(TObject *Sender);
  46. void __fastcall ShortCutHintLabelClick(TObject *Sender);
  47. void __fastcall LocalDirectoryEditExit(TObject *Sender);
  48. private:
  49. bool FDefaultToRemote;
  50. bool FToRemote;
  51. TStrings * FFileList;
  52. bool FMove;
  53. int FOptions;
  54. int FOutputOptions;
  55. TGUICopyParamType FParams;
  56. TPopupMenu * FPresetsMenu;
  57. UnicodeString FPreset;
  58. TCopyParamType FCopyParams;
  59. int FCopyParamAttrs;
  60. TSessionData * FSessionData;
  61. bool FSaveSettings;
  62. UnicodeString __fastcall GetDirectory();
  63. THistoryComboBox * __fastcall GetDirectoryEdit();
  64. void __fastcall SetParams(const TGUICopyParamType & value);
  65. TGUICopyParamType __fastcall GetParams();
  66. void __fastcall SetDirectory(UnicodeString value);
  67. UnicodeString __fastcall GetFileMask();
  68. void __fastcall SetOutputOptions(int value);
  69. int __fastcall GetOutputOptions();
  70. void __fastcall CopyParamClick(TObject * Sender);
  71. void __fastcall GenerateCode();
  72. protected:
  73. void __fastcall UpdateControls();
  74. void __fastcall AdjustControls();
  75. void __fastcall AdjustTransferControls();
  76. bool __fastcall RemotePaths();
  77. void __fastcall CopyParamListPopup(TRect R, int AdditionalOptions);
  78. int __fastcall ActualCopyParamAttrs();
  79. INTERFACE_HOOK;
  80. public:
  81. __fastcall TCopyDialog(
  82. TComponent* Owner, bool ToRemote, bool Move, TStrings * FileList, int Options,
  83. int CopyParamAttrs, TSessionData * SessionData);
  84. virtual __fastcall ~TCopyDialog();
  85. bool __fastcall Execute();
  86. __property UnicodeString Directory = { read = GetDirectory, write = SetDirectory };
  87. __property THistoryComboBox * DirectoryEdit = { read = GetDirectoryEdit };
  88. __property TGUICopyParamType Params = { read = GetParams, write = SetParams };
  89. __property int OutputOptions = { read = GetOutputOptions, write = SetOutputOptions };
  90. };
  91. //---------------------------------------------------------------------------
  92. #endif