Pango advice?

2006-08-30 Thread kadil
Hi, I want to use pango in an app to render text to a drawingarea. I have seen examples that show how to render text in a textview, but not to a drawingarea. Can you specify the width of the layout to be rendered, into a drawingarea, with text wrapping and determine the height of the layout. Is

Animated interface question

2006-06-07 Thread kadil
I wrote an application that displayed multiple animated sequences and moved them around the screen to represent machine activities. I bit like a 2d game The way that I did it was to create arrays (yes I know I should have used linked lists) of structures that wrapped up each frame of the animated

Re: Can a treeview do this?

2006-03-01 Thread kadil
borders between the cells (5) Just to be difficult, I want to code in csharp (mono and friends) (6) Accommodate thousands of rows with responsive performance. Kim On Mon, 2006-02-27 at 20:56 +1000, kadil wrote: I don't think a treeview can render this tree structured data that way I wanted. The way I

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 then... i

Can a treeview do this?

2006-02-27 Thread kadil
I don't think a treeview can render this tree structured data that way I wanted. The way I want it and the type of data is shown below: | Function | Funct Failure| Failure Mode |

Re: Can a treeview do this?

2006-02-27 Thread kadil
On Mon, 2006-02-27 at 16:29 +0100, Gus Koppel wrote: kadil wrote: I don't think a treeview can render this tree structured data that way I wanted. The way I want it and the type of data is shown below: | Function | Funct

Re: clearing gtkliststore and gtktreestore

2006-02-23 Thread kadil
I have had problems in this area as well. Using gtk# mono, if I use gtk_tree_store_clear, then I cannot add more rows. I haven't really looked into it yet. I just removed rows one at a time until they are all gone. Not nice, but it will do for now. Kim On Wed, 2006-02-22 at 17:07 +0100,

Saving Liststores and treestores to files

2006-01-16 Thread kadil
Hi, I am interested in finding out appropriate ways to save data in my residing in treestores and liststores. I have not found any tutorials suggesting an approach, however the custom models is related. I have heard of serialization, but never used it. I would appreciate advice as I am