Re: Using fork() in a GTK C/Vala application

2015-09-02 Thread Gian Mario Tagliaretti
t;. g_spawn_async_* have the (personally unwanted) behavior on windows to open a console for each process [1], which is quite horrible for the user. [1] https://bugzilla.gnome.org/show_bug.cgi?id=509201 Cheers -- Gian Mario Tagliaretti GNOME Foundation member gia...@gnome.org __

Re: TextView background color: bug or misunderstanding?

2015-07-05 Thread Gian Mario Tagliaretti
had a look at gtk-demo? [1], the css_multiplebgs.[c|css] example in particular, I'm pretty sure it could answer your stylings questions. [1] https://git.gnome.org/browse/gtk+/tree/demos/gtk-demo Cheers -- Gian Mario Tagliaretti GNOME Foundation member gia...@gnome.org

Re: [PATCH] Prevent the configure script to fail if CFLAGS=-Werror is specified

2010-04-21 Thread Gian Mario Tagliaretti
On Wed, Apr 21, 2010 at 3:04 PM, Giuseppe Scrivano gscriv...@gnu.org wrote: Giuseppe, This is my second attempt to send it... you should file a bug into gnome bugzilla and attach your patch there, not every developer will see it here on the mailing list. cheers! -- Gian Mario Tagliaretti

Re: Window events problems

2008-12-31 Thread Gian Mario Tagliaretti
On Wed, Dec 31, 2008 at 2:21 AM, Perriman chuchiperri...@gmail.com wrote: I have problems trying to catch a signal in a window. I need to know when the user press a button in a window you probably want to add GDK_BUTTON_PRESS_MASK to the GdkWindow. cheers -- Gian Mario Tagliaretti

Re: Window events problems

2008-12-31 Thread Gian Mario Tagliaretti
when the user uses the mouse by clicking into the window. A standalone example of code that isn't working for you is always handy. cheers -- Gian Mario Tagliaretti GNOME Foundation member gia...@gnome.org ___ gtk-app-devel-list mailing list gtk-app

Re: g_app_launch_context_get_startup_notify_id

2008-07-07 Thread Gian Mario Tagliaretti
that both are optional (and why), but I agree with you, there are some places where the doc doesn't tell you if a parameter can be NULL and if it does sometimes it doesn't tell you why. cheers -- Gian Mario Tagliaretti ___ gtk-devel-list mailing list gtk-devel

Re: Gtk performance

2008-06-11 Thread Gian Mario Tagliaretti
On Wed, Jun 11, 2008 at 6:30 PM, Gerardo Di Iorio [EMAIL PROTECTED] wrote: You must ask yourself - comparing to what? Java? QT? comparing to QT. As Tor already pointed out, if you have read it on the web it _must_ be true. cheers -- Gian Mario Tagliaretti

Re: Scrolling text in Gtk

2008-05-28 Thread Gian Mario Tagliaretti
can find goocanvas here: http://live.gnome.org/GooCanvas cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Language bindings on gtk.org

2008-04-07 Thread Gian Mario Tagliaretti
On Mon, Apr 7, 2008 at 4:31 PM, Andreas Nilsson [EMAIL PROTECTED] wrote: I was wondering that too. What bindings are up to date regarding 2.12? At least PyGTK and Gtkmm are up to date with 2.12 cheers -- Gian Mario Tagliaretti ___ gtk-devel-list

Re: how can I find out the current font size

2008-01-13 Thread Gian Mario Tagliaretti
for the font size attribute, not a pango expert here so there might be a better way though. cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: gtk.image

2007-12-25 Thread Gian Mario Tagliaretti
() method (of gobject) and retrieve it later using get_data(). Unfortunately the python bindings does not wrap the set_option() method of gtk.gdk.Pixbuf otherwise you could use that which basically does the same thing as set_data, store a key/value pair. cheers -- Gian Mario Tagliaretti

Re: C vs C++ for GTK

2007-11-26 Thread Gian Mario Tagliaretti
it? 99% of the times it's not the case. Same apply to threads, 99% of the times you don' t need them. cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel

