status of archive indicies? GObject exmaples

2006-07-31 Thread Rick Jones
Hi - I am trying to get netperf4 (http://www.netperf.org/svn/netperf4/trunk/) a bit more "in the 90's" :) and thinking that GObjects, signaling and the event loop might nicely take the place of the current mass of launched threads for instantiating tests and dealing with test dependenices. (on

Re: file chooser dialog

2006-07-31 Thread Wallace Owen
You need to normalize the paths, then you can string compare them. Given that the current directory were /tmp/barb, normalizing the path will transform ./../file and /tmp/barb/file into ./file. // Wally On Mon, 2006-07-31 at 23:36 +0200, Roland Koebler wrote: > hi, > > > Does anybody also ha

Re: file chooser dialog

2006-07-31 Thread Roland Koebler
hi, > Does anybody also have an idea, how to realize the decision, if a path is > below another one (platform independent would be nice but not absolutely > necessary). maybe there already is such a function in a library - I don't know. but you can use glib. look here: http://developer.gnome.org/d

Re: file chooser dialog

2006-07-31 Thread Norbert Bauer
Thank you! That should work. Does anybody also have an idea, how to realize the decision, if a path is below another one (platform independent would be nice but not absolutely necessary). That means a function that works like this: Default path ist '/temp/test/' /temp/test/ => function says true /

Re: Plots x_y diagram

2006-07-31 Thread tomas
On Mon, Jul 31, 2006 at 02:01:06PM +0200, [EMAIL PROTECTED] wrote: > > > Hello!! > I'm making an application using Gtk_glade. > I need to plot points in an X-Y diagram,but i need to can interact with > them...i Maybe GtkDatabox is for you... > want

Gtk application cross compilation proble

2006-07-31 Thread harshavardhanreddy mandeepala
Hi all i am trying to crosscompile Gtk application to arm-linux. I created crossdevelopment tools and installed . But the Gtk application is giving problem when linking. The error message is as follows. /opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/lib/gcc/arm-linux/3.4.3/../../../../arm-lin

Plots x_y diagram

2006-07-31 Thread ferri_marllo
Hello!! I'm making an application using Gtk_glade. I need to plot points in an X-Y diagram,but i need to can interact with them...i want to can use my cursor to read them,and to can delete each of them if it's not good. How can i do it?? I read something about gtk_extra,but i'm using windows 98 a

Re: file chooser dialog

2006-07-31 Thread Iago Rubio
On Mon, 2006-07-31 at 09:16 +0200, [EMAIL PROTECTED] wrote: > Hi, I'm using a file chooser dialog for a 'save as' and 'load' dialog. > I have the problem that I have to set a base directory (e. g. '/temp/test'), > which is not to be crossed. > That means that no files shall be selectable which are

file chooser dialog

2006-07-31 Thread dasaspock
Hi, I'm using a file chooser dialog for a 'save as' and 'load' dialog. I have the problem that I have to set a base directory (e. g. '/temp/test'), which is not to be crossed. That means that no files shall be selectable which are not below this directory (e. g. '/temp/test/file' shall be selecta