as we know that in gtk programming i can call API of a GtkWidget using
an object of GtkWindow by use of type casting MACROS
ie
i can do as
Expand|Select|Wrap|Line Numbers
- GtkWindow *window=gtk_window_new();
- ....
- ....
- gtk_widget_show(GTK_WIDGET(window));
gtk_window_show() will be called instead of gtk_widget_show.
Is there any solution to this so that i can call gtk_widget_show by using GtkWindow object in python.