Re: Error in GTK+ documentation

2007-11-20 Thread Gian Mario Tagliaretti
2007/11/20, Dan H [EMAIL PROTECTED]: Hi Dan, This needs to be changed in the docs. Maybe someone on this list can bring it to the attention of whoever is responsible. please just file a bug into bugzilla [1] product GTK component docs. cheers -- Gian Mario Tagliaretti +++ [1] http

Re: Little documentation patch

2007-11-11 Thread Gian Mario Tagliaretti
-- Gian Mario Tagliaretti ___ gtk-devel-list mailing list gtk-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-devel-list

Re: Question on gtk_label_set_selectable

2007-10-19 Thread Gian Mario Tagliaretti
2007/10/19, David Nečas (Yeti) [EMAIL PROTECTED]: On Fri, Oct 19, 2007 at 03:06:55PM +0200, Gian Mario Tagliaretti wrote: You can also set the can-focus property to FALSE on the label which will be still selectable. Not exactly. It will be only selectable *with mouse*. Good point David

Re: Question on gtk_label_set_selectable

2007-10-19 Thread Gian Mario Tagliaretti
add the label after it's decided which widget should receive focus, the label does not get focus and therefore its text is not selected. You can also set the can-focus property to FALSE on the label which will be still selectable. cheers -- Gian Mario Tagliaretti

Re: Help to create an custom control for calendar

2007-10-15 Thread Gian Mario Tagliaretti
), maybe you can find it useful. [2] [1] http://www.daa.com.au/pipermail/pygtk/2007-October/014297.html [2] http://debain.org/blog/calendar2.ogg Cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: cairo canvas

2007-09-24 Thread Gian Mario Tagliaretti
of comparison look at [1]. [1] http://live.gnome.org/ProjectRidley/CanvasOverview?highlight=%28canvas%29#Features I would suggest you to have a look at goocanvas, it comes with a lot of really cool and useful examples and a complete reference manual. cheers -- Gian Mario Tagliaretti

Re: cairo canvas

2007-09-24 Thread Gian Mario Tagliaretti
then a month or so (0.9), the developer Damon Chaplin is actually working on something else but I still hope that goocanvas will be adopted as the next GtkCanvas. cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: How to replace deprecated functions

2007-08-15 Thread Gian Mario Tagliaretti
gtk_toolbar_insert() with your brand new GtkToolItem. Hope it helps cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: color of vscrollbar

2007-08-08 Thread Gian Mario Tagliaretti
in error. Please remove this non sense message on a public mailing list cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: color of vscrollbar

2007-08-08 Thread Gian Mario Tagliaretti
2007/8/8, Jonathan Winterflood [EMAIL PROTECTED]: The confidential message is automatically added by the mail servers of most companies, the users cannot usually do anything about it sure, that's why most of the people use a different email address for public ML. cheers -- Gian Mario

Re: How can i look gdk-kesysm codes from python

2007-07-17 Thread Gian Mario Tagliaretti
be able to easily lookup its members with : http://svn.gnome.org/viewcvs/pygtk/trunk/gtk/keysyms.py?revision=2434view=markup dir(classname) gtk.keysyms cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: Adding different tooltips to a single widget

2007-04-11 Thread Gian Mario Tagliaretti
, this will require gtk+ 2.12 though. (goocanvas will shortly freeze the API with a 1.0 stable release.) [1] http://sourceforge.net/projects/goocanvas cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: Native character isn't supported by gtk+.

2007-04-01 Thread Gian Mario Tagliaretti
should download another version of the library, preferably the official one. cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Is Cairo a _dependency_ to build Gtk+2 on the Mac?

2007-03-22 Thread Gian Mario Tagliaretti
2007/3/22, Jeremiah Foster [EMAIL PROTECTED]: I am confused - is Cairo a _requirement_ for Gtk+ on UNIXy systems or not? cairo is a requirement on __all__ platforms since GTK+ 2.8 cheers -- Gian Mario Tagliaretti ___ gtk-devel-list mailing list gtk

