2010/1/9 Kjow <antispamm...@gmail.com>:
> e.g. I need to use: gtk_widget_show (menu)
>
> Where menu is a menu like TMainMenu, but I don't know how to create
> the menu itself...

If you want to use LCL components in GTK then cast the Handle:

MainMenu := TMainMenu.Create(...);
...
gtk_widget_show(PGtkWidget(MainMenu.Handle))

--
cobines

--
_______________________________________________
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to