-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved some controls and components to separate classes
- Loading branch information
1 parent
b97a25d
commit f4ccea4
Showing
39 changed files
with
976 additions
and
583 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/BuildVision.Contracts/Models/IBuildProgressViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace BuildVision.Contracts.Models | ||
{ | ||
public interface IBuildProgressViewModel | ||
{ | ||
bool ActionProgressIsPaused { get; set; } | ||
bool ActionProgressIsVisible { get; set; } | ||
int CurrentQueuePosOfBuildingProject { get; } | ||
|
||
void OnBuildBegin(int projectsCount); | ||
void OnBuildCancelled(); | ||
void OnBuildDone(); | ||
void OnBuildProjectBegin(); | ||
void OnBuildProjectDone(bool success); | ||
void ResetTaskBarInfo(bool ifTaskBarProgressEnabled = true); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.