Re: Can a treeview do this?

2006-03-01 Thread kadil
On Thu, 2006-03-02 at 13:43 +1100, [EMAIL PROTECTED] wrote: > Tristan Van Berkom <[EMAIL PROTECTED]> wrote: > > > > > Maybe you could write a custom treeview implementation to use with > > GtkTreeStore (seems you would only have to place your cells differently > > than treeview does); but t

Re: Can a treeview do this?

2006-03-01 Thread [EMAIL PROTECTED]
Tristan Van Berkom <[EMAIL PROTECTED]> wrote: > > Maybe you could write a custom treeview implementation to use with > GtkTreeStore (seems you would only have to place your cells differently > than treeview does); but then... i dont know about doing that in Gtk#. > The custom treeview im

Suggestion for GTK+ app devlopment book

2006-03-01 Thread Fernando ApesteguĂ­a
You can see http://developer.gnome.org/doc/ suggestions about books, on line books, tutorials and more. Best regards!! -- Forwarded message -- From: Prabhakar Muthuswamy <[EMAIL PROTECTED]> Date: 01-mar-2006 20:31 Subject: Suggestion for GTK+ app devlopment book To: gtk-app-devel-

Suggestion for GTK+ app devlopment book

2006-03-01 Thread Prabhakar Muthuswamy
All Is there any good book available in the market for GTK+ application development? Thanks Prabhakar ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Can a treeview do this?

2006-03-01 Thread Tristan Van Berkom
Gus Koppel wrote: kadil wrote: [...] (1) the first child to be in the column next to the parent. (2) subsequent children to be below the first child (3) parent "cells" are to vertically span the child rows (4) I need visible borders between the cells (5) Just to be difficult, I want to code in

need help for gtk+

2006-03-01 Thread suman adak
Hi all, I am a totaly newbies in GTK+ world. I just started learning GTK+.. I am trying building an file analysis tool(like File Browser not so many feature). I thought my application should have three panel. Left panel for tree view(directory with parent child relationship) right panel for vi

Re: GTK and KDE compatibility

2006-03-01 Thread Colossus
Eduardo M KALINOWSKI wrote: Well, you can always see The Gimp's source code to discover how it's done, and them implement it in your application. I thought about this, but the huge size of Gimp's source code is what who discourage me to do that ! -- Colossus Xarchiver, a Linux GTK+2 only arc

Re: GTK and KDE compatibility

2006-03-01 Thread Eduardo M KALINOWSKI
Colossus wrote: > > Ok, I see. Does Gimp use Gparts to accept files dragged from the > Konqueror window ?? If it doesn't, I'm wondering which GTK functions > one have to call to accept events from KDE window inside a GTK one ! Well, you can always see The Gimp's source code to discover how it's d

Re: Can a treeview do this?

2006-03-01 Thread Gus Koppel
kadil wrote: > I may not have explained myself very well in my question to the > world. To describe it in words, I want: > > (1) the first child to be in the column next to the parent. > (2) subsequent children to be below the first child > (3) parent "cells" are to vertically span the child row

Drag and drop question, more drop than drag !

2006-03-01 Thread Colossus
Hi, I have problem in detecting the drop in the destination widget (thunar XFCE file manager). I have set my app like this: treeview1 = gtk_tree_view_new (); gtk_widget_set_name (treeview1, "treeview1"); gtk_widget_show (treeview1); gtk_container_add (GTK_CONTAINER (scrolledwindow1), tre

Re: Can a treeview do this?

2006-03-01 Thread kadil
I may not have explained myself very well in my question to the world. To describe it in words, I want: (1) the first child to be in the column next to the parent. (2) subsequent children to be below the first child (3) parent "cells" are to vertically span the child rows (4) I need visible borde

How to set item focus in GtkTreeView?

2006-03-01 Thread Miroslav Rajcic
Is there a simple way to set a focus on an item in the GtkTreeView without changing its selection state? I've tried using gtk_tree_view_set_cursor API, but it seems to always set item selected too. My current solution is to: 1. read selection state of an item 2. call gtk_tree_view_set_cursor