123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- using JetBrains.Annotations;
- using Unity.Cloud.Collaborate.Models.Structures;
- namespace Unity.Cloud.Collaborate.Presenters
- {
- internal interface IChangesPresenter : IPresenter
- {
-
-
-
- int ToggledCount { get; }
-
-
-
- int TotalCount { get; }
-
-
-
- int ConflictedCount { get; }
-
-
-
- bool Searching { get; }
-
-
-
-
-
-
-
- bool UpdateEntryToggle([NotNull] string path, bool toggled);
-
-
-
- void RequestPublish();
-
-
-
-
- void RequestDiscard([NotNull] IChangeEntry entry);
-
-
-
-
- void RequestDiffChanges([NotNull] string path);
-
-
-
-
- void SetSearchQuery([NotNull] string query);
-
-
-
-
- void SetRevisionSummary([NotNull] string message);
-
-
-
- int GroupOverflowEntryCount { get; }
-
-
-
-
-
- void OnClickGroupOverflow(float x, float y);
-
-
-
- int ConflictGroupOverflowEntryCount { get; }
-
-
-
-
-
- void OnClickConflictGroupOverflow(float x, float y);
-
-
-
-
- void RequestShowConflictedDifferences([NotNull] string path);
-
-
-
-
- void RequestChooseMerge([NotNull] string path);
-
-
-
-
- void RequestChooseMine([NotNull] string path);
-
-
-
-
- void RequestChooseRemote([NotNull] string path);
- }
- }
|