Re: glib cross compilations

2006-10-24 Thread Steffen Gutmann
Hi! > Please help on during my cross compilations of glib > > Version: glib-2.12.4 > host: arm-linux > > Configure error: > > Checking for growing stack pointer... Configure error: Not sure if this helps but I ran into the same problem recently when trying to create a cross-compilation suite f

Re: Show window without it grabbing focus

2004-04-21 Thread Steffen Gutmann
Hi Danny, There are two things you could try: 1. Try gtk_window_set_accept_focus (GTK_WINDOW(widget), FALSE) before showing the window. 2. Try gdk_window_show(widget->window), or, if the window is already open, gdk_window_raise(widget->window). Regards, Steffen Danny Milosavljevic wrot

Re: Only allowing window resize in one direction

2004-04-19 Thread Steffen Gutmann
Hello David, please see the documentation for gtk_window_set_geometry_hints () : http://developer.gnome.org/doc/API/2.0/gtk/GtkWindow.html#gtk-window-set-geometry-hints If you set min_width and max_width to the same value (e.g. the one returned by gtk_widget_size_request (http://developer.gnome.

Re: gtk 2.4 compilation wants pango 1.2?

2004-03-28 Thread Steffen Gutmann
Dave Reed wrote: On a Solaris 9 system, I installed: glib-2.4.0 pango-1.4.0 atk-1.6.0 but when configuring gtk+-2.4.0 I get: - checking for freetype-config... /usr/local/bin/freetype-config checking For sufficiently new FreeType (at

Re: Install problem on 2.4.0 - missing fontconfig

2004-03-21 Thread Steffen Gutmann
Hi Dave! After some work, I found: * XFree86 4.4.0 does not include fontconfig. Did you setup your PKG_CONFIG_PATH to include the packages under /usr/X11R6? I think fontconfig resides there under 4.4.0. * GTK+-2.4.0 still would not load (no fontconfig). * 4.4.0 obsoleted my hand edited "/etc/

Re: Install problem on 2.4.0 - missing fontconfig

2004-03-18 Thread Steffen Gutmann
On Wednesday 17 March 2004 20:35, Steffen Gutmann wrote: Hi, I had the very same problem when installing gtk-2.3.4. Most probably your fontconfig is too old. I solved the problem by installing latest XFree86 package 4.4.0. You can find binaries for your architecture on http://www.xfree8

Re: Install problem on 2.4.0 - missing fontconfig

2004-03-17 Thread Steffen Gutmann
Hi, I had the very same problem when installing gtk-2.3.4. Most probably your fontconfig is tool old. I solved the problem by installing latest XFree86 package 4.4.0. You can find binaries for your architecture on http://www.xfree86.org and the installation on my system (RedHat 7.1) went sm

Re: GTK-2.3.5 installation problem

2004-03-08 Thread Steffen Gutmann
Hello, well, I solved the problem not by installing pango under /usr but by adding -lfreetype in the lib section of the pangoxft pkgconfig file. The unknown symbols FT_... all belong to the freetype library. Now I can install and run gtk-2.3 applications. Thanks for your help. -- Steffen Ju

Re: GTK-2.3.5 installation problem

2004-03-07 Thread Steffen Gutmann
when I do a configure in the new gtk-2.3.5 directort I get the following error message: checking for freetype-config... /usr/bin/freetype-config checking For sufficiently new FreeType (at least 2.0.1)... no configure: error: Pango 1.2.0 and Xft backend is required for x11 target I installed lat

GTK-2.3.5 installation problem

2004-03-05 Thread Steffen Gutmann
Hello, when I do a configure in the new gtk-2.3.5 directort I get the following error message: checking for freetype-config... /usr/bin/freetype-config checking For sufficiently new FreeType (at least 2.0.1)... no configure: error: Pango 1.2.0 and Xft backend is required for x11 target I install

Re: GtkEntry right aligned/justified (and Solution)

2004-02-23 Thread Steffen Gutmann
Hi Egon! I think, they were talking about scrolling and that the solution in 59799 didn't cover it correctly. I checked the scrolling in my version and seems to be ok. There is nothing wrong with the scrolling in the solution in 59799. We just had some discussions about how the code could be

Re: GtkEntry right aligned/justified (and Solution)

2004-02-23 Thread Steffen Gutmann
Hi Egon! Egon Andersen wrote: So, it seems their implementation isn't complete yet... Well, yours isn't complete either ;-) I think, they were talking about scrolling and that the solution in 59799 didn't cover it correctly. I checked the scrolling in my version and seems to be ok. What is m

Re: GtkEntry right aligned/justified (and Solution)

2004-02-23 Thread Steffen Gutmann
Hi Egon! Egon Andersen wrote: Steffen Gutmann wrote: O.K. I submitted a report to bugzilla, id 135177 (http://bugzilla.gnome.org/show_bug.cgi?id=135177). I think you will find that it is already covered in a more general way by: http://bugzilla.gnome.org/show_bug.cgi?id=59799 Oh, I didn&#

Re: GtkEntry right aligned/justified (and Solution)

2004-02-22 Thread Steffen Gutmann
O.K. I submitted a report to bugzilla, id 135177 (http://bugzilla.gnome.org/show_bug.cgi?id=135177). Thanks again for your help, Steffen Mariano SuÃrez-Alvarez wrote: They surely are reading... but filing a request for enhancement bug in bugzilla, http://bugzilla.gnome.org/, is usually the

Re: GtkEntry right aligned/justified (and Solution)

2004-02-22 Thread Steffen Gutmann
Hello Olexiy! I tried your 'solution' for obtaining right-aligned GtkEntries. Thanks for the modified entry example, it compiled and run without problems. [...] I solve this with connecting to GtkEntry' "expose-event" : static gboolean set_layout_align(GtkEntry *entry) { PangoLayout *pl;

Re: GtkEntry right aligned/justified

2004-02-20 Thread Steffen Gutmann
Hi Olexiy! Cool! This looks like it could work. I'll try that over the weekend and let you know how it turned out. Thanks a lot! -- Steffen [...pango-layout+source-code,etc] ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mai

Re: GtkEntry right aligned/justified

2004-02-20 Thread Steffen Gutmann
Hello Olexiy! Well, your respose is for a GtkLabel which can surely be aligned in many ways. But my question was for a GtkEntry and I get the believe that for this class there is no other way than having it left aligned. I didn't try the other poster's answer yet (using gtk_widget_set_directio

GtkEntry right aligned/justified

2004-02-19 Thread Steffen Gutmann
Hello, I saw this question posted at least twice but no answers were given, the FAQ doesn't mention it, and all my attempts to make a GtkEntry other then left-aligned failed including gtk_entry_get_layout for getting a pointer to the PangoLayout and playing around with several settings in ther

GtkEntry right aligned/justified

2004-02-19 Thread Steffen Gutmann
Hello, I saw this question posted at least twice but no answers were given, the FAQ doesn't mention it, and all my attempts to make a GtkEntry other then left-aligned failed including gtk_entry_get_layout for getting a pointer to the PangoLayout and playing around with several settings in there. S