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.
26 lines
985 B
26 lines
985 B
using GluonGui.WorkspaceWindow.Views.Checkin.Operations; |
|
|
|
namespace Unity.PlasticSCM.Editor.Gluon |
|
{ |
|
internal class CheckinProgress |
|
{ |
|
internal CheckinProgress(WorkspaceWindow workspaceWindow) |
|
{ |
|
mWorkspaceWindow = workspaceWindow; |
|
} |
|
|
|
internal void Refresh(CheckinProgressData progress) |
|
{ |
|
mWorkspaceWindow.Progress.ProgressHeader = progress.ProgressText; |
|
|
|
mWorkspaceWindow.Progress.TotalProgressMessage = progress.TotalProgressText; |
|
mWorkspaceWindow.Progress.TotalProgressPercent = ((double)progress.TotalProgressValue) / 100; |
|
|
|
mWorkspaceWindow.Progress.ShowCurrentBlock = progress.bShowCurrentBlock; |
|
mWorkspaceWindow.Progress.CurrentBlockProgressMessage = progress.CurrentBlockText; |
|
mWorkspaceWindow.Progress.CurrentBlockProgressPercent = ((double)progress.CurrentBlockProgressValue) / 100; |
|
} |
|
|
|
WorkspaceWindow mWorkspaceWindow; |
|
} |
|
}
|
|
|