Re: TreeView in ScrolledWindow

2007-09-14 Thread yetist
Maybe you should use gtk_scrolled_window_add_with_viewport to add the view into scrollwindow. like this: gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), view); 2007/9/14, q. <[EMAIL PROTECTED]>: > > Hello ppl, > > I have a treeview that works and displays correctly, bu

comipile gtk-dirctfb failed

2007-02-03 Thread yetist
hello, I used gtk+-2.10.6 to compile gtk-directfb: ./configure --prefix=/usr --with-gdktarget=directfb --without-x make then, it failed like this: /bin/sh ../libtool --mode=link gcc -DG_DISABLE_DEPRECATED -g -O2 -Wall -o gtk-query-immodules-2.0 queryimmodules.o libgtk-directfb-2.0.la ../gdk-p

Re: Using shell script in GTK+ code

2006-10-19 Thread yetist
use system or exec functions. #include extern char **environ; int execl(const char *path, const char *arg, ...); int execlp(const char *file, const char *arg, ...); int execle(const char *path, const char *arg, ..., char * const envp[]);