forked from activescott/lessmsi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Hide waitcursor behind the IMainFormView interface
Merge pull request activescott#154 from learn-more/view_abstraction
- Loading branch information
Showing
3 changed files
with
15 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
// Authors: | ||
// Scott Willeke ([email protected]) | ||
// | ||
using System; | ||
using System.Collections.Generic; | ||
using LessMsi.Gui.Model; | ||
|
||
|
@@ -94,5 +95,11 @@ internal interface IMainFormView | |
/// </summary> | ||
void SetStreamSelectorSource(IEnumerable<StreamInfoView> streamNames); | ||
void SetCabContainedFileListSource(IEnumerable<CabContainedFileView> streamFiles); | ||
|
||
/// <summary> | ||
/// Start a wait cursor to indicate. | ||
/// </summary> | ||
/// <returns>An object that should be disposed when the operation is done.</returns> | ||
IDisposable StartWaitCursor(); | ||
} | ||
} |
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