We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0176dd commit f7a67ceCopy full SHA for f7a67ce
1 file changed
src/main/java/org/cryptomator/integrations/tray/TrayIntegrationProvider.java
@@ -0,0 +1,17 @@
1
+package org.cryptomator.integrations.tray;
2
+
3
+public interface TrayIntegrationProvider {
4
5
+ /**
6
+ * Performs tasks required when the application is no longer showing any window and only accessible via
7
+ * system tray (or comparable facilities).
8
+ */
9
+ void minimizedToTray();
10
11
12
+ * Performs tasks required when the application becomes "visible", i.e. is transitioning from a background task
13
+ * that lived in the system tray (or comparable facilities).
14
15
+ void restoredFromTray();
16
17
+}
0 commit comments