Re: GTK+-2.3.4 released [unstable]

2004-02-25 Thread Owen Taylor
On Wed, 2004-02-25 at 09:32, Tomasz Koczko wrote: On Tue, 24 Feb 2004, Owen Taylor wrote: [..] Overview of Changes from GTK+ 2.3.2 to GTK+ 2.3.4 = * Fix broken gtk_binary_age setting causing wrong soname [Owen Taylor] * Add some extra

Hex numbers

2004-02-25 Thread Tom Froysland
What should I use to get or show hex numbers. ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

threads in gtkfb?

2004-02-25 Thread Jay Vaughan
Hi, I'm evaluating whether or not I can run my gtk app in fb mode, and am wondering if the single-process limit of gtkfb means I can't fire new threads in my app? Its not clear from the docs, alas, whether the single-process requirement means no pthread() use, or what? -- ; Jay Vaughan

Instructions for compiling with GTK under win32

2004-02-25 Thread Richard Nairn
I have tried various combinations for compiling a test program under cygwin and MinGW. Can anyone provide me with a recipe for what they did for a successful compile of of a program using gtk under either environment? -- | Richard Nairn Specializing in Linux | Nairn

Re: Instructions for compiling with GTK under win32

2004-02-25 Thread Vincent Torri
I have tried various combinations for compiling a test program under cygwin and MinGW. Can anyone provide me with a recipe for what they did for a successful compile of of a program using gtk under either environment? with mingw, i use autotools, but you can begin by using this Makefile

Re: Hex numbers

2004-02-25 Thread Egon Andersen
Tom Froysland wrote: What should I use to get or show hex numbers. How about GtkEntry() combined with gtk_entry_set/get_text(), sprintf() and strtoi() sprintf() could also be g_strdup_printf() Best regards Egon Andersen ___ gtk-list mailing list

Re: How do people make the semi-transparent windows?

2004-02-25 Thread Jack Chen
--- Michael Torrie [EMAIL PROTECTED] wrote: On Sun, 2004-02-22 at 14:08, Jack Chen wrote: Hello, Can anyone tell me how people make those windows semi-transparent? Is it done in gtk or in the specific window manager? Until the compositing extensions are defined and available in X11,

Re: How do people make the semi-transparent windows?

2004-02-25 Thread Jack Chen
--- Vincent Torri [EMAIL PROTECTED] wrote: Hello, Can anyone tell me how people make those windows semi-transparent? Is it done in gtk or in the specific window manager? this could be done with directfb and the gtk backend regards Vincent TORRI Thank you. I will check

Re: Instructions for compiling with GTK under win32

2004-02-25 Thread Richard Nairn
Thanks for your reply. What GTK packages are you using? The ones from Tor Lillqvist, or Masahiro Sakai's site. I have it compiling fine, but it won't run. I have it compiled under mingw. On Wed, 25 Feb 2004 20:08:13 +0100 (MET), Vincent Torri [EMAIL PROTECTED] wrote: I have tried various

Re: Instructions for compiling with GTK under win32

2004-02-25 Thread Vincent Torri
Thanks for your reply. What GTK packages are you using? The ones from Tor Lillqvist, or Masahiro Sakai's site. I have it compiling fine, but it won't run. those from Tor (of course...) regards Vincent TORRI ___ gtk-list mailing list [EMAIL

delete a row

2004-02-25 Thread francex
Hi, I have resolved problem for show/hide a column from a gtk_list_store, but now I have a new problem. How is possible delete a row in gtk_list_store (prev email sample) by index (for example delete directly 5th, 8th, etc. row)? __

Re: Hex numbers

2004-02-25 Thread Roger Leigh
Tom Froysland [EMAIL PROTECTED] writes: What should I use to get or show hex numbers. printf(3) and scanf(3) might be what you need. Or use the g_printf, g_strdup_printf and related functions from GLib. What exactly do you want to accomplish? -- Roger Leigh Printing on

Re: Hex numbers

2004-02-25 Thread Paul Davis
some ideas from the world of C++. This is a C++ widget that filters input at the keypress level and only allows hex digits to be entered. i believe i've used it :) --p /* Copyright (C) 1999 Paul Barton-Davis This program is free software; you can redistribute it and/or modify it

glib-2.2.3 build problem

2004-02-25 Thread Ed Arnold
I ran into a minor problem with build of glib-2.2.3 on a sun-sparc-solaris2.9 system. Can someone tell me if this is a bug that should be reported, or a feature I should enjoy. I run configure with only the --prefix flag. After configure, config.log shows ENABLE_GTK_DOC_TRUE='#' has been set. In

Re: glib-2.2.3 build problem

2004-02-25 Thread Sven Neumann
Hi, Ed Arnold [EMAIL PROTECTED] writes: I ran into a minor problem with build of glib-2.2.3 on a sun-sparc-solaris2.9 system. Can someone tell me if this is a bug that should be reported, or a feature I should enjoy. Do yourself a favor and use GNU make to build glib and friends. Sven

Hex numbers

2004-02-25 Thread Tom Froysland
How is it possible to make a (text) box to get or show a hexadesimal number? -- Tom Frysland [EMAIL PROTECTED] INFN Universita Roma II

Re: GTK+-2.3.4 released [unstable]

2004-02-25 Thread Tomasz Koczko
On Tue, 24 Feb 2004, Owen Taylor wrote: [..] Overview of Changes from GTK+ 2.3.2 to GTK+ 2.3.4 = * Fix broken gtk_binary_age setting causing wrong soname [Owen Taylor] * Add some extra GtkExpander docs [Federico Mena Quintero] * Misc bug fixes

Re: GTK+-2.3.4 released [unstable]

2004-02-25 Thread Tomasz Koczko
On Wed, 25 Feb 2004, Owen Taylor wrote: [..] Looks like we're missing a requirement on glib-2.3.3, upgrade and make sure GTK+ is finding it and you should be fine. (G_DEFINE_TYPE changed slightly between 2.3.2 and 2.3.3) Yes. This was compiled on glib 2.3.2. Why (the hel) gtk+ autoconf script

Re: GTK+-2.3.4 released [unstable]

2004-02-25 Thread Tomasz Koczko
On Wed, 25 Feb 2004, Owen Taylor wrote: [..] Yes. This was compiled on glib 2.3.2. Why (the hel) gtk+ autoconf script have incorrect checking enviromet ? ;) The politeness... Because we didn't notice??? Sorry. disclaimerI have RW access/dislaimer

Differences between Gtk1 and Gtk2

2004-02-25 Thread Marcos Leal
I used to have some users parameters passed through 'gpointer user_data' For example, the event for pressed button I used to declare in GTK1 like : void on_button_pressed(GtkButton *button, gpointer user_data) I don't even know if this is the right thing to do. There's no 'gpointer user_data' on

Re: Hex Numbers in GtkEntry.

2004-02-25 Thread Muthiah Annamalai
Hello Friends, Quoting Tom Froysland [EMAIL PROTECTED] Subject: Hex numbers How is it possible to make a (text) box to get or show a hexadesimal number? -- The way I do it is to use sscanf sprintf and get/set the hexadecimal numbers that we get respectively. //getting an hexdecimal from the

Re: Hex Numbers in GtkEntry.

2004-02-25 Thread Billy O'Connor
Muthiah Annamalai [EMAIL PROTECTED] writes: sprintf(data,%X,hex_value); //Assume hex_value has been set somehow. ^ Oops. ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list