Re: Newbey Question

2005-04-09 Thread Tor Lillqvist
Jamiil Abdullah-Alkadir writes: > I did as you suggested, however, I now get an error saying that the > '-lXext' library was not found. I ran 'find /usr -name *Xext*' and > I did find '/usr/X11R6/bin/cygXext-6.dll'. Is there anything I can > do to solve this problem? I can't understand why you

Re: Newbey Question

2005-04-09 Thread stian
> Thanks Marcel for your prompt response. > I did as you suggested, however, I now get an error saying that the > '-lXext' > library was not found. I ran 'find /usr -name *Xext*' and I did find > '/usr/X11R6/bin/cygXext-6.dll'. Is there anything I can do to solve this > problem? I saw you are usin

Re: Newbey Question

2005-04-08 Thread Marcel Ruff
istribution, on my Linux it is in: linux:~ # rpm -q --whatprovides libXext.so.6 xorg-x11-libs-6.8.1-15.4 regards, Marcel TIA From: Marcel Ruff <[EMAIL PROTECTED]> To: Jamiil Abdullah-Alkadir <[EMAIL PROTECTED]>, gtk-app-devel-list@gnome.org Subject: Re: Newbey Question Date: Fri, 0

Re: Newbey Question

2005-04-08 Thread Jamiil Abdullah-Alkadir
roblem? TIA From: Marcel Ruff <[EMAIL PROTECTED]> To: Jamiil Abdullah-Alkadir <[EMAIL PROTECTED]>, gtk-app-devel-list@gnome.org Subject: Re: Newbey Question Date: Fri, 08 Apr 2005 15:16:52 +0200 Jamiil Abdullah-Alkadir wrote: Thanks Tristan for you prompt response. I did try your sug

Re: Newbey Question

2005-04-08 Thread Marcel Ruff
in 21" from SAMS. Again, thank you, Tristan. From: Tristan Van Berkom <[EMAIL PROTECTED]> To: Jamiil Abdullah-Alkadir <[EMAIL PROTECTED]> CC: gtk-app-devel-list@gnome.org, gtk-list@gnome.org Subject: Re: Newbey Question Date: Thu, 07 Apr 2005 18:50:53 -0400 Jamiil Abdullah-Alk

RE: Newbey Question

2005-04-08 Thread Jamiil Abdullah-Alkadir
st@gnome.org, gtk-list@gnome.org Subject: Newbey Question Date: Fri, 8 Apr 2005 02:18:42 +0300 Jamiil Abdullah-Alkadir writes: > main.cpp:41: error: invalid conversion from 'void (*)(GtkButton*, void*)' to The name of the library is GTK+, not GTK++. The "+" in the

Re: Newbey Question

2005-04-08 Thread Jamiil Abdullah-Alkadir
an Berkom <[EMAIL PROTECTED]> To: Jamiil Abdullah-Alkadir <[EMAIL PROTECTED]> CC: gtk-app-devel-list@gnome.org, gtk-list@gnome.org Subject: Re: Newbey Question Date: Thu, 07 Apr 2005 18:50:53 -0400 Jamiil Abdullah-Alkadir wrote: [...] //Register CallBacks <<== **Here is the pro

Newbey Question

2005-04-07 Thread Tor Lillqvist
Jamiil Abdullah-Alkadir writes: > main.cpp:41: error: invalid conversion from 'void (*)(GtkButton*, void*)' to The name of the library is GTK+, not GTK++. The "+" in the name has nothing to do with C++. (There are C++ wrappers for GTK+, but you don't seem to be using any such.) To reduce confus

Re: Newbey Question

2005-04-07 Thread Tristan Van Berkom
Jamiil Abdullah-Alkadir wrote: [...] //Register CallBacks <<== **Here is the problem 8) gtk_signal_connect(GTK_OBJECT(btnExit), "clicked", Quit, NULL); gtk_signal_connect uses functions with any signatures, they must all be cast to `void (*) ()' though first. try: gtk_signal_connect(GTK_OBJECT(

Newbey Question

2005-04-07 Thread Jamiil Abdullah-Alkadir
Hello GTK++ users!! With the aid of "Teach yourself GTK++ Programming in 21 Days" from SAMS I have been able to write my first GTK++ program, as well as a small 'Makefile' to do the compilation. My question is not about the 'Makefile', but about the GTK++ program itself. Nevertheless, I have inc