resources/RooUsage.txt
[app.Builder.js] / tests / status_icon.js
index a3bd1a0..0765804 100644 (file)
@@ -28,12 +28,15 @@ function active(status_icon, button, time, data)
     // GtkMenu.popup, calling the Gtk.StatusIcon.position_menu function
     // 
     var area = new Gdk.Rectangle();
-    var orient = new Gtk.Orientation();
+     
     var ret = {}; 
-    status_icon.get_geometry(ret, area, orient);
-    console.log(JSON.stringify(area));
-    console.log(JSON.stringify(orient));
+    status_icon.get_geometry(ret);
     
+    print(ret.orientation);
+    print(ret.area.width);
+    print(ret.area.height);
+    print(ret.area.x);
+    print(ret.area.y);
     menu.popup(null, null, Gtk.StatusIcon.position_menu, status_icon, button, time);
 }