Copy.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 <Menus.hpp>
  13. //---------------------------------------------------------------------------
  14. class TCopyDialog : public TForm
  15. {
  16. __published:
  17. TLabel *DirectoryLabel;
  18. THistoryComboBox *LocalDirectoryEdit;
  19. THistoryComboBox *RemoteDirectoryEdit;
  20. TButton *OkButton;
  21. TButton *CancelButton;
  22. TButton *LocalDirectoryBrowseButton;
  23. TCheckBox *QueueCheck2;
  24. TButton *HelpButton;
  25. TCheckBox *NeverShowAgainCheck;
  26. TButton *TransferSettingsButton;
  27. TGroupBox *CopyParamGroup;
  28. TLabel *CopyParamLabel;
  29. TImage *Image;
  30. TPanel *ShortCutHintPanel;
  31. TLabel *ShortCutHintLabel;
  32. TPopupMenu *OkMenu;
  33. TMenuItem *DownloadItem;
  34. TMenuItem *ExploreItem;
  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. void __fastcall DownloadItemClick(TObject *Sender);
  49. void __fastcall ExploreItemClick(TObject *Sender);
  50. void __fastcall OkButtonDropDownClick(TObject *Sender);
  51. void __fastcall FormAfterMonitorDpiChanged(TObject *Sender, int OldDPI, int NewDPI);
  52. private:
  53. bool FToRemote;
  54. TStrings * FFileList;
  55. bool FMove;
  56. int FOptions;
  57. int FOutputOptions;
  58. TGUICopyParamType FParams;
  59. TPopupMenu * FPresetsMenu;
  60. UnicodeString FPreset;
  61. TCopyParamType FCopyParams;
  62. int FCopyParamAttrs;
  63. TSessionData * FSessionData;
  64. bool FSaveSettings;
  65. bool FExplore;
  66. UnicodeString __fastcall GetDirectory();
  67. THistoryComboBox * __fastcall GetDirectoryEdit();
  68. void __fastcall SetParams(const TGUICopyParamType & value);
  69. TGUICopyParamType __fastcall GetParams();
  70. void __fastcall SetDirectory(UnicodeString value);
  71. UnicodeString __fastcall GetFileMask();
  72. void __fastcall SetOutputOptions(int value);
  73. int __fastcall GetOutputOptions();
  74. void __fastcall CopyParamClick(TObject * Sender);
  75. void __fastcall GenerateCode();
  76. protected:
  77. void __fastcall UpdateControls();
  78. void __fastcall AdjustControls();
  79. void __fastcall AdjustTransferControls();
  80. bool __fastcall RemotePaths();
  81. void __fastcall CopyParamListPopup(TRect R, int AdditionalOptions);
  82. int __fastcall ActualCopyParamAttrs();
  83. virtual void __fastcall CreateWnd();
  84. INTERFACE_HOOK
  85. public:
  86. __fastcall TCopyDialog(
  87. TComponent* Owner, bool ToRemote, bool Move, TStrings * FileList, int Options,
  88. int CopyParamAttrs, TSessionData * SessionData);
  89. virtual __fastcall ~TCopyDialog();
  90. bool __fastcall Execute();
  91. __property UnicodeString Directory = { read = GetDirectory, write = SetDirectory };
  92. __property THistoryComboBox * DirectoryEdit = { read = GetDirectoryEdit };
  93. __property TGUICopyParamType Params = { read = GetParams, write = SetParams };
  94. __property int OutputOptions = { read = GetOutputOptions, write = SetOutputOptions };
  95. };
  96. //---------------------------------------------------------------------------
  97. #endif