/src/wrappers/gtk/library/insert_at_cursor_callback.e

http://github.com/tybor/Liberty · Specman e · 71 lines · 53 code · 15 blank · 3 comment · 3 complexity · aaaf927be92145f459faca46bd0d6035 MD5 · raw file

  1. indexing
  2. description: "Generic callback for the insert-at-cursor signal"
  3. copyright: "[
  4. Copyright (C) 2007 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. class INSERT_AT_CURSOR_CALLBACK
  22. inherit CALLBACK redefine object end
  23. insert G_OBJECT_FACTORY [GTK_TEXT_VIEW]
  24. creation make
  25. feature
  26. object: GTK_TEXT_VIEW
  27. feature
  28. callback (an_arg, instance: POINTER) is
  29. local
  30. input: STRING
  31. do
  32. object := wrapper(instance)
  33. create input.from_external (an_arg)
  34. -- We might have to do an from_external_copy here
  35. -- instead. The GTK documentation does not say it is const,
  36. -- so we should handle its memory, AFAIK. Paolo 2008-04-07
  37. procedure.call ([input, object])
  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_TEXT_VIEW; a_procedure: PROCEDURE [ANY, TUPLE[STRING, GTK_TEXT_VIEW]]) 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 the default handler
  51. )
  52. procedure := a_procedure
  53. end
  54. signal_name: STRING is "insert-at-cursor"
  55. procedure: PROCEDURE [ANY, TUPLE[STRING, GTK_TEXT_VIEW]]
  56. end -- class INSERT_AT_CURSOR_CALLBACK