Compatibility with gtk3

Hi,

is the devhelp library compatible with gtk3?

I’m trying to port the Geany plugin using the new library.
But I’m not able to display the books from dh_notebook in dh_Search.

o dh_profile_get_default(); I can display.

dh_profile = dh_profile_get_default();
self->priv->book_tree = GTK_WIDGET(dh_book_tree_new(dh_profile));

But it doesn’t work on dh_search.

dh_notebook = dh_notebook_new(dh_profile);
gtk_widget_show(GTK_WIDGET(dh_notebook));

dh_search = dh_search_bar_new(dh_notebook);
gtk_widget_show(GTK_WIDGET(dh_search));

self->priv->search = GTK_WIDGET(dh_search);


hello,
I managed to solve the problem using dh_sidebar instead of dh_search_bar

This topic was automatically closed 45 days after the last reply. New replies are no longer allowed.