i have 10 button, which correspond to the same method. how am i going to check which button was clicked in the corresponding method? i tried to check for the button press of a particular button in the list by the following code, but i got segmentation fault error:

for i in range(0,10):
    if button_list[i].clicked():
        break
 break
#operation with respect to the button clicked
link|improve this question

14% accept rate
post your event handler. the first argument in all GtkWidget event handlers should be a handle to the widget issuing the event. – eduffy Jan 10 at 19:32
feedback

1 Answer

Once you have connected all the buttons to the same callback, I assume the callback will have this signature: callback(button) where button is the button that emitted the clicked signal.

Inside that callback should be easy to check which button was clicked using something like:

button_list.index(button)

This will return the index of the button inside your list.

link|improve this answer
i did not get the usage of 'button'. did not exactly get what it is – Gaurav Sood Jan 10 at 20:36
@GauravSood An argument that is present in every gtk callback is the widget that emitted the signal. For the clicked signal, that would be the button that was clicked. Hence your callback will always get a reference to the button that was clicked that can be used to check where in the button_list is located. – jcollado Jan 10 at 20:39
ok. so i have to retrieve the index of the button pressed as in the following code: index=button_list.index() – Gaurav Sood Jan 10 at 20:44
rather, i did not get what argument to give in the index method. i want to find out the index of the button in the list which was pressed – Gaurav Sood Jan 10 at 20:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.