Callback from which window???
- From: Pedro Zorzenon Neto <pzn terra com br>
- To: gtk-list gnome org
- Subject: Callback from which window???
- Date: Wed, 25 Jul 2001 20:27:20 -0300
Hi list, :-)
I need a program with two identical windows, so I did:
...
GtkWidget *winA;
GtkWidget *winB;
winA = create_winmon (); // <- creates my window with a button
gtk_widget_show (winA);
winB = create_winmon (); // <- creates another window just like the other
gtk_widget_show (winB);
gtk_main();
...
But there is a problem... both windows have a button1 with "clicked" event that calls function "on_button1_clicked".
If I click the button1 in winA it calls on_button1_clicked.
If I click the button1 in winB it calls on_button1_clicked.
How can I know inside on_button1_clicked function which window was it called from?
Thanks in advance,
Pedro
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]