Parent and Child Windows

Linux specific forum
ac667788
User
User
Posts: 10
Joined: Sun May 13, 2007 6:50 am

Parent and Child Windows

Post by ac667788 »

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.
walker
Enthusiast
Enthusiast
Posts: 634
Joined: Wed May 05, 2004 4:04 pm
Location: Germany

Post by walker »

maybe

Code: Select all

gtk_widget_set_parent_window_(*widget, *parent_window)
or

Code: Select all

gtk_widget_set_parent_(*widget, *parent)
is what you're looking for?

where *widget is the GadgetID() (*parent / *parent_window are the parents.. :wink: )
Post Reply