Re: unfocussed windows

2005-07-22 Thread Brian J. Tarricone
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Stefan Kost wrote: > A second but more complex idea is to use an virtual frame-buffer like: > /usr/X11R6/bin/Xvfb -ac :9 -screen 9 1024x786x16 > > And the setting this display as the default one before opening any > window. Unfortunately this invol

gtkrc , pixmap engine, and button widgets

2005-07-22 Thread Boncek, John
We are using gtkrc with the pixmap engine to have a brushed-aluminum look on button widgets. It looks great, but it also disables the default behavior in which the button appears to press inward when clicked on. Is there a way to achieve this with the pixmap engine? For instance, is there a way

unfocussed windows

2005-07-22 Thread Stefan Kost
hi hi, as part of my test suite I run GUI tests. Now this is a bit disturbing as windows flicker around. A first idea I had was to avoid that these windiows become active. I thought about using: gtk_window_set_focus_on_map(GTK_WINDOW(main_window),FALSE); gtk_window_set_accept_focus(GTK_WINDOW(m

GTK+ 2.7.4 released

2005-07-22 Thread Matthias Clasen
GTK+ 2.7.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.7/ gtk+-2.7.4.tar.bz2 md5sum: 1a121264a4ba2e208c025d9eb0515d41 gtk+-2.7.4.tar.gz md5sum: 0bd5dfa7334a20bb0efdd582704f84b6 This is the fifth development release loading up to GTK+ 2.8. Notes: * This is unstable d

Re: Doubt about free or dont free

2005-07-22 Thread Hubert Sokołowski
On Fri, 22 Jul 2005 16:31:39 -0300 Arx Henrique <[EMAIL PROTECTED]> wrote: > Hi all, > > i have a GtkEntry with a signal "activate" and this handle: > > void translate(GtkEntry *widget, gpointer *data) { > const gchar *text; > text = gtk_entry_get_text(widget); > gui_app_notify

Re: Doubt about free or dont free

2005-07-22 Thread Germán Poó Caamaño
Le vendredi 22 juillet 2005 à 16:31 -0300, Arx Henrique a écrit : > Hi all, > > i have a GtkEntry with a signal "activate" and this handle: > > void translate(GtkEntry *widget, gpointer *data) { > const gchar *text; > text = gtk_entry_get_text(widget); > gui_app_notify_new(text)

Re: Doubt about free or dont free

2005-07-22 Thread Arx Henrique
Tks x) next time i'll read api On 7/22/05, David Necas (Yeti) <[EMAIL PROTECTED]> wrote: > On Fri, Jul 22, 2005 at 04:31:39PM -0300, Arx Henrique wrote: > > i have a GtkEntry with a signal "activate" and this handle: > > > > void translate(GtkEntry *widget, gpointer *data) { > > const gchar

Re: Doubt about free or dont free

2005-07-22 Thread David Necas (Yeti)
On Fri, Jul 22, 2005 at 04:31:39PM -0300, Arx Henrique wrote: > i have a GtkEntry with a signal "activate" and this handle: > > void translate(GtkEntry *widget, gpointer *data) { > const gchar *text; > text = gtk_entry_get_text(widget); > gui_app_notify_new(text); > g_free(

Doubt about free or dont free

2005-07-22 Thread Arx Henrique
Hi all, i have a GtkEntry with a signal "activate" and this handle: void translate(GtkEntry *widget, gpointer *data) { const gchar *text; text = gtk_entry_get_text(widget); gui_app_notify_new(text); g_free(text); gtk_editable_delete_text(GTK_EDITABLE(widget

GLib 2.7.4 released

2005-07-22 Thread Matthias Clasen
GLib 2.7.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.7/ glib-2.7.4.tar.bz2 md5sum: ae4af9e16eda62dc77df232dd8be7c22 glib-2.7.4.tar.gz md5sum: 291da7986e876d8b65a4461eb47edc60 This is the fifth development release leading up to GLib 2.8. Notes: * This is unstable d

Re: GtkHTML

2005-07-22 Thread Arx Henrique
try monodoc to give you some base. they have gtkhtml api for c# On 7/21/05, The Saltydog <[EMAIL PROTECTED]> wrote: > does anybody know where can I find documentation concerning use of GtkHTML? > ___ > gtk-app-devel-list mailing list > gtk-app-devel-list

Re: GTK version compatibility

2005-07-22 Thread Billy Biggs
Gowri Kandasamy ([EMAIL PROTECTED]): > Does applications built on GTK 2.2 work with gtk2.6 ? Yes. -Billy ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

GTK version compatibility

2005-07-22 Thread Gowri Kandasamy
Does applications built on GTK 2.2 work with gtk2.6 ? Thanks, Gowri ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Unknown number of columns in a GtkListStore

2005-07-22 Thread Annamalai Gurusami
Razvan Gavril <[EMAIL PROTECTED]> writes: > I want to display the results of a user entered sql query in a GtkTreeView > (List). The only problem that i have is the the number of columns in the > list is only known at runtime (no of cols returned by sql query). How can i > create a GtkListStore

Re: How to control one GTK application by another

2005-07-22 Thread Annamalai Gurusami
"sripurna mutalik" <[EMAIL PROTECTED]> writes: > By control i mean i want to access all the facilities in B from > A. Facilities such as pushing buttons, filling text area by some > text and even starting and closing of that application. Is there > any way of doing this. You must be look

Unknown number of columns in a GtkListStore

2005-07-22 Thread Razvan Gavril
I want to display the results of a user entered sql query in a GtkTreeView (List). The only problem that i have is the the number of columns in the list is only known at runtime (no of cols returned by sql query). How can i create a GtkListStore with a dynamic number of columns ? -- Razvan Gav

How to control one GTK application by another

2005-07-22 Thread sripurna mutalik
Hi all, I have two applications A and B (both GTK) and i want to control B from A. Application B is not written by me and there is no IPC mechanisms that it supports (such as pipes or sockets or shared files). By control i mean i want to access all the facilities in B from A. Facilitie

Transparent Windows

2005-07-22 Thread Kenneth Østby
Hey there, I'm looking for a way to make my GTK windows transparent, does anyone have any good example C source code for this out there? The effect I'm looking for is something like the one in gdesklets, but since gdesklets are written in Python, it wont help me all that much. in advance thanks