Re: structures pointers confusion

2001-07-18 Thread Jeroen Benckhuijsen
main(); > return 0; > } > > any help possible would be greatly appreciated--Delbert Martin IV > > > > ___ > gtk-list mailing list > [EMAIL PROTECTED] > http://mail.gnome.org/mailman/listinfo/gtk-list Tr

Re: Screen updates while long time running subroutine

2001-07-17 Thread Jeroen Benckhuijsen
, Should I expect my > idle callback function be executed repeatedly? Or does each installed > idle callback function only get called once per "idle period"? > > Jeroen Benckhuijsen <[EMAIL PROTECTED]> wrote: > > See: http://www.gtk.org/faq/#AEN561 >

RE: Screen updates while long time running subroutine

2001-07-16 Thread Jeroen Benckhuijsen
orces a redraw/resize if the user is trying to do it? > >Thanks, > Pedro > > ___ > gtk-list mailing list > [EMAIL PROTECTED] > http://mail.gnome.org/mailman/listinfo/gtk-list See: http://www.gtk.org/faq/#AEN561 -- Jeroen Benckhuijsen

Re: status/progress bars (revisited)

2001-07-15 Thread Jeroen Benckhuijsen
t; > Havoc > > > > > > I think that "you're" should be a "your". > > > > > > Which "you're" do you mean? > > Havoc > > ___ > gtk-list mailing list > [EMAIL PROTEC

Re: GTK + SDL

2001-06-16 Thread Jeroen Benckhuijsen
answer to this question. > > Thanks for your help, > > Raph > > __ > BoƮte aux lettres - Caramail - http://www.caramail.com > AFAIK, there is a Gtk widget which includes a SDL Window. Thought it was simly called GtkSDL. Haven't used it however,

Re: Creating GdkEvents?

2001-06-11 Thread Jeroen Benckhuijsen
be found in the .h files (most of the fuction pointers in the class structure) or in the API documentation on http://developer.gnome.org. Often however there isn't really a good description so you'll have to figure out yourselves when a signal is emitted. You can also define you're own signals i be

Re: Including myfiles.c with glade

2000-12-10 Thread Jeroen Benckhuijsen
___ > gtk-list mailing list > [EMAIL PROTECTED] > http://mail.gnome.org/mailman/listinfo/gtk-list -- Jeroen Benckhuijsen Software Engineer Phoenix Software ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Re: GTK+ client server app

2000-10-02 Thread Jeroen Benckhuijsen
There are two possiblities: 1) A multi-threaded app, with one thread waiting for input. 2) Add a poll function to the g_lib loop Jeroen On Mon, 02 Oct 2000 04:26:01 Meghal Harish Varia wrote: > Hello, > > Does anyone know of a way I can implement a client app in a client-server > setting. F

Re: Destroying widgets...

2000-10-02 Thread Jeroen Benckhuijsen
A very simple reply: yes Jeroen On Thu, 28 Sep 2000 10:46:34 Dani Mezher wrote: > Hello, > > A simple question I suppose. When I destroy a container widget do I > destroy all widgets contained in my container. In other words, I am > writing an application with lots of dialog windows (with p

Re: gtk_object_set_data

2000-09-30 Thread Jeroen Benckhuijsen
On Fri, 29 Sep 2000 19:35:56 Matt Eisemann wrote: > Currently working on a project and using GTK+ and am aware of the > limitation in callbacks where gtk_sgnal_connect can only pass a single > data > value. > In my application I am using an array of records called TASK. I need a > way > to se

Re: Clock widget

2000-09-20 Thread Jeroen Benckhuijsen
> I'm trying to get the clock widget to work, to no avail. Here's the > source file: > > #include > #include "gnome.h" > #include "/usr/include/libgnomeui/gtk-clock.h" > > int main(int argc, char *argv[]) > { > GtkWidget *window, *clk; > > gtk_init(&argc, &argv); > > window

Re: Develop a composite widget

2000-09-14 Thread Jeroen Benckhuijsen
You made an error in the declaration of the widget structure (struct _GtkSwap). The first element (the parent of this widget) should be an GtkScrolledWindow scrolledwin, not a pointer to a widget. The parent of a widget should always be the first element of the new widget, and it should be that wi