Re: Dropping 'fringe' pixbuf loaders

2015-09-21 Thread Bastien Nocera
On Mon, 2015-09-21 at 18:38 -0400, Matthias Clasen wrote: > > On Mon, Sep 21, 2015 at 5:10 PM, Cosimo Cecchi > wrote: > > > > On Mon, Sep 21, 2015 at 1:01 PM, Owen Taylor > > wrote: > > > Do we trust this code or not? If not, we should either a) sandbox >

Re: Auto-resize scrolled window

2015-09-21 Thread Subsentient
I've already tried this. I'm afraid the scrolled window resizes horizontally, but not vertically. I've even tried putting it into a GtkAlignment with full expansion. It's in a vbox btw. On 09/21/15 17:46, Chris Moller wrote: Try gtk_window_set_default_size () On 09/21/15 20:33,

libvte color troubles.

2015-09-21 Thread Subsentient
Writing a new terminal application with GTK and libvte, and setting colors is not working. I'd like to know what I'm doing wrong. vte_terminal_set_color_background() is ignored. Nothing changes, no warnings appear in stdout or stderr, just, nothing. Here's some stub code that illustrates

Re: libvte color troubles.

2015-09-21 Thread Ben Iofel
> GdkColor Color = { 0, 22323, 0xff * 255, 0xff * 255 }; That doesn't look right. Shouldn't colors be in 0..255? On Mon, Sep 21, 2015, 8:12 AM Subsentient wrote: > Writing a new terminal application with GTK and libvte, and setting > colors is not working. > > I'd like

Re: Dropping 'fringe' pixbuf loaders

2015-09-21 Thread Matthias Clasen
On Mon, Sep 21, 2015 at 5:10 PM, Cosimo Cecchi wrote: > > On Mon, Sep 21, 2015 at 1:01 PM, Owen Taylor wrote: > >> Do we trust this code or not? If not, we should either a) sandbox it or >> b) delete it. >> >> Moving less-trusted loaders into a separate

Auto-resize scrolled window

2015-09-21 Thread Subsentient
When I resize the window, I'm having difficulty finding a way to make a scrolled window automatically resize with it. I can't use gtk_widget_set_size_request(), because then I won't be able to shrink it down again. Working in C. How can I have a widget automatically resize to fill all

Re: Auto-resize scrolled window

2015-09-21 Thread Chris Moller
Try gtk_window_set_default_size () On 09/21/15 20:33, Subsentient wrote: When I resize the window, I'm having difficulty finding a way to make a scrolled window automatically resize with it. I can't use gtk_widget_set_size_request(), because then I won't be able to shrink it down again.

Re: Dropping 'fringe' pixbuf loaders

2015-09-21 Thread Cosimo Cecchi
On Mon, Sep 21, 2015 at 8:28 AM, Matthias Clasen wrote: > Before doing so, I want to ask if anybody is willing to step up and > maintain these loaders. Note that even if we drop these from gdk-pixbuf > itself, they can be maintained out-of-tree... one of the

Re: Dropping 'fringe' pixbuf loaders

2015-09-21 Thread Owen Taylor
Do we trust this code or not? If not, we should either a) sandbox it or b) delete it. Moving less-trusted loaders into a separate repo is a blame-the-user or blame-the-os-vendor move, depending on who installs them onto the system. - Owen - Original Message - > On Mon, Sep 21, 2015 at

Re: Dropping 'fringe' pixbuf loaders

2015-09-21 Thread Cosimo Cecchi
On Mon, Sep 21, 2015 at 1:01 PM, Owen Taylor wrote: > Do we trust this code or not? If not, we should either a) sandbox it or b) > delete it. > > Moving less-trusted loaders into a separate repo is a blame-the-user or > blame-the-os-vendor move, depending on who installs them