/src/wrappers/gtk/library/row_changed_callback.e

http://github.com/tybor/Liberty · Specman e · 86 lines · 68 code · 15 blank · 3 comment · 3 complexity · 67c8fb03e66516ecf0edb5f9b49030a2 MD5 · raw file

  1. indexing
  2. description: "Generic callback for the row-changed signal"
  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. class ROW_CHANGED_CALLBACK
  22. inherit
  23. CALLBACK redefine object end
  24. insert
  25. G_OBJECT_FACTORY [GTK_TREE_MODEL]
  26. creation make
  27. feature
  28. object: GTK_TREE_MODEL
  29. feature
  30. callback (path_ptr, iter_ptr, instance: POINTER) is
  31. local
  32. path: GTK_TREE_PATH
  33. iter: GTK_TREE_ITER
  34. do
  35. debug
  36. print ("Callback: instance=") print (instance.to_string) print ("%N")
  37. end
  38. -- The following is written with the implicit requirement
  39. -- that the object is actually created by the Eiffel
  40. object := wrapper(instance)
  41. -- Note: path and iter are shared wrappers.
  42. create path.copy_from_pointer (path_ptr)
  43. create iter.copy_from_pointer (iter_ptr)
  44. procedure.call ([object, path, iter])
  45. end
  46. callback_pointer: POINTER is
  47. do
  48. Result := get_callback_pointer ($callback)
  49. ensure
  50. Result.is_not_null
  51. end
  52. connect (an_object: GTK_TREE_MODEL;
  53. a_procedure: PROCEDURE [ANY, TUPLE[GTK_TREE_MODEL,GTK_TREE_PATH,GTK_TREE_ITER]]) is
  54. do
  55. debug
  56. print ("ROW_CHANGED_CALLBACK.connect (an_object=") print (an_object.to_pointer.to_string)
  57. print (" an_object.handle=") print (an_object.handle.to_string)
  58. print (") Current=") print (to_pointer.to_string)
  59. print (" Current.handle=") print (handle.to_string)
  60. print ("%N")
  61. end
  62. handler_id := g_signal_connect_closure (an_object.handle,
  63. signal_name.to_external,
  64. handle,
  65. 0 -- i.e. call it before default handler
  66. )
  67. procedure := a_procedure
  68. end
  69. signal_name: STRING is "row-changed"
  70. procedure: PROCEDURE [ANY, TUPLE[GTK_TREE_MODEL,GTK_TREE_PATH,GTK_TREE_ITER]]
  71. end