I use Archlinux x86_64 with CodeLite v. 4.1.5770 (self compiled, since I use the CodeLite package from the AUR).
My ctags include search paths are the default paths + the gtk include paths (full content will follow later).
Even after retagging the workspace (full) code completion does not work for any gtk symbols.
Everything works fine for gtkmm.
Might that be due to the fact that gtk is written in C and gtkmm in C++?
Regards
EDIT:
This is the content of my CTags search paths:
Code: Select all
/usr/include/QtCore
/usr/include
/usr/include/QtXml
/usr/include/wx-2.8
/usr/include/gtk-3.0/gtk
/usr/include/gtkmm-3.0
/usr/include/gtkmm-3.0/gtkmm
Code, no code completion for me:
Code: Select all
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_title(GTK_WINDOW(window), "Title");
gtk_window_set_default_size(GTK_WINDOW(window), 600, 300);
gtk_container_set_border_width(GTK_CONTAINER(window), 5);