Re: GnomeDesktopThumbnail API replacement

2018-01-22 Thread Bastien Nocera
Hey Philip, On Mon, 2018-01-22 at 09:28 +, Philip Withnall wrote: > On Wed, 2018-01-17 at 18:15 +0100, Bastien Nocera wrote: > > On Wed, 2018-01-17 at 13:15 +0100, Bastien Nocera wrote: > > > Hey, > > > > > > I wanted to start a discussion about replacing > > > GnomeDesktopThumbnail > > >

Re: GnomeDesktopThumbnail API replacement

2018-01-22 Thread Emmanuele Bassi
On 22 January 2018 at 09:28, Philip Withnall wrote: > On Wed, 2018-01-17 at 18:15 +0100, Bastien Nocera wrote: >> On Wed, 2018-01-17 at 13:15 +0100, Bastien Nocera wrote: >> > Hey, >> > >> > I wanted to start a discussion about replacing >> > GnomeDesktopThumbnail >> >

Re: GnomeDesktopThumbnail API replacement

2018-01-22 Thread Bastien Nocera
On Mon, 2018-01-22 at 12:46 +, Emmanuele Bassi wrote: > On 22 January 2018 at 09:28, Philip Withnall > wrote: > > On Wed, 2018-01-17 at 18:15 +0100, Bastien Nocera wrote: > > > On Wed, 2018-01-17 at 13:15 +0100, Bastien Nocera wrote: > > > > Hey, > > > > > > > > I

Re: GnomeDesktopThumbnail API replacement

2018-01-22 Thread Carlos Garnacho
Hey, On Wed, Jan 17, 2018 at 6:15 PM, Bastien Nocera wrote: > On Wed, 2018-01-17 at 13:15 +0100, Bastien Nocera wrote: >> Hey, >> >> I wanted to start a discussion about replacing GnomeDesktopThumbnail >> with an API that would live in the GLib/GTK+ stack. > >> >> To sum up,

Re: Is a Module Definition File needed when building with MSVC (gtk-2-24)?

2018-01-22 Thread John Emmas
On 22/01/2018 08:27, John Emmas wrote: On 22/01/2018 04:12, 范,君維 wrote: Hi John, Can you try generating gtk/gtkmarshalers.[c|h] using glib-genmarshal? Can you also test using the Python version of glib-genmarshal and see whether the linking z works properly? If not, use the former .exe

Re: Is a Module Definition File needed when building with MSVC (gtk-2-24)?

2018-01-22 Thread John Emmas
On 22/01/2018 04:12, 范,君維 wrote: Hi John, Can you try generating gtk/gtkmarshalers.[c|h] using glib-genmarshal?  Can you also test using the Python version of glib-genmarshal and see whether the linking z   works properly?  If not, use the former .exe version of the tool, and perhaps file a

Re: GnomeDesktopThumbnail API replacement

2018-01-22 Thread Philip Withnall
On Wed, 2018-01-17 at 18:15 +0100, Bastien Nocera wrote: > On Wed, 2018-01-17 at 13:15 +0100, Bastien Nocera wrote: > > Hey, > > > > I wanted to start a discussion about replacing > > GnomeDesktopThumbnail > > with an API that would live in the GLib/GTK+ stack. > > From the GLib side of

Re: Is a Module Definition File needed when building with MSVC (gtk-2-24)?

2018-01-22 Thread John Emmas
On 22/01/2018 14:47, John Emmas wrote: BTW - IIRC the previous version of glib-genmarshal was a perl script (rather than an exe). I'd need to get a copy of that old perl script somehow as I won't have it backed up anywhere. Apologies... I just found a copy of glib-genmarshal.exe Will

Re: GnomeDesktopThumbnail API replacement

2018-01-22 Thread Bastien Nocera
On Mon, 2018-01-22 at 15:22 +0100, Carlos Garnacho wrote: > Hey, > > On Wed, Jan 17, 2018 at 6:15 PM, Bastien Nocera > wrote: > > On Wed, 2018-01-17 at 13:15 +0100, Bastien Nocera wrote: > > > Hey, > > > > > > I wanted to start a discussion about replacing > > >

Scrolling a GtkTreeview cell

2018-01-22 Thread Kian Karas
Hi, I have a GtkTreeview with size constraints, which causes the text of one particular column in one particular row not to fit into its cell. Is there a way for the user to scroll the content of a specific cell (i.e. a specific column in the current highlighted row) - e.g. with the keyboard

Pause and resume GtkApplication

2018-01-22 Thread Alexander Koeppe
Hi, I have an application where some things need to be setup in the UI, then some low-level routines to be executed using the setup values and then resuming the UI loop for further operation. Since I'm migrating the GTK code from GTK2/3 compatible to GNOME/GTK3, I make use of

Re: Pause and resume GtkApplication

2018-01-22 Thread Lucky B.C
Hi, can you show your demo about the way you did? But I think you should keep the gtk_main() runs, because you can run your low-level functions by "clicked" signal on button. On Jan 23, 2018 03:44, "Alexander Koeppe" wrote: Hi, I have an application where some things