/src/wrappers/gtk/library/file_activated_callback.e

http://github.com/tybor/Liberty · Specman e · 76 lines · 60 code · 16 blank · 0 comment · 3 complexity · 9c94fc3b09bfe86a5cd57e2d27d9dc9e MD5 · raw file

  1. indexing
  2. description: "Generic callback for the file-activated 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 FILE_ACTIVATED_CALLBACK
  22. inherit CALLBACK redefine object end
  23. insert G_OBJECT_FACTORY [GTK_FILE_CHOOSER]
  24. creation make
  25. feature
  26. object: GTK_FILE_CHOOSER
  27. feature
  28. callback (instance: POINTER) is
  29. do
  30. debug
  31. print ("Callback: instance=") print (instance.to_string) print ("%N")
  32. end
  33. object := wrapper(instance)
  34. procedure.call ([object])
  35. end
  36. callback_pointer: POINTER is
  37. do
  38. Result := get_callback_pointer ($callback)
  39. ensure
  40. Result.is_not_null
  41. end
  42. connect (an_object: GTK_FILE_CHOOSER; a_procedure: PROCEDURE [ANY, TUPLE[GTK_FILE_CHOOSER]]) is
  43. do
  44. debug
  45. print ("FILE_ACTIVATED_CALLBACK.connect (an_object=") print (an_object.to_pointer.to_string)
  46. print (" an_object.handle=") print (an_object.handle.to_string)
  47. print (") Current=") print (to_pointer.to_string)
  48. print (" Current.handle=") print (handle.to_string)
  49. print ("%N")
  50. end
  51. handler_id := g_signal_connect_closure (an_object.handle,
  52. signal_name.to_external,
  53. handle,
  54. 0 -- i.e. call it before default handler
  55. )
  56. procedure:=a_procedure
  57. end
  58. signal_name: STRING is "file-activated"
  59. procedure: PROCEDURE [ANY, TUPLE[GTK_FILE_CHOOSER]]
  60. end