Re: GTK for win32 cannot use stdio???

2006-08-06 Thread Ricardo Malafaia
try fflush( stdout ) after the output operations. yes, Windows behaves weird... On 8/1/06, u821417 <[EMAIL PROTECTED]> wrote: > I just download GTK for win32 , developing win32 GTK > applications using VC++ GUI. > But what i am wondering is ... many stdio functions cannot > work??? > (It's ok to

gtk_button_set_relief on Windows

2006-08-02 Thread Ricardo Malafaia
On Windows 2000 and XP, GTK_RELIEF_HALF doesn't seem to work. Is that right or has something to do with themes? although it's using the default theme from the binary distribution... ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http:/

Re: New to GObject, few questions

2006-07-21 Thread Ricardo Malafaia
On 7/21/06, Tomasz Jankowski <[EMAIL PROTECTED]> wrote: > I. What the Interfaces are? of course you know what Interfaces are. You've probably been dealing with Application Programming Interfaces and C headers for a long time. They represent the public functionality and data type declarations pre

Re: RADiola, a GTK RAD tool

2006-07-16 Thread Ricardo Malafaia
On 7/14/06, Fabricio Rocha <[EMAIL PROTECTED]> wrote: > Well, I have to say that RADiola, as described in the User Guide, still > does NOT exist. well, that's pretty obvious. > The (sad) reality is that I am only a hobbyist programmer (in fact > I'm a TV reporter in the Politics area!), with lit

Re: Now, about gtk_tree's

2006-06-29 Thread Ricardo Malafaia
On 6/29/06, David Nečas (Yeti) <[EMAIL PROTECTED]> wrote: > GtkTreeView (which, despite its name, can do > non-trees too). A list is also a tree, that's why it handles it well. Perhaps we should have a generalized GtkGraphView to handle all kinds of graphs? ;)

Re: GTK file open dialog usability...

2006-06-24 Thread Ricardo Malafaia
I personally like it very much: it's very keyboard friendly. Some people will find it a little disturbing that there's no visible direct textbox to type in, and i would agree. Not a problem for newbies who only use the mouse to select anyway, but a little frustrating for people who wish to use t

Re: In gtk+ application,how to parse xml file

2006-06-22 Thread Ricardo Malafaia
man, you are with luck. GLib -- which is a base library for GTK+ -- comes with a simple but easy parser for a subset of XML: http://developer.gnome.org/doc/API/2.0/glib/glib-Simple-XML-Subset-Parser.html#GMarkupParser should be enough to handle config files... On 6/22/06, yeajchao <[EMAIL PROTE

Re: defective GTK app crashes gnome

2006-02-07 Thread Ricardo Malafaia
On 2/6/06, Michael Torrie <[EMAIL PROTECTED]> wrote: > This is new news to me. The only thing that I know of that would make a > machine lock up so as to require a reboot is a memory leak or some > obscure X11 bug. Actually, i've had several problems with X freezing up because of some misbehaviou

Re: Compiling gtk apps on MingW

2005-07-04 Thread Ricardo Malafaia
PKG) --libs gtk+-2.0 | sed -e 's/d:/\/d/g'` GTK=$(GTK_CFLAGS) $(GTK_LIBS) all: exec/teste.exe exec/teste.exe: teste.c $(CC) teste.c -o exec/teste.exe $(GTK) On 7/4/05, zhanglei <[EMAIL PROTECTED]> wrote: > Ricardo Malafaia writed: > >all: test > > >

Fwd: Compiling gtk apps on MingW

2005-07-01 Thread Ricardo Malafaia
he gcc command line shown, shows not the result of the sed processed pkg-config output, but simply `pkg-config --cflags gtk+-2.0 | sed -e 's/d:/\/d/'`. i'll try a bit more later... -- Forwarded message -- From: Ricardo Malafaia <[EMAIL PROTECTED]> Date: Jul 1, 2

Compiling gtk apps on MingW

2005-07-01 Thread Ricardo Malafaia
Hello, all! I'm sure this has been asked before and i searched the archives, but couldn't find anything to help me. So, can anyone give me a hand? I'm having problems with the linking step, as noted in messages which go like: test.c: undefined reference to `g_print' test.c: undefined reference t