File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed
Flow.Launcher.Infrastructure/QuickSwitch Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
77 /// Interface for handling File Dialog instances in QuickSwitch.
88 /// </summary>
99 /// <remarks>
10- /// Add models in QuickSwitch/Models folder and implement this interface.
11- /// Then add the instance in QuickSwitch._quickSwitchDialogs.
10+ /// Add models which implement IQuickSwitchDialog in folder QuickSwitch/Models.
11+ /// E.g. Models.WindowsDialog.
12+ /// Then add instances in QuickSwitch._quickSwitchDialogs.
1213 /// </remarks>
1314 internal interface IQuickSwitchDialog : IDisposable
1415 {
Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
77 /// Interface for handling Windows Explorer instances in QuickSwitch.
88 /// </summary>
99 /// <remarks>
10- /// Add models in QuickSwitch/Models folder and implement this interface.
11- /// Then add the instance in QuickSwitch._quickSwitchExplorers.
10+ /// Add models which implement IQuickSwitchExplorer in folder QuickSwitch/Models.
11+ /// E.g. Models.WindowsExplorer.
12+ /// Then add instances in QuickSwitch._quickSwitchExplorers.
1213 /// </remarks>
1314 internal interface IQuickSwitchExplorer : IDisposable
1415 {
Original file line number Diff line number Diff line change 88
99namespace Flow . Launcher . Infrastructure . QuickSwitch . Models
1010{
11+ /// <summary>
12+ /// Class for handling Windows File Dialog instances in QuickSwitch.
13+ /// </summary>
1114 internal class WindowsDialog : IQuickSwitchDialog
1215 {
13- // The class name of a dialog window
1416 private const string WindowsDialogClassName = "#32770" ;
1517
1618 public IQuickSwitchDialogWindow DialogWindow { get ; private set ; }
Original file line number Diff line number Diff line change 88
99namespace Flow . Launcher . Infrastructure . QuickSwitch . Models
1010{
11+ /// <summary>
12+ /// Class for handling Windows Explorer instances in QuickSwitch.
13+ /// </summary>
1114 internal class WindowsExplorer : IQuickSwitchExplorer
1215 {
1316 private static readonly string ClassName = nameof ( WindowsExplorer ) ;
You can’t perform that action at this time.
0 commit comments