Re: undefined reference to 'gdk_display_warp_pointer'

2007-02-27 Thread Gian Mario Tagliaretti
2007/2/27, [EMAIL PROTECTED] [EMAIL PROTECTED]: Hello!! I'm trying to compile a program with dev-cpp,but appears this error. can you tell me what library i've to add to my program options?? thanks a lot! quite obvious that is gdk (since 2.8) cheers -- Gian Mario Tagliaretti http

Re: GTK+ 2.0 Tutorial - C.3.2. scribble-xinput.c

2007-02-24 Thread Gian Mario Tagliaretti
2007/2/23, v4r4n [EMAIL PROTECTED]: I'm unsure where to post this, http://bugzilla.gnome.org/ cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ ___ gtk-devel-list mailing list gtk-devel-list@gnome.org http://mail.gnome.org/mailman

Re: gtk_entry_set_text

2006-12-19 Thread Gian Mario Tagliaretti
handler. If it is so you found the biggest bug of 2006... what do you mean by conflicts? Can you please post a minimal test case? cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list

Re: moving a window off screen

2006-12-19 Thread Gian Mario Tagliaretti
? It is not sufficent to hide it? cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Need to get the widget focused

2006-12-13 Thread Gian Mario Tagliaretti
2006/12/13, [EMAIL PROTECTED] [EMAIL PROTECTED]: How can I find which widget has focus set? I have lot of widgets so cannot explicitly check one by one. Is there any other way to do it? gtk_window_get_focus () will get the focused widget whithin the main window. cheers -- Gian Mario

Re: simulate and enter pressed event

2006-12-13 Thread Gian Mario Tagliaretti
2006/12/13, [EMAIL PROTECTED] [EMAIL PROTECTED]: Is there any similar way to get Enter key press event. what about key-press-event... http://developer.gnome.org/doc/API/2.0/gtk/GtkWidget.html#GtkWidget-key-press-event cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk

Re: Re: gtkwindow

2006-12-12 Thread Gian Mario Tagliaretti
://www.async.com.br/faq/pygtk/index.py?req=showfile=faq08.013.htp cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: events description

2006-12-09 Thread Gian Mario Tagliaretti
/2.0/gtk/GtkWidget.html#gtk-widget-mnemonic-activate look at pygtk docs http://www.pygtk.org/docs/pygtk/class-gtkwidget.html#signal-gtkwidget--mnemonic-activate almost every signal is explained as you are asking cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk

Re: Need to disable system menu

2006-12-08 Thread Gian Mario Tagliaretti
button on the decorations through gtk+. cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: How to find custom engines

2006-12-07 Thread Gian Mario Tagliaretti
interesting things. http://developer.gnome.org/projects/gap/ http://developer.gnome.org/projects/gup/hig/ ciao -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: gtkwindow

2006-12-07 Thread Gian Mario Tagliaretti
-modify-bg cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Conversion from GdkRegion to GdkPixbuf

2006-11-28 Thread Gian Mario Tagliaretti
with gdk_cairo_region(), then you save the image in PNG file format. cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Double Buffering

2006-11-09 Thread Gian Mario Tagliaretti
level), see federico's great doc: http://primates.ximian.com/~federico/misc/gtk-drawing-model/index.html cheers -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Re: Follow windows with a botton

2006-10-22 Thread Gian Mario Tagliaretti
2006/10/20, Rodrigo Tavares [EMAIL PROTECTED]: As a instalation program, with button next,next... Until in the end. I guess you are looking for: http://developer.gnome.org/doc/API/2.0/gtk/GtkAssistant.html ciao -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk

Re: More widgets?

2006-10-02 Thread Gian Mario Tagliaretti
2006/9/29, Juan Pablo Daniel Borgna [EMAIL PROTECTED]: Im looking for some widgets like meters, thermometer, tachometers... I need it for show a numeric status in a coloured - quick to see way Are there any of them already been made? http://tesla.eletrica.ufpr.br/giw/ -- Gian Mario

