How do I control widgets added later with gtk in c?
- by Runner
func1();
func2();
...
In func1 there is a button widget,and in func2 a textview widget.
I want to operate textview when I click on button widget.
But at the time I define the callback,textview is not available yet.
How can I work around this?