Properties.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. //----------------------------------------------------------------------------
  2. #ifndef PropertiesH
  3. #define PropertiesH
  4. //----------------------------------------------------------------------------
  5. #include "PathLabel.hpp"
  6. #include "Rights.h"
  7. #include <System.Classes.hpp>
  8. #include <Vcl.ComCtrls.hpp>
  9. #include <Vcl.Controls.hpp>
  10. #include <Vcl.ExtCtrls.hpp>
  11. #include <Vcl.Forms.hpp>
  12. #include <Vcl.Graphics.hpp>
  13. #include <Vcl.Menus.hpp>
  14. #include <Vcl.StdCtrls.hpp>
  15. #include <Menus.hpp>
  16. //----------------------------------------------------------------------------
  17. #include <GUITools.h>
  18. //----------------------------------------------------------------------------
  19. struct TCalculateSizeStats;
  20. //----------------------------------------------------------------------------
  21. class TPropertiesDialog : public TForm
  22. {
  23. __published:
  24. TButton *OkButton;
  25. TButton *CancelButton;
  26. TPageControl *PageControl;
  27. TTabSheet *CommonSheet;
  28. TBevel *Bevel1;
  29. TLabel *FileLabel;
  30. TLabel *Label1;
  31. TPathLabel *LocationLabel;
  32. TLabel *Label2;
  33. TLabel *SizeLabel;
  34. TLabel *LinksToLabelLabel;
  35. TPathLabel *LinksToLabel;
  36. TBevel *Bevel2;
  37. TLabel *RightsLabel;
  38. TBevel *GroupOwnerRightsBevel;
  39. TLabel *GroupLabel;
  40. TComboBox *GroupComboBox;
  41. TLabel *OwnerLabel;
  42. TComboBox *OwnerComboBox;
  43. TImage *FileIconImage;
  44. TBevel *RecursiveBevel;
  45. TCheckBox *RecursiveCheck2;
  46. TButton *CalculateSizeButton;
  47. TRightsFrame *RightsFrame;
  48. TButton *HelpButton;
  49. TTabSheet *ChecksumSheet;
  50. TListView *ChecksumView;
  51. TLabel *Label6;
  52. TComboBox *ChecksumAlgEdit;
  53. TButton *ChecksumButton;
  54. TGroupBox *ChecksumGroup;
  55. TEdit *ChecksumEdit;
  56. TPopupMenu *ListViewMenu;
  57. TMenuItem *Copy;
  58. TLabel *ChecksumUnknownLabel;
  59. void __fastcall ControlChange(TObject *Sender);
  60. void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
  61. void __fastcall CalculateSizeButtonClick(TObject *Sender);
  62. void __fastcall HelpButtonClick(TObject *Sender);
  63. void __fastcall ChecksumButtonClick(TObject *Sender);
  64. void __fastcall PageControlChange(TObject *Sender);
  65. void __fastcall ChecksumAlgEditChange(TObject *Sender);
  66. void __fastcall CopyClick(TObject *Sender);
  67. void __fastcall ChecksumViewContextPopup(TObject *Sender,
  68. TPoint &MousePos, bool &Handled);
  69. void __fastcall GroupComboBoxExit(TObject *Sender);
  70. void __fastcall OwnerComboBoxExit(TObject *Sender);
  71. void __fastcall FormShow(TObject *Sender);
  72. private:
  73. int FAllowedChanges;
  74. bool FUserGroupByID;
  75. TStrings * FFileList;
  76. const TRemoteTokenList * FGroupList;
  77. const TRemoteTokenList * FUserList;
  78. TStrings * FChecksumAlgs;
  79. TRemoteProperties FOrigProperties;
  80. bool FMultiple;
  81. bool FAnyDirectories;
  82. bool FAllowCalculateStats;
  83. bool FStatsNotCalculated;
  84. TCalculateSizeEvent FOnCalculateSize;
  85. TCalculateChecksumEvent FOnCalculateChecksum;
  86. bool FChecksumLoaded;
  87. UnicodeString FAlgUsed;
  88. bool FMultipleChecksum;
  89. void __fastcall CalculateChecksum();
  90. void __fastcall NeedChecksum();
  91. bool __fastcall ChecksumSupported();
  92. void __fastcall ResetChecksum();
  93. void __fastcall CalculatedChecksum(
  94. const UnicodeString & FileName, const UnicodeString & Alg, const UnicodeString & Hash);
  95. void __fastcall SetFileProperties(const TRemoteProperties & value);
  96. TRemoteProperties __fastcall GetFileProperties();
  97. TModalResult __fastcall DefaultResult();
  98. void __fastcall CMDpiChanged(TMessage & Message);
  99. protected:
  100. void __fastcall LoadInfo();
  101. void __fastcall LoadRemoteTokens(TComboBox * ComboBox, const TRemoteTokenList * List);
  102. UnicodeString __fastcall LoadRemoteToken(const TRemoteToken & Token);
  103. void __fastcall LoadRemoteToken(TComboBox * ComboBox, bool Valid, const TRemoteToken & Token);
  104. TRemoteToken __fastcall StoreRemoteToken(const TRemoteToken & Orig,
  105. UnicodeString Text, int Message, const TRemoteTokenList * List);
  106. void __fastcall StoreRemoteToken(TComboBox * ComboBox,
  107. int ChangeFlag, TValidProperty PropertyFlag, const TRemoteToken & Orig,
  108. TRemoteToken & Token, int Message, const TRemoteTokenList * List,
  109. TRemoteProperties & Properties);
  110. void __fastcall StoreRemoteToken(unsigned int ID, const UnicodeString & Text,
  111. const TRemoteTokenList * List, TRemoteToken & Result);
  112. void __fastcall ValidateRemoteToken(
  113. const TRemoteToken & Orig, int Message, TComboBox * ComboBox,
  114. const TRemoteTokenList * List);
  115. void __fastcall UpdateControls();
  116. void __fastcall LoadStats(__int64 FilesSize, const TCalculateSizeStats & Stats);
  117. virtual void __fastcall Dispatch(void * Message);
  118. void __fastcall UpdateFileImage();
  119. INTERFACE_HOOK;
  120. public:
  121. virtual __fastcall TPropertiesDialog(TComponent * AOwner,
  122. TStrings * FileList, const UnicodeString Directory,
  123. const TRemoteTokenList * GroupList, const TRemoteTokenList * UserList,
  124. TStrings * ChecksumAlgs,
  125. int AllowedChanges, bool UserGroupByID, TCalculateSizeEvent OnCalculateSize,
  126. TCalculateChecksumEvent OnCalculateChecksum);
  127. virtual __fastcall ~TPropertiesDialog();
  128. bool __fastcall Execute(TRemoteProperties & Properties);
  129. };
  130. //----------------------------------------------------------------------------
  131. #endif