GtkTable and GtkDrawingArea

2006-02-11 Thread Barry Demchak
Hi -- I'm new to GTK and am having problems that I don't understand ... thanks in advance to anyone who can take a look ... I'm trying to use a GTKTable (created by Glade, and without any child widgets) to lay out a group of GtkDrawingAreas. The table itself is 3x2 cells, around 500x200 pixe

Pango-1.11.5 released [unstable]

2006-02-11 Thread Behdad Esfahbod
Pango-1.11.5 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ f3b0d6211679664720d20410069757a4 pango-1.11.5.tar.bz2 a254fd56e7865a0988370af9f2705885 pango-1.11.5.tar.gz This is a development release leading up to Pango-1.12.0, which will be released just in time for GNOME-2.

Re: Can't print Ω in bold in GTK labels

2006-02-11 Thread Gus Koppel
Anoop wrote: > I am writing a program that prints the resistance value in bold red > colour. Please see the following snippet: > > final_result = g_markup_printf_escaped(" weight=\"bold\" size=\"xx-large\"> %s±%.2f ",result,tolerance); > gtk_label_set_markup(GTK_LABEL(label_Output),final_result)

Re: GTK+ 2.8.12 released

2006-02-11 Thread Ross Burton
On Sat, 2006-02-11 at 13:14 -0500, Matthias Clasen wrote: > * The font selection dialog can now select fractional > font sizes [Ross Burton] Incorrect summary of the changelog: the font selection dialog always allowed fractional sizes, but GtkFontButton truncated it for display. Ross -- Ross B

GTK+ 2.8.12 released

2006-02-11 Thread Matthias Clasen
GTK+ 2.8.12 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.12.tar.bz2 md5sum: bdd3b950e4a3c65d61bceed9149888a9 gtk+-2.8.12.tar.gzmd5sum: 964426c66b0d4381fa4db746bc4b9ac1 This is a bugfix release in the 2.8.x ser

RE: Gtk and C++

2006-02-11 Thread Gnaural
Hi Jorge, In context: > What I must check from your > message is if I can > compile my "objects" in C++ > and the Glade code in C with MSVC. Actually, what I suggested was even simpler: just compile the entire project in C++. The point being that most C code happily compiles as-is under C++, an

RE: Gtk and C++

2006-02-11 Thread Jorge Monsalvo
Thank you Gnaural!! You're right. I'm working on Windows. Normally I make the debugging compiling and running my application in "step by step" mode on MSVC6. When then application is OK, I compile it with MinGW. What I must check from your message is if I can compile my "objects" in C++ and the Gla

GLib 2.9.6 released

2006-02-11 Thread Matthias Clasen
GLib 2.9.6 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.9/ glib-2.9.6.tar.bz2 md5sum: 2ba1146e767454e14ac0788187c35892 glib-2.9.6.tar.gz md5sum: 461efa5ac7e5838a5cbc6bbc735b494d This is a development release lead

Re: defective GTK app crashes gnome

2006-02-11 Thread Freddie Unpenstein
> i've had several problems with X freezing up because of some > misbehaviour from some graphical app. The keyboard is locked so > it's hopeless to try CTRL+ALT+BKSP Not wrong there... Not even switching consoles is possible time times... > > When the system locks up, is the computer still ali

Re: Gtk and C++

2006-02-11 Thread Gnaural
Hi Jorge, Sounds like you are working under Windows; I'm under Debian, but this info probably overlaps. My experience is that generic Glade builds compile just fine under g++; so having to use a few objects with a standard Glade build was as simple as using the Glade option to choose the extension

Re: Experience with libgnomeprint/libgnomeprintui?

2006-02-11 Thread Gus Koppel
Bartek Kostrzewa wrote: > Also, since my goal is but the printing of an image I was wondering > whether you knew of some simple way of passing the image to something > else and having it print it. Any help is greatly appreciated. Perhaps a look at the printing code of The Gimp could provide you w

Re: How To Draw a window without an option to Maximize it

2006-02-11 Thread Gus Koppel
Amitesh Singh <[EMAIL PROTECTED]> wrote: > > How to Draw a Window without an option to Maximize it ? > i have also tried to do the same using gdk_window_set_decorations (); > but its not working !! :( gdk_window_set_decorations() is basically the right function call to achieve what you intend,