> Isn't this pretty much what the webeyes applet in GNOME CVS did already?
Indeed, it is. Unfortunately, I was not aware of webeyes when I started coding my own applet. Perhaps it should be advertised on gnomefiles.org? Apart from superficial UI differences, the main difference is that the Deskbar applet can support multiple search engines (including non-URL-based engines like gnome-dictionary and Beagle/BEST). Nigel. P.S. patch attached that makes webeyes work with GNOME 2.10's panel. Also, webeyes/src/GNOME_WebEyes_Factory.server.in.in seems to have a spurious "1;5A".
Index: webeyes.c =================================================================== RCS file: /cvs/gnome/webeyes/src/webeyes.c,v retrieving revision 1.10 diff -u -p -r1.10 webeyes.c --- webeyes.c 8 Jun 2004 02:24:46 -0000 1.10 +++ webeyes.c 15 Jun 2005 14:02:06 -0000 @@ -607,6 +607,9 @@ entry_event(GtkEntry *entry, GdkEventKey char buffer[WEBEYES_MAX_COMMAND_LENGTH]; gboolean propagate_event = TRUE; + if (event->type == GDK_BUTTON_PRESS) + panel_applet_request_focus(webeyes_applet->applet, event->time); + if (event->type != GDK_KEY_PRESS) return FALSE;
_______________________________________________ desktop-devel-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/desktop-devel-list
