/src/wrappers/gtk/library/expand_collapse_cursor_row_callback.e
Specman e | 81 lines | 65 code | 16 blank | 0 comment | 3 complexity | f6e7ecb51d9751a6bc4e064120e5f37e MD5 | raw file
1indexing 2 description: "Generic callback for the expand-collapse-cursor-row signal" 3 copyright: "[ 4 Copyright (C) 2006 Paolo redaelli, eiffel-libraries team, GTK+ team and others 5 6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public License 8 as published by the Free Software Foundation; either version 2.1 of 9 the License, or (at your option) any later version. 10 11 This library is distributed in the hope that it will be useful, but 12 WITHOUT ANY WARRANTY; without even the implied warranty of 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 Lesser General Public License for more details. 15 16 You should have received a copy of the GNU Lesser General Public 17 License along with this library; if not, write to the Free Software 18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 19 02110-1301 USA 20 ]" 21 license: "LGPL v2 or later" 22 date: "$Date:$" 23 revision "$Revision:$" 24 25class EXPAND_COLLAPSE_CURSOR_ROW_CALLBACK 26 27inherit CALLBACK redefine object end 28 29insert G_OBJECT_FACTORY [GTK_TREE_VIEW] 30 31creation make 32 33feature 34 object: GTK_TREE_VIEW 35 36feature 37 38 callback (arg1, arg2, arg3: INTEGER; instance: POINTER): INTEGER is 39 require 40 instance_not_null: instance.is_not_null 41 do 42 debug 43 print ("Callback: instance=") print (instance.to_string) print ("%N") 44 print ("is_object: "+g_is_object (instance).out+"%N") 45 print ("type: "+g_object_type (instance).out+"%N") 46 end 47 object := wrapper(instance) 48 Result := function.item ([arg1.to_boolean, arg2.to_boolean, arg3.to_boolean, object]).to_integer 49 end 50 51 callback_pointer: POINTER is 52 do 53 Result := get_callback_pointer ($callback) 54 ensure 55 Result.is_not_null 56 end 57 58 connect (an_object: GTK_TREE_VIEW; a_function: FUNCTION[ANY, TUPLE [BOOLEAN, BOOLEAN, 59 BOOLEAN, GTK_TREE_VIEW], BOOLEAN]) is 60 do 61 debug 62 print ("EXPAND_COLLAPSE_CURSOR_ROW_CALLBACK.connect (an_object=") print (an_object.to_pointer.to_string) 63 print (" an_object.handle=") print (an_object.handle.to_string) 64 print (") Current=") print (to_pointer.to_string) 65 print (" Current.handle=") print (handle.to_string) 66 print ("%N") 67 end 68 69 handler_id := g_signal_connect_closure (an_object.handle, 70 signal_name.to_external, 71 handle, 72 0 -- i.e. call it before default handler 73 ) 74 function:=a_function 75 end 76 77 signal_name: STRING is "expand-collapse-cursor-row" 78 79 function: FUNCTION[ANY, TUPLE [BOOLEAN, BOOLEAN, BOOLEAN, GTK_TREE_VIEW], BOOLEAN] 80 81end -- class EXPAND_COLLAPSE_CURSOR_ROW_CALLBACK