summaryrefslogtreecommitdiff
path: root/chrome/content/topmenu-client.js
blob: a5d7ab23fa87b7bcdd3fbd5c0c7dcbed5d730be2 (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
var EXPORTED_SYMBOLS = [ "topmenu_client" ];

const Cu = Components.utils;
const Cc = Components.classes;
const Ci = Components.interfaces;

Cu.import("resource://gre/modules/ctypes.jsm");
Cu.import("chrome://topmenu/content/ctypes-utils.js");
Cu.import("chrome://topmenu/content/glib.js");
Cu.import("chrome://topmenu/content/gobject.js");
Cu.import("chrome://topmenu/content/gdk.js");
Cu.import("chrome://topmenu/content/gtk.js");

function defines(lib) {
	lib.lazy_bind("topmenu_client_connect_window_widget", ctypes.void_t, gdk.GdkWindow.ptr, gtk.GtkWidget.ptr);
	lib.lazy_bind("topmenu_client_disconnect_window", ctypes.void_t, gdk.GdkWindow.ptr);

	this.TopMenuAppMenuBar = gobject.GObject;
	lib.lazy_bind("topmenu_app_menu_bar_new", this.TopMenuAppMenuBar.ptr);
	lib.lazy_bind("topmenu_app_menu_bar_set_app_menu", ctypes.void_t, this.TopMenuAppMenuBar.ptr, gtk.GtkWidget.ptr);

	this.TopMenuMonitor = gobject.GObject;
	lib.lazy_bind("topmenu_monitor_get_instance", this.TopMenuMonitor.ptr);
	lib.lazy_bind("topmenu_monitor_is_topmenu_available", glib.gboolean, this.TopMenuMonitor.ptr);
}

new ctypes_library("topmenu-client", [ 0 ], defines, this);