Copy.h 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. private:
  48. bool FDefaultToRemote;
  49. bool FToRemote;
  50. TStrings * FFileList;
  51. bool FMove;
  52. int FOptions;
  53. int FOutputOptions;
  54. TGUICopyParamType FParams;
  55. TPopupMenu * FPresetsMenu;
  56. UnicodeString FPreset;
  57. TCopyParamType FCopyParams;
  58. int FCopyParamAttrs;
  59. TSessionData * FSessionData;
  60. bool FSaveSettings;
  61. UnicodeString __fastcall GetDirectory();
  62. THistoryComboBox * __fastcall GetDirectoryEdit();
  63. void __fastcall SetParams(const TGUICopyParamType & value);
  64. TGUICopyParamType __fastcall GetParams();
  65. void __fastcall SetDirectory(UnicodeString value);
  66. UnicodeString __fastcall GetFileMask();
  67. void __fastcall SetOutputOptions(int value);
  68. int __fastcall GetOutputOptions();
  69. void __fastcall CopyParamClick(TObject * Sender);
  70. void __fastcall GenerateCode();
  71. protected:
  72. void __fastcall UpdateControls();
  73. void __fastcall AdjustControls();
  74. void __fastcall AdjustTransferControls();
  75. bool __fastcall RemotePaths();
  76. void __fastcall CopyParamListPopup(TRect R, int AdditionalOptions);
  77. public:
  78. __fastcall TCopyDialog(
  79. TComponent* Owner, bool ToRemote, bool Move, TStrings * FileList, int Options,
  80. int CopyParamAttrs, TSessionData * SessionData);
  81. virtual __fastcall ~TCopyDialog();
  82. bool __fastcall Execute();
  83. __property UnicodeString Directory = { read = GetDirectory, write = SetDirectory };
  84. __property THistoryComboBox * DirectoryEdit = { read = GetDirectoryEdit };
  85. __property TGUICopyParamType Params = { read = GetParams, write = SetParams };
  86. __property int OutputOptions = { read = GetOutputOptions, write = SetOutputOptions };
  87. };
  88. //---------------------------------------------------------------------------
  89. #endif