Re: GTK plot graph

2007-06-29 Thread Naveen Kumar
Hi, Try to use gtkdatabox it will fulfill needs i feel. Regards, Naveen. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

GLib 2.13.6 released

2007-06-29 Thread Matthias Clasen
GLib 2.13.6 is now available for download at: ftp://ftp.gtk.org/pub/gtk/2.13/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.13/ glib-2.13.6.tar.bz2 md5sum: d28c7e421b978733c8e48b9ed6d79a84 glib-2.13.6.tar.gz md5sum: a51bf8dfac262389d4524d2e5d7532d2 This is another development release leadi

Re: Designing objects with GObject

2007-06-29 Thread Yeti
On Fri, Jun 29, 2007 at 12:25:38PM -0400, Tristan Van Berkom wrote: > If you want to override the default value or read/write flags > on a property you can simply re-install it in the subclass. > > Basically, your implementing class can g_object_class_install_property > and if its the same name it

Re: Designing objects with GObject

2007-06-29 Thread Tristan Van Berkom
On Fri, 2007-06-29 at 13:40 +0200, Tomasz Jankowski wrote: > > You can do this, as you control set_property(). The problem > > is that this is a hack invisible to inspection, therefore it > > can lead to all sorts of odd behaviour. > > > So it's exactly as I thought. I'll implement those propert

bg_pixmap problem

2007-06-29 Thread Chandra Shekar Sengupta
hi, i am setting bg_pixmap style property of GtkMenuItem to get different images loaded for every states(like PRELIGHT,SELECTED).I have 5 GtkMenuItem in my menubar.For the first two menuitems bg_pixmap is showing properly,but for 3rd one onwards bg_pixmap is getting distorted(the left portion of bg

Re: gdk_threads_set_lock_functions

2007-06-29 Thread Felix Kater
> what does "temporarily" mean here: > > gdk_threads_set_lock_functions: "[...] When GTK+ unlocks the GTK+ lock > when entering a recursive main loop, the application must temporarily > release its lock as well." What ever that means... > my recursive locks ... had a bug. Thanks Felix ___

Carolyn MacLeod is out of the office.

2007-06-29 Thread Carolyn MacLeod
I will be out of the office starting 06/29/2007 and will not return until 07/31/2007. I will be out of the office starting 06/29/2007 and will not return until 07/31/2007. I will respond to your message when I return. ___ gtk-app-devel-list mailing l

Re: GTK plot graph

2007-06-29 Thread James Scott Jr
Dieterle, If you would like an even simpler example/tool - pick up glinegraph from this link http://sourceforge.net/project/showfiles.php?group_id=157888 It does exactly what I needed and may work for you. James, On Fri, 2007-06-29 at 12:06 +0200, Daniel Dieterle wrote: > Hey, > > after googl

Re: Designing objects with GObject

2007-06-29 Thread Tomasz Jankowski
> You can do this, as you control set_property(). The problem > is that this is a hack invisible to inspection, therefore it > can lead to all sorts of odd behaviour. So it's exactly as I thought. I'll implement those properties separately for both objects. I don't want to make any surprises to

Re: Designing objects with GObject

2007-06-29 Thread Yeti
On Fri, Jun 29, 2007 at 06:39:47PM +0800, Konstantin Evdokimenko wrote: > If you will make properties of interface C writable and readable in object A > and > only readable in object B then objects A and B will not implement the > same interface. The common interface is the read-only property her

Re: Designing objects with GObject

2007-06-29 Thread Konstantin Evdokimenko
If you will make properties of interface C writable and readable in object A and only readable in object B then objects A and B will not implement the same interface. Try ignore writing these properties for object B. But I don't know how this may be done =(. ___

Re: GTK plot graph

2007-06-29 Thread Daniel Dieterle
Hey, after googling: "draw curves in gtk" i found the gtk+extra packages. I think GtkPlot is what i need. Sorry for disturbing you. Perhaps this contribution helps the next guy to find the right tool. Daniel. On Fri, 2007-06-29 at 11:45 +0200, Daniel Dieterle wrote: > Hi, > > my goal is to

GTK plot graph

2007-06-29 Thread Daniel Dieterle
Hi, my goal is to plot a simple array of floating-values in a gtk plot. I want some basic operations on the graph, like zooming in/out, fast redrawing of the graph , ... - gtk-curve seems not to be poweful enough. Also: "This widget is considered too specialized/little-used for GTK+, and will in

Re: Designing objects with GObject

2007-06-29 Thread Tomasz Jankowski
> > > You will use g_object_class_override_property() anyway. > Doesn't it allow to make a READABLE proeprty READWRITE? No, this function doesn't allow to change property behavior. It only implements property defined in interface. Any other idea please? ;) -- Cya! Tom __