You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
using GluonGui.WorkspaceWindow.Views.WorkspaceExplorer.Explorer; |
|
|
|
namespace Unity.PlasticSCM.Editor.Gluon |
|
{ |
|
internal class UpdateProgress |
|
{ |
|
internal UpdateProgress(WorkspaceWindow workspaceWindow) |
|
{ |
|
mWorkspaceWindow = workspaceWindow; |
|
} |
|
|
|
internal void Cancel() |
|
{ |
|
if (mUpdateProgress == null) |
|
return; |
|
|
|
mUpdateProgress.Cancel(); |
|
} |
|
|
|
internal void SetCancellable(bool bCancelable) |
|
{ |
|
mWorkspaceWindow.Progress.CanCancelProgress = bCancelable; |
|
} |
|
|
|
internal void RefreshProgress( |
|
Codice.Client.BaseCommands.UpdateProgress progress, |
|
UpdateProgressData updateProgressData) |
|
{ |
|
mUpdateProgress = progress; |
|
|
|
mWorkspaceWindow.Progress.ProgressHeader = updateProgressData.Details; |
|
|
|
mWorkspaceWindow.Progress.TotalProgressMessage = updateProgressData.Status; |
|
mWorkspaceWindow.Progress.TotalProgressPercent = updateProgressData.ProgressValue / 100; |
|
} |
|
|
|
Codice.Client.BaseCommands.UpdateProgress mUpdateProgress; |
|
|
|
WorkspaceWindow mWorkspaceWindow; |
|
} |
|
}
|
|
|