SystemTray/src/dorkbox/util/tray/linux/GtkSystemTray.java

236 lines
7.9 KiB
Java
Raw Normal View History

2014-11-24 17:40:06 +01:00
/*
* Copyright 2014 dorkbox, llc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2014-11-03 02:11:03 +01:00
package dorkbox.util.tray.linux;
2014-11-24 17:40:06 +01:00
import com.sun.jna.Pointer;
2014-11-03 02:11:03 +01:00
import dorkbox.util.jna.linux.Gobject;
import dorkbox.util.jna.linux.Gtk;
import dorkbox.util.jna.linux.GtkSupport;
2014-11-03 02:11:03 +01:00
import dorkbox.util.tray.SystemTray;
import dorkbox.util.tray.SystemTrayMenuAction;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
2014-11-03 02:11:03 +01:00
/**
* Class for handling all system tray interactions via GTK.
* <p/>
2014-11-03 02:11:03 +01:00
* This is the "old" way to do it, and does not work with some desktop environments.
*/
public
class GtkSystemTray extends SystemTray {
2014-11-24 17:40:06 +01:00
private static final Gobject libgobject = Gobject.INSTANCE;
private static final Gtk libgtk = Gtk.INSTANCE;
2014-11-03 02:11:03 +01:00
private final Map<String, MenuEntry> menuEntries = new HashMap<String, MenuEntry>(2);
2014-11-03 02:11:03 +01:00
private volatile Pointer menu;
private volatile Pointer connectionStatusItem;;
2014-11-03 02:11:03 +01:00
2014-11-24 17:40:06 +01:00
private volatile Pointer trayIcon;
2014-11-03 02:11:03 +01:00
2014-11-24 17:40:06 +01:00
// need to hang on to these to prevent gc
private final List<Pointer> widgets = new ArrayList<Pointer>(4);
// have to make this a field, to prevent GC on this object
@SuppressWarnings("FieldCanBeLocal")
private Gobject.GEventCallback gtkCallback;
public
GtkSystemTray() {
2014-11-24 17:40:06 +01:00
}
2014-11-03 02:11:03 +01:00
2014-11-24 17:40:06 +01:00
@Override
public
void createTray(String iconName) {
libgtk.gdk_threads_enter();
final Pointer trayIcon = libgtk.gtk_status_icon_new();
libgtk.gtk_status_icon_set_title(trayIcon, "SystemTray@Dorkbox");
libgtk.gtk_status_icon_set_tooltip(trayIcon, "SystemTray@Dorkbox");
this.trayIcon = trayIcon;
libgtk.gtk_status_icon_set_from_file(trayIcon, iconPath(iconName));
2014-11-03 02:11:03 +01:00
this.menu = libgtk.gtk_menu_new();
this.gtkCallback = new Gobject.GEventCallback() {
2014-11-03 02:11:03 +01:00
@Override
public
void callback(Pointer system_tray, final Gtk.GdkEventButton event) {
// BUTTON_PRESS only (any mouse click)
2014-11-24 17:40:06 +01:00
if (event.type == 4) {
libgtk.gtk_menu_popup(menu, null, null, Gtk.gtk_status_icon_position_menu, system_tray, 0, event.time);
2014-11-03 02:11:03 +01:00
}
}
2014-11-24 17:40:06 +01:00
};
libgobject.g_signal_connect_data(trayIcon, "button_press_event", gtkCallback, menu, null, 0);
libgtk.gtk_status_icon_set_visible(trayIcon, true);
libgtk.gdk_threads_leave();
2014-11-24 17:40:06 +01:00
System.err.println("POW2");
GtkSupport.startGui();
this.active = true;
2014-11-03 02:11:03 +01:00
}
@SuppressWarnings("FieldRepeatedlyAccessedInMethod")
2014-11-24 17:40:06 +01:00
@Override
public
void removeTray() {
libgtk.gdk_threads_enter();
2014-11-24 17:40:06 +01:00
for (Pointer widget : this.widgets) {
libgtk.gtk_widget_destroy(widget);
}
2014-11-03 02:11:03 +01:00
2014-11-24 17:40:06 +01:00
// this hides the indicator
libgtk.gtk_status_icon_set_visible(this.trayIcon, false);
libgobject.g_object_unref(this.trayIcon);
2014-11-03 02:11:03 +01:00
2014-11-24 17:40:06 +01:00
this.active = false;
2014-11-03 02:11:03 +01:00
2014-11-24 17:40:06 +01:00
// GC it
this.trayIcon = null;
this.widgets.clear();
2014-11-03 02:11:03 +01:00
// unrefs the children too
// libgobject.g_object_unref(this.menu); shouldn't do this because of how we use it
this.menu = null;
2014-11-24 17:40:06 +01:00
synchronized (this.menuEntries) {
this.menuEntries.clear();
}
2014-11-03 02:11:03 +01:00
2014-11-24 17:40:06 +01:00
this.connectionStatusItem = null;
2014-11-03 02:11:03 +01:00
GtkSupport.shutdownGui();
libgtk.gdk_threads_leave();
2014-11-24 17:40:06 +01:00
super.removeTray();
}
@SuppressWarnings({"FieldRepeatedlyAccessedInMethod", "Duplicates"})
2014-11-24 17:40:06 +01:00
@Override
public
void setStatus(final String infoString, String iconName) {
libgtk.gdk_threads_enter();
if (this.connectionStatusItem == null) {
this.connectionStatusItem = libgtk.gtk_menu_item_new_with_label(infoString);
this.widgets.add(this.connectionStatusItem);
libgtk.gtk_widget_set_sensitive(this.connectionStatusItem, Gtk.FALSE);
libgtk.gtk_menu_shell_append(this.menu, this.connectionStatusItem);
}
else {
libgtk.gtk_menu_item_set_label(this.connectionStatusItem, infoString);
}
libgtk.gtk_widget_show_all(this.connectionStatusItem);
2014-11-24 17:40:06 +01:00
libgtk.gtk_status_icon_set_from_file(GtkSystemTray.this.trayIcon, iconPath(iconName));
libgtk.gdk_threads_leave();
2014-11-03 02:11:03 +01:00
}
2014-11-24 17:40:06 +01:00
/**
* Will add a new menu entry, or update one if it already exists
*/
@SuppressWarnings("Duplicates")
2014-11-24 17:40:06 +01:00
@Override
public
void addMenuEntry(final String menuText, final SystemTrayMenuAction callback) {
synchronized (this.menuEntries) {
MenuEntry menuEntry = this.menuEntries.get(menuText);
2014-11-24 17:40:06 +01:00
if (menuEntry == null) {
libgtk.gdk_threads_enter();
2014-11-24 17:40:06 +01:00
Pointer dashboardItem = libgtk.gtk_menu_item_new_with_label(menuText);
2014-11-24 17:40:06 +01:00
// have to watch out! These can get garbage collected!
Gobject.GCallback gtkCallback = new Gobject.GCallback() {
@Override
public
void callback(Pointer instance, Pointer data) {
GtkSystemTray.this.callbackExecutor.execute(new Runnable() {
2014-11-24 17:40:06 +01:00
@Override
public
void run() {
callback.onClick(GtkSystemTray.this);
2014-11-24 17:40:06 +01:00
}
});
}
};
libgobject.g_signal_connect_data(dashboardItem, "activate", gtkCallback, null, null, 0);
libgtk.gtk_menu_shell_append(this.menu, dashboardItem);
libgtk.gtk_widget_show_all(dashboardItem);
libgtk.gdk_threads_leave();
menuEntry = new MenuEntry();
menuEntry.dashboardItem = dashboardItem;
menuEntry.gtkCallback = gtkCallback;
this.menuEntries.put(menuText, menuEntry);
2014-11-24 17:40:06 +01:00
}
else {
updateMenuEntry(menuText, menuText, callback);
}
}
2014-11-03 02:11:03 +01:00
}
2014-11-24 17:40:06 +01:00
/**
* Will update an already existing menu entry (or add a new one, if it doesn't exist)
*/
@SuppressWarnings("Duplicates")
2014-11-24 17:40:06 +01:00
@Override
public
void updateMenuEntry(final String origMenuText, final String newMenuText, final SystemTrayMenuAction newCallback) {
synchronized (this.menuEntries) {
MenuEntry menuEntry = this.menuEntries.get(origMenuText);
if (menuEntry != null) {
libgtk.gdk_threads_enter();
libgtk.gtk_menu_item_set_label(menuEntry.dashboardItem, newMenuText);
// have to watch out! These can get garbage collected!
menuEntry.gtkCallback = new Gobject.GCallback() {
@Override
public
void callback(Pointer instance, Pointer data) {
GtkSystemTray.this.callbackExecutor.execute(new Runnable() {
2014-11-24 17:40:06 +01:00
@Override
public
void run() {
newCallback.onClick(GtkSystemTray.this);
2014-11-24 17:40:06 +01:00
}
});
}
};
libgobject.g_signal_connect_data(menuEntry.dashboardItem, "activate", menuEntry.gtkCallback, null, null, 0);
libgtk.gtk_widget_show_all(menuEntry.dashboardItem);
libgtk.gdk_threads_leave();
}
else {
addMenuEntry(origMenuText, newCallback);
2014-11-03 02:11:03 +01:00
}
}
2014-11-03 02:11:03 +01:00
}
}