Re: Should a GtkFileFilter be freed or not?

2017-07-31 Thread A. Walton
g/gobject/stable/gobject-The-Base-Object-Type.html -Andrew Walton > Best Regards, > Lars > > ___ > gtk-app-devel-list mailing list > gtk-app-devel-list@gnome.org > https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list __

Re: Heads-up: Potentially breaking changes to the GDK drawing model pushed

2014-06-20 Thread A. Walton
a commercial and open source GTK+ application developer, show us a tiny bit of mercy and document changes like this in places other than commit messages and mailing list threads. Thanks for your work Jasper, -Andrew Walton Thanks! -- Jasper ___ gtk

Re: Heads-up: Potentially breaking changes to the GDK drawing model pushed

2014-06-20 Thread A. Walton
On Fri, Jun 20, 2014 at 9:01 PM, Jasper St. Pierre jstpie...@mecheye.net wrote: On Fri, Jun 20, 2014 at 11:57 PM, A. Walton awal...@gnome.org wrote: On Fri, Jun 20, 2014 at 6:00 PM, Jasper St. Pierre jstpie...@mecheye.net wrote: To better support Wayland with fewer copies and less drawing

Re: GTK signals question.

2014-03-05 Thread A. Walton
, you could bake it all (the three spin buttons, any labels, and the one true value property) into one composite GtkWidget and save yourself a bit of boilerplate too. -A. Walton Thanks. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: .goutputstream-*?

2014-02-28 Thread A. Walton
. If your program is leaving these files behind, it's probably a bug in your program. The highly likely case is you forgot to close the stream. -A. Walton Sorry for my English ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https

Re: Best practice query: Entry field user's done editing handling?

2013-12-23 Thread A. Walton
behavior, but hate adding code to enforce it. Perhaps someone could kick it over to the HIG guys to argue about.) -A. Walton ChrisA ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app

Re: Spell checking in GIO

2013-10-08 Thread A. Walton
, 2013 at 9:54 PM, Christian Hergert christ...@hergert.mewrote: On 10/07/2013 09:36 PM, A. Walton wrote: My only question is why GIO and not GDK? This kind of per-platform API would happily reside in GDK and prevent us from adding even more extension points to GIO. There's really nothing I/Oish

Re: Spell checking in GIO

2013-10-07 Thread A. Walton
between Glib and GTK+), and I can't think of any obvious applications that would want spell checking and not want GTK+. Is there a good reason for spell checking to be this low in the stack? -A. Walton On Mon, Oct 7, 2013 at 6:36 PM, Matthew Barnes mbar...@redhat.com wrote: On Mon, 2013-10-07

Re: 'glib/gio/glocalfile.c' no longer compiles with MSVC

2013-09-11 Thread A. Walton
/GnomeIrcChannels Good luck, -A. Walton On Wed, Sep 11, 2013 at 2:27 PM, Fan Chun-wei fanc...@yahoo.com.tw wrote: Hi John, It is indeed a very recent update to glocalfile.c, due to the use of dirent. I have opened a bug for it few days ago at https://bugzilla.gnome.org/**show_bug.cgi?id=707787https

Re: vertical GtkLevelBar ?

2013-07-14 Thread A. Walton
On Sun, Jul 14, 2013 at 2:12 PM, Victor Aurélio Santos victoraur.san...@gmail.com wrote: Hi, like subject suggest, I'm looking for GtkLevelBar in vertical mode, in gtklevelbar.c is defined gtk_level_bar_set_orientation but it isn't declared on gtklevelbar.h so it isn't external usage.

Re: Reducing unncessary string copying

2012-02-22 Thread A. Walton
application to use it, and see how big of a difference this actually makes with Valgrind's memory profiling tool Massif. If it makes a big enough difference, open a bug and post your results. -A. Walton greets -- --  Enrico

Re: GCancellable Error Code

2010-04-13 Thread A. Walton
. -A. Walton I've looked through the docs/headers but was unable to find the information. This would just be used for something like the following, where the user is only notified of an error if it was not themselves who triggered it through a disconnect button: if ((connection

Re: g_main_context_push_thread_default() g_io_*()

2010-03-29 Thread A. Walton
referred to above? Or maybe I'm doing this wrong. Thanks for any input. GIO refers to the GIO library (http://library.gnome.org/devel/gio/stable/), not to the g_io_* family of functions. Probably worth filing a bug to make this clearer in the documentation. -A. Walton #include glib.h #include

