Hello,
I am trying to convert a PB program I wrote for windows to Linux. The only problem is the setparent_() API call I use in Windows, is there an equivalent for Linux? or a method so that I don't have to make a API specific call.
Parent and Child Windows
maybe
or
is what you're looking for?
where *widget is the GadgetID() (*parent / *parent_window are the parents..
)
Code: Select all
gtk_widget_set_parent_window_(*widget, *parent_window)
Code: Select all
gtk_widget_set_parent_(*widget, *parent)
where *widget is the GadgetID() (*parent / *parent_window are the parents..


