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

StackOverflow https://stackoverflow.com/questions/22584193

  •  19-06-2023
  •  | 
  •  

Frage

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?

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top