Re: gobject-performance

2009-09-24 Thread A. Walton
microbenchmarks that you wrote? The non-threaded speedups are pretty impressive on their own, but it'd be nice to see what we could expect from e.g. GStreamer with these changes applied. Thanks, -A. Walton. Benjamin ___ gtk-devel-list mailing list gtk

Re: GZip{In,Out}putStream in GIO?

2009-08-01 Thread A. Walton
have anyways? (Not rhetorical, curious). Also, Zip is probably not a good idea since you'd have to deal with virtual files and crypto. Makes better sense as a GVFS backend I think. -A. Walton We have concrete classes for the most used compressions publicly available, eg. GZip, Zip[1

Re: Bug with g_file_load/replace_contents and utf-8

2009-06-30 Thread A. Walton
for g_file_replace_contents? You're writing a string to the file of -1 bytes. -g_file_replace_contents (file, text, -1, NULL, FALSE, 0, NULL, NULL, NULL); + g_file_replace_contents (file, text, strlen (text), NULL, FALSE, 0, NULL, NULL, NULL); works fine here. -A. Walton Mike

Re: glib uses wrong prefix for base-2 units

2009-06-03 Thread A. Walton
on Ubuntu's lists in the past two years I've been involved. Anyone want to chime in from Fedora's or SuSE's community and say how many times they've had it there? -A. Walton Cheers, Benjamin ___ gtk-devel-list mailing list gtk-devel-list

Re: What gives us the macro GSEAL()?

2009-04-12 Thread A. Walton
-_g_sealed__title = new_title; //?? gtk_window_set_title(). Maybe I can read anywhere for idea macros GSEAL? I don't want write stupidity in Wikibooks. Because I want write analize for struct GtkWindow AND I myself want understand :) --- Grzegorz Kuczyński -A. Walton

Re: What gives us the macro GSEAL()?

2009-04-12 Thread A. Walton
2009/4/12 A. Walton awal...@ubuntu.com: 2009/4/12 Grzegorz Kuczyński gk180...@interia.pl: Very thanks Regards. Ok I understand the idea, but... how work it? for example: --- struct _GtkWindow {  GtkBin bin;  gchar *GSEAL (title); --- void gtk_window_set_title

Re: Decorating scales

2009-01-05 Thread A. Walton
, what more is necessary? -A. Walton Cheers, -Tristan PS: rambling off on a semi-related topic, when I implemented a sound mixer UI - I wrote my own slider widget because in this case particularly it was a touchscreen interface, and we needed to make sure that we wouldnt have

Re: checking for gdk/gdkx.h

2008-11-12 Thread A. Walton
like you could just check pkg-config for gdk-x11-2.0 instead of gdk-2.0 for the X11-specific support, and fallback to the regular gdk-2.0 if it's not found. Admittedly my autotools knowledge is just as limited if not more so though, so if that doesn't work, I haven't a clue. -A. Walton

Re: GFile with http:// uris

2008-11-07 Thread A. Walton
Kellner is working on the HTTP support for GVFS. And you can always ask any questions on GVFS support on the GVFS-list. http://mail.gnome.org/mailman/listinfo/gvfs-list -A. Walton Thanks, Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x7D0BD5D1

Re: URI's

2008-09-30 Thread A. Walton
://bugzilla.gnome.org/show_bug.cgi?id=550110 -A. Walton Thanks, Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x7D0BD5D1 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

Re: GFile issue: undefined reference to `g_file_new_for_path'

2008-05-04 Thread A. Walton
, g_file_dest, G_FILE_COPY_OVERWRITE , NULL, NULL, NULL, error); Be sure you're including libs and cflags for gio-2.0 as well. -A. Walton Thanks a lot in advance, Cheers, Soulivanh ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: Moving Open with to the platform

2008-03-18 Thread A. Walton
to do. (Perhaps we should even broaden it further as Cosimo suggests and mail FD.O and ask everyone what it should look like across desktops?) Just a few thoughts. -A. Walton Cheers, Cosimo ___ gtk-devel-list mailing list gtk-devel-list

Re: What's wrong with the docs?

2008-01-30 Thread A. Walton
! -A. Walton John ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http