Re: gtk spacing

2011-10-25 Thread Denis Linvinus
Hi! For Gtk2 you could try my theme http://gnome-look.org/content/show.php/Clearlooks-flat-compact?content=74918 For Gtk3 same theme is in progress. Also some usefull information available there http://forum.ubuntu.ru/index.php?topic=7616.150 (if you speak Russian) 2011/10/25 Darren Baginski >

Re: GTK+ library access issue?

2011-10-25 Thread Greg Ewing
Earnie wrote: However, IMNSHO, if LD can find the references in out-of-order .o object files it should be able to do the same with out-of-order library archives of object files but then I don't code LD. The linker on MacOSX apparently can -- according to the man pages, the traditional restrict

Re: GTK+ library access issue?

2011-10-25 Thread Nicola Fontana
Il giorno lun, 24/10/2011 alle 17.59 -0700, David Buchan ha scritto: > Interesting. I just tried compiling a simple non-gtk c program: > > > #include > #include > #include > > int > main() > { > int i; > double a =3.14; > double c; > > c = log(a); > > c = pow(a, i); > > } > > >

gtk spacing

2011-10-25 Thread Darren Baginski
Hi! Could someone suggest me how to configure spacing between list elements ? I would like to keep same font size, but lower the spacing. Please see screenshots http://smotr.im/DV3 http://smotr.im/DVd ___ gtk-list mailing list gtk-list@gnome.org http://m

Re: GTK+ library access issue?

2011-10-25 Thread Robert Pearce
Hi Earnie, On Tue, 25 Oct 2011 09:08:14 -0400 you wrote: > However, IMNSHO, if LD can find the references in out-of-order .o object > files it should be able to do the same with out-of-order library > archives of object files but then I don't code LD. Well, no, for fairly obvious reasons. LD simp

Re: GTK+ library access issue?

2011-10-25 Thread Earnie
David Buchan wrote: > Hi Nicola, > > I did find this on the GNU gcc page: "-l libraryIt makes a difference > where in the command you write this option; the linker searches and > processes libraries and object files in the order they are specified. > Thus, `foo.o -lz bar.o' searches library `z' aft

Re: GTK+ library access issue?

2011-10-25 Thread David Nečas
On Tue, Oct 25, 2011 at 04:22:16PM +0200, Stefano Facchini wrote: > > > Maybe you can find this link interesting ;-) > https://wiki.ubuntu.com/NattyNarwhal/ToolchainTransition Oh, great. Another distro forcing --as-needed in a one-size-fits-all manner. Yeti

Re: GTK+ library access issue?

2011-10-25 Thread Stefano Facchini
Il giorno mar, 25/10/2011 alle 07.10 -0700, David Buchan ha scritto: > Hi Nicola, > > I did find this on the GNU gcc page: > "-l library > It makes a difference where in the command you write this option; the > linker searches and processes libraries and object files in the order > they are speci

Re: GTK+ library access issue?

2011-10-25 Thread David Buchan
Hi Nicola, I did find this on the GNU gcc page: "-l libraryIt makes a difference where in the command you write this option; the linker searches and processes libraries and object files in the order they are specified. Thus, `foo.o -lz bar.o' searches library `z' after file foo.obut before bar.o

Re: GTK+ library access issue?

2011-10-25 Thread Earnie
Greg Ewing wrote: > Paul Davis wrote: > >> the gnu linker follows a unix tradition of interpreting the list >> of explicitly and implictly provided object files names as a >> dependency order. consider two files, a.o and b.o. suppose that a.o >> uses a function or symbol found only in b.o. in gener

Re: GtkContainer Gtk 3.0 vs Gtk 3.2 geometry management

2011-10-25 Thread Denis Linvinus
2011/10/25 Denis Linvinus > > > 2011/10/24 Denis Linvinus > >> >> >> 2011/10/24 Tristan Van Berkom >> >>> On Sun, Oct 23, 2011 at 4:38 PM, Denis Linvinus >>> wrote: >>> > >>> > >>> > 2011/10/19 Tristan Van Berkom >>> >> >>> >> Note I spent a lot of time writing something like this last year.

Re: GTK+ library access issue?

2011-10-25 Thread Greg Ewing
Paul Davis wrote: the gnu linker follows a unix tradition of interpreting the list of explicitly and implictly provided object files names as a dependency order. consider two files, a.o and b.o. suppose that a.o uses a function or symbol found only in b.o. in general, the linker will be able to

Re: GtkContainer Gtk 3.0 vs Gtk 3.2 geometry management

2011-10-25 Thread Denis Linvinus
2011/10/24 Denis Linvinus > > > 2011/10/24 Tristan Van Berkom > >> On Sun, Oct 23, 2011 at 4:38 PM, Denis Linvinus >> wrote: >> > >> > >> > 2011/10/19 Tristan Van Berkom >> >> >> >> Note I spent a lot of time writing something like this last year. >> >> >> >> I would like to eventually port it