| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 | 
							- //----------------------------------------------------------------------------
 
- #ifndef SynchronizeChecklistH
 
- #define SynchronizeChecklistH
 
- //----------------------------------------------------------------------------
 
- #include "IEListView.hpp"
 
- #include "NortonLikeListView.hpp"
 
- #include <System.Classes.hpp>
 
- #include <Vcl.ComCtrls.hpp>
 
- #include <Vcl.Controls.hpp>
 
- #include <Vcl.ExtCtrls.hpp>
 
- #include <Vcl.ImgList.hpp>
 
- #include <Vcl.Menus.hpp>
 
- #include <Vcl.StdCtrls.hpp>
 
- #include "PngImageList.hpp"
 
- //----------------------------------------------------------------------------
 
- #include <Terminal.h>
 
- #include <System.Actions.hpp>
 
- #include <Vcl.ActnList.hpp>
 
- //----------------------------------------------------------------------------
 
- class TSynchronizeChecklistDialog : public TForm
 
- {
 
- __published:
 
-   TPanel * Panel;
 
-   TIEListView *ListView;
 
-   TStatusBar *StatusBar;
 
-   TPngImageList *ActionImages;
 
-   TButton *OkButton;
 
-   TButton *CancelButton;
 
-   TButton *CheckAllButton;
 
-   TButton *UncheckAllButton;
 
-   TButton *CheckButton;
 
-   TButton *UncheckButton;
 
-   TPopupMenu *ListViewPopupMenu;
 
-   TMenuItem *CheckItem;
 
-   TMenuItem *UncheckItem;
 
-   TMenuItem *N1;
 
-   TMenuItem *SelectAllItem;
 
-   TTimer *UpdateTimer;
 
-   TButton *HelpButton;
 
-   TButton *CustomCommandsButton2;
 
-   TActionList *ActionList;
 
-   TAction *CheckAction;
 
-   TAction *UncheckAction;
 
-   TAction *CheckAllAction;
 
-   TAction *UncheckAllAction;
 
-   TAction *SelectAllAction;
 
-   TAction *CustomCommandsAction;
 
-   TMenuItem *N2;
 
-   TButton *ReverseButton;
 
-   TAction *ReverseAction;
 
-   TMenuItem *ReverseItem;
 
-   TPngImageList *ActionImages120;
 
-   TPngImageList *ActionImages144;
 
-   TPngImageList *ActionImages192;
 
-   void __fastcall HelpButtonClick(TObject * Sender);
 
-   void __fastcall FormShow(TObject * Sender);
 
-   void __fastcall StatusBarDrawPanel(TStatusBar *StatusBar,
 
-           TStatusPanel *Panel, const TRect &Rect);
 
-   void __fastcall StatusBarMouseMove(TObject *Sender, TShiftState Shift,
 
-           int X, int Y);
 
-   void __fastcall ListViewChange(TObject *Sender, TListItem *Item,
 
-           TItemChange Change);
 
-   void __fastcall ListViewChanging(TObject *Sender, TListItem *Item,
 
-           TItemChange Change, bool &AllowChange);
 
-   void __fastcall CheckAllActionExecute(TObject *Sender);
 
-   void __fastcall CheckActionExecute(TObject *Sender);
 
-   void __fastcall ListViewSelectItem(TObject *Sender, TListItem *Item,
 
-           bool Selected);
 
-   void __fastcall UpdateTimerTimer(TObject *Sender);
 
-   void __fastcall SelectAllActionExecute(TObject *Sender);
 
-   void __fastcall StatusBarMouseDown(TObject *Sender, TMouseButton Button,
 
-           TShiftState Shift, int X, int Y);
 
-   void __fastcall ListViewCompare(TObject *Sender, TListItem *Item1,
 
-           TListItem *Item2, int Data, int &Compare);
 
-   void __fastcall ListViewSecondaryColumnHeader(TCustomIEListView *Sender,
 
-           int Index, int &SecondaryColumn);
 
-   void __fastcall ListViewContextPopup(TObject *Sender, TPoint &MousePos,
 
-           bool &Handled);
 
-   void __fastcall CustomCommandsActionExecute(TObject *Sender);
 
-   void __fastcall ListViewAdvancedCustomDrawSubItem(TCustomListView *Sender, TListItem *Item,
 
-           int SubItem, TCustomDrawState State, TCustomDrawStage Stage, bool &DefaultDraw);
 
-   void __fastcall StatusBarResize(TObject *Sender);
 
-   void __fastcall UncheckActionExecute(TObject *Sender);
 
-   void __fastcall UncheckAllActionExecute(TObject *Sender);
 
-   void __fastcall ReverseActionExecute(TObject *Sender);
 
-   void __fastcall ListViewClick(TObject *Sender);
 
- public:
 
-   __fastcall TSynchronizeChecklistDialog(TComponent * AOwner,
 
-     TSynchronizeMode Mode, int Params, const UnicodeString LocalDirectory,
 
-     const UnicodeString RemoteDirectory, TCustomCommandMenuEvent OnCustomCommandMenu);
 
-   virtual __fastcall ~TSynchronizeChecklistDialog();
 
-   bool __fastcall Execute(TSynchronizeChecklist * Checklist);
 
- protected:
 
-   bool FFormRestored;
 
-   TSynchronizeChecklist * FChecklist;
 
-   TSynchronizeMode FMode;
 
-   int FParams;
 
-   UnicodeString FLocalDirectory;
 
-   UnicodeString FRemoteDirectory;
 
-   TImageList * FSystemImageList;
 
-   TWndMethod FOrigListViewWindowProc;
 
-   int FTotals[1 + TSynchronizeChecklist::ActionCount];
 
-   int FChecked[1 + TSynchronizeChecklist::ActionCount];
 
-   __int64 FCheckedSize[1 + TSynchronizeChecklist::ActionCount];
 
-   TListItem * FChangingItem;
 
-   bool FChangingItemChecked;
 
-   bool FChangingItemIgnore;
 
-   bool FChangingItemMass;
 
-   UnicodeString FGeneralHint;
 
-   TCustomCommandMenuEvent FOnCustomCommandMenu;
 
-   typedef std::map<const TSynchronizeChecklist::TItem *, TSynchronizeChecklist::TAction> TActions;
 
-   TActions FActions;
 
-   void __fastcall UpdateControls();
 
-   virtual void __fastcall CreateParams(TCreateParams & Params);
 
-   void __fastcall LoadItem(TListItem * Item);
 
-   void __fastcall LoadList();
 
-   void __fastcall ListViewWindowProc(TMessage & Message);
 
-   int __fastcall PanelAt(int X);
 
-   void __fastcall CheckAll(bool Check);
 
-   void __fastcall Check(bool Check);
 
-   TListItem * __fastcall SelectAll(bool Select, int Action = 0,
 
-     bool OnlyTheAction = true);
 
-   bool __fastcall IsItemSizeIrrelevant(TSynchronizeChecklist::TAction Action);
 
-   __int64 __fastcall GetItemSize(const TSynchronizeChecklist::TItem * Item);
 
-   void __fastcall UpdateStatusBarSize();
 
-   int __fastcall PanelCount();
 
-   inline const TSynchronizeChecklist::TItem * GetChecklistItem(TListItem * Item);
 
-   TSynchronizeChecklist::TAction & GetChecklistItemAction(
 
-     const TSynchronizeChecklist::TItem * ChecklistItem);
 
-   void __fastcall AddSubItem(TListItem * Item, int & Index, const UnicodeString & S);
 
-   TRect __fastcall GetColumnHeaderRect(int Index);
 
-   virtual void __fastcall Dispatch(void * Message);
 
-   static int __fastcall CompareNumber(__int64 Value1, __int64 Value2);
 
- };
 
- //----------------------------------------------------------------------------
 
- #endif
 
 
  |