File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Flow.Launcher.Plugin/Interfaces Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,17 @@ public interface IPublicAPI
80
80
/// </summary>
81
81
void ShowMainWindow ( ) ;
82
82
83
+ /// <summary>
84
+ /// Hide MainWindow
85
+ /// </summary>
86
+ void HideMainWindow ( ) ;
87
+
88
+ /// <summary>
89
+ /// Representing whether the main window is visible
90
+ /// </summary>
91
+ /// <returns></returns>
92
+ bool IsMainWindowVisible ( ) ;
93
+
83
94
/// <summary>
84
95
/// Show message box
85
96
/// </summary>
Original file line number Diff line number Diff line change @@ -73,6 +73,10 @@ public void RestartApp()
73
73
74
74
public void ShowMainWindow ( ) => _mainVM . Show ( ) ;
75
75
76
+ public void HideMainWindow ( ) => _mainVM . Hide ( ) ;
77
+
78
+ public bool IsMainWindowVisible ( ) => _mainVM . MainWindowVisibilityStatus ;
79
+
76
80
public void CheckForNewUpdate ( ) => _settingsVM . UpdateApp ( ) ;
77
81
78
82
public void SaveAppAllSettings ( )
You can’t perform that action at this time.
0 commit comments