Re: Scientific/instrumentation widgets library released

2006-09-30 Thread Gian Mario Tagliaretti
2006/9/29, Alexandre [EMAIL PROTECTED]: I hope it can help some people. Hi Alexandre, very nice job :) I just wanted to ask why you pick up GPL as licence (for a library) and not LGPL (as gtk for instance) ciao -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk

Re: GTK+ canvas?

2006-08-30 Thread Gian Mario Tagliaretti
bigger. Thanks for pointing me to these nice libs. As Emmanuele already said we have just released python bindings for GooCanvas, maybe you want to try them out: http://developer.berlios.de/projects/pygoocanvas ciao -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk

Re: Installing Cairo1.1.6

2006-07-01 Thread Gian Mario Tagliaretti
development itself, cairo ML: http://cairographics.org/cgi-bin/mailman/listinfo/cairo ciao -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ http://pygstdocs.berlios.de ___ gtk-devel-list mailing list gtk-devel-list@gnome.org http

Re: gtk file open dialog usability.

2006-06-24 Thread Gian Mario Tagliaretti
/GtkFileOpenBadUsability are you using gtk+ 2.9.x ? ciao -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ http://pygstdocs.berlios.de ___ gtk-devel-list mailing list gtk-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-devel

Re: how to tell gtk to update only the GUI

2006-05-05 Thread Gian Mario Tagliaretti
()) gtk_main_iteration_do(FALSE); ciao -- Gian Mario Tagliaretti http://www.parafernalia.org/pygtk/ http://pygstdocs.berlios.de ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: GtkTooltips event handler

2005-11-01 Thread Gian Mario Tagliaretti
an INFERIOR or an ANCESTOR? cheers -- Gian Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Missing include in gscanner.h

2005-10-31 Thread Gian Mario Tagliaretti
2005/10/31, Uzytkownik [EMAIL PROTECTED]: I'm not quite sure I'm doing correctly(bad format of patch, bad mailing list). I think all patches should go into bugzilla not on the mailing lists so the developers can review it and approve or reject. cheers -- Gian Mario Tagliaretti PyGTK GUI

GtkTooltips event handler

2005-10-31 Thread Gian Mario Tagliaretti
is GDK_NOTIFY_INFERIOR? thanks in advance cheers -- Gian Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Error while cross-compiling x11

2005-09-28 Thread Gian Mario Tagliaretti
. Is there any seperate tool-chains for this?.Plz let me know if anybody have experienced this problem. sorry, what this has to do with a ML gtk-app-devel Writing Apps with GTK+ ? -- Gian Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk

Re: Children and precedence.

2005-09-22 Thread Gian Mario Tagliaretti
Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: about button and tooltip in GTK_WINDOW_POPUP

2005-08-21 Thread Gian Mario Tagliaretti
-- Gian Mario Tagliaretti PyGTK GUI programming http://www.parafernalia.org/pygtk/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: dynamically changing color of labels and edit boxes

2005-08-18 Thread Gian Mario Tagliaretti
2005/8/18, Faria, Sydney C [EMAIL PROTECTED]: How do I get a GdkColor to use with gdk_color_parse()??? something like: GdkColor colGreen; gdk_color_parse (green, colGreen); gtk_widget_modify_fg (button_Widget, GTK_STATE_NORMAL, colGreen); cheers -- Gian Mario Tagliaretti PyGTK GUI

Re: gtk_text_entry

2005-05-28 Thread Gian Mario Tagliaretti
is when i tried to call the function to callbacks using lookup, i can't able to get the value entry widget value. how can i get this functionality; maybe: http://developer.gnome.org/doc/API/2.0/gtk/GtkEntry.html#gtk-entry-get-text cheers -- Gian Mario Tagliaretti PyGTK GUI programming http

Re: problem with gtk and frames

2005-03-27 Thread Gian Mario Tagliaretti
chaica [EMAIL PROTECTED] cheers -- Gian Mario Tagliaretti ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list