blob: abcfc2e5b8c374b1baa8a2156c9b6593fe8bbac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
package net.java.sip.communicator.impl.osdependent.macosx;
import net.java.sip.communicator.impl.osdependent.*;
import net.java.sip.communicator.service.gui.*;
import com.apple.eawt.*;
/**
* MacOSX specific dock icon, which will add a dock icon listener in order to
* show the application each time user clicks on the dock icon.
*
* @author Yana Stamcheva
*/
public class MacOSXDockIcon
{
/**
* Adds a dock icon listener in order to show the application each time user
* clicks on the dock icon.
*/
public static void addDockIconListener()
{
Application application = Application.getApplication();
if (application != null)
{
application.addAppEventListener(new AppReOpenedListener()
{
public void appReOpened(AppEvent.AppReOpenedEvent appReOpenedEvent)
{
UIService uiService = OsDependentActivator.getUIService();
if (uiService != null && !uiService.isVisible())
uiService.setVisible(true);
}
});
}
}
}
|