Initial Commit
This commit is contained in:
parent
53eb92e9af
commit
270ab7d11f
15341 changed files with 700234 additions and 0 deletions
|
@ -0,0 +1,38 @@
|
|||
using System;
|
||||
using Unity.Cloud.Collaborate.Views;
|
||||
|
||||
namespace Unity.Cloud.Collaborate.Presenters
|
||||
{
|
||||
internal interface IMainPresenter : IPresenter
|
||||
{
|
||||
/// <summary>
|
||||
/// Create the history presenter and wire it up to the history view.
|
||||
/// </summary>
|
||||
/// <param name="view">View to wire to.</param>
|
||||
/// <returns>The created presenter.</returns>
|
||||
IHistoryPresenter AssignHistoryPresenter(IHistoryView view);
|
||||
|
||||
/// <summary>
|
||||
/// Create the changes presenter and wire it up to the changes view.
|
||||
/// </summary>
|
||||
/// <param name="view">View to wire to.</param>
|
||||
/// <returns>The created presenter.</returns>
|
||||
IChangesPresenter AssignChangesPresenter(IChangesView view);
|
||||
|
||||
/// <summary>
|
||||
/// Request cancel current job.
|
||||
/// </summary>
|
||||
void RequestCancelJob();
|
||||
|
||||
/// <summary>
|
||||
/// Update value of current tab index.
|
||||
/// </summary>
|
||||
/// <param name="index">New tab index.</param>
|
||||
void UpdateTabIndex(int index);
|
||||
|
||||
/// <summary>
|
||||
/// Request a back navigation.
|
||||
/// </summary>
|
||||
void NavigateBack();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue