Re: GLIB for a webserver

2011-12-13 Thread Marcelo Elias Del Valle
Hello! Sorry again for the delay to replay. I was thinking in monitor the server memory to not let it reach the maximum allowed by the OS, which seems to be the basic idea behind what you have said. Although I think it' s better than nothing, the problem is that other machines processes may

Re: GLIB for a webserver

2011-12-13 Thread Marcelo Elias Del Valle
I didn't know that, thanks! Em 11/12/2011 17:53, Stefan Sauer enso...@hora-obscura.de escreveu: On 12/08/2011 02:13 PM, Marcelo Elias Del Valle - SYSMAP SOLUTIONS - Claro MA-SP - wrote: Hello, I am planning to use glib to write a C application server. I just like the library

can anybody help me figure out why the two hbox buttons don't show?

2011-12-13 Thread Gary Kline
people, i am trying to get the decrement and increment buttons to display side by side between the vertical stuff, but only the filename and the window entry show up. anybody know where i'm messing up? gary /* * compile with: * gcc -Wall -Wextra -Werror -g x.c -o x1 `pkg-config --cflags

Re: can anybody help me figure out why the two hbox buttons don't show?

2011-12-13 Thread Florian Müllner
On mar, 2011-12-13 at 15:02 -0800, Gary Kline wrote: anybody know where i'm messing up? int main (void) { GtkWidget *window; GtkWidget *vbox, *hbox; [...] gtk_container_add (GTK_CONTAINER (window), vbox); [...] gtk_container_add (GTK_CONTAINER (window), hbox); GtkWindow

Re: can anybody help me figure out why the two hbox buttons don't show?

2011-12-13 Thread Gary Kline
On Wed, Dec 14, 2011 at 12:14:54AM +0100, Florian M?llner wrote: Date: Wed, 14 Dec 2011 00:14:54 +0100 From: Florian M?llner fmuell...@gnome.org Subject: Re: can anybody help me figure out why the two hbox buttons don't show? To: gtk-app-devel-list@gnome.org X-Mailer: Evolution 3.2.1 On

Re: can anybody help me figure out why the two hbox buttons don't show?

2011-12-13 Thread Florian Müllner
On mar, 2011-12-13 at 16:40 -0800, Gary Kline wrote: hm. okay, so i removed the second gtk_container_box and got the same results. the following hbox is missing from the window: button_dec = gtk_button_new_from_stock (Decrease counter); gtk_box_pack_start (GTK_BOX (hbox),

Re: can anybody help me figure out why the two hbox buttons don't show?

2011-12-13 Thread Gary Kline
On Wed, Dec 14, 2011 at 02:03:21AM +0100, Florian M?llner wrote: Date: Wed, 14 Dec 2011 02:03:21 +0100 From: Florian M?llner fmuell...@gnome.org Subject: Re: can anybody help me figure out why the two hbox buttons don't show? To: gtk-app-devel-list@gnome.org X-Mailer: Evolution 3.2.1 On

Re: can anybody help me figure out why the two hbox buttons don't show?

2011-12-13 Thread Florian Müllner
On mar, 2011-12-13 at 17:23 -0800, Gary Kline wrote: On Wed, Dec 14, 2011 at 02:03:21AM +0100, Florian M?llner wrote: Did you add 'hbox' to any container ('vbox' in your code example)? nope. What I meant to say is: you need to add 'hbox' somewhere in the widget hierarchy. Add it to 'vbox'.

Re: can anybody help me figure out why the two hbox buttons don't show?

2011-12-13 Thread Gary Kline
On Wed, Dec 14, 2011 at 02:27:19AM +0100, Florian M?llner wrote: Date: Wed, 14 Dec 2011 02:27:19 +0100 From: Florian M?llner fmuell...@gnome.org Subject: Re: can anybody help me figure out why the two hbox buttons don't show? To: Gary Kline kl...@thought.org Cc: gtk-app-devel-list@gnome.org