/src/wrappers/gtk/library/focus_event_callback.e

http://github.com/tybor/Liberty · Specman e · 68 lines · 53 code · 13 blank · 2 comment · 3 complexity · 9f3d3fa2b1adc530973e4df8061c6570 MD5 · raw file

  1. indexing
  2. description: "Generic callback for the focus-in-event and focus-out-event signals."
  3. copyright: "[
  4. Copyright (C) 2006 Paolo redaelli, eiffel-libraries team, GTK+ team and others
  5. This library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public License
  7. as published by the Free Software Foundation; either version 2.1 of
  8. the License, or (at your option) any later version.
  9. This library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with this library; if not, write to the Free Software
  15. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  16. 02110-1301 USA
  17. ]"
  18. license: "LGPL v2 or later"
  19. date: "$Date:$"
  20. revision "$Revision:$"
  21. deferred class FOCUS_EVENT_CALLBACK
  22. -- You want to use one of FOCUS_EVENT_RELEASE_CALLBACK or FOCUS_EVENT_PRESS_CALLBACK
  23. inherit CALLBACK redefine object end
  24. insert G_OBJECT_FACTORY [GTK_WIDGET]
  25. feature
  26. object: GTK_WIDGET
  27. feature
  28. callback (event_ptr: POINTER; instance: POINTER): INTEGER is
  29. local
  30. focus_event: GDK_EVENT_FOCUS
  31. do
  32. debug print ("Callback: instance=") print (instance.to_string) print ("%N") end
  33. object := wrapper(instance)
  34. create focus_event.from_external_pointer(event_ptr)
  35. Result := function.item ([focus_event, object]).to_integer
  36. -- GTK is about to release this event, detach it from Eiffel
  37. focus_event.dispose
  38. end
  39. callback_pointer: POINTER is
  40. do
  41. Result := get_callback_pointer ($callback)
  42. ensure
  43. Result.is_not_null
  44. end
  45. connect (an_object: GTK_WIDGET; a_function: FUNCTION [ANY, TUPLE [GDK_EVENT_FOCUS, GTK_WIDGET], BOOLEAN]) is
  46. do
  47. handler_id := g_signal_connect_closure (an_object.handle,
  48. signal_name.to_external,
  49. handle,
  50. 0 -- i.e. call it before default handler
  51. )
  52. function := a_function
  53. end
  54. function: FUNCTION [ANY, TUPLE [GDK_EVENT_FOCUS, GTK_WIDGET], BOOLEAN]
  55. end -- class FOCUS_EVENT_CALLBACK