ufk
ufk

Reputation: 32094

clone a GtkWidget from glade so it will be reusable several times in application

I'm writing a Gtk+3 application in C.

The user interface is built with glade.

I created an independent GtkBox that should be used in several places in my application. When I try to use that GtkBox more then once I get the following error:

(tuxmusicstudio:27491): Gtk-WARNING **: Attempting to add a widget with type GtkBox to a container of type GtkBox, but the widget is already inside a container of type GtkBox, please use gtk_widget_reparent()

How can I clone the GtkWidget so it will be reusable again and again?

Upvotes: 3

Views: 867

Answers (1)

ptomato
ptomato

Reputation: 57854

You can't clone a widget as such. Either put your reusable widget into its own Glade file and load it more than once using GtkBuilder; or create a class for the widget you want and instantiate it more than once.

Upvotes: 3

Related Questions