PyGObject Maybe bug with alternate row colors in a Gt.TreeView

2018-05-11 Thread c.buhtz
Please see this StackOverflow question. https://stackoverflow.com/q/50281987/4865723 Is there an official bug about setup alternate (even & odd) row colors with CSS in a Gtk.TreeView? Can someone give a link to the bug ticket? ___ gtk-app-devel-list

Re: PyGObject: cell_data_func or own Renderer for date column?

2018-05-11 Thread c.buhtz
>     do_render(self, cr, widget, bg_area, cell_area, flags): >     # implement your own rendering here How do I "render"? I have no idea about it. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: PyGObject: Which types accepted in a Gtk.ListStore

2018-05-11 Thread c.buhtz
> However, if I remember correctly, in the bindings several native > python types like int, float and str are mapped to GObject types > automatically. What exactly is "mapped" to GObject here? ___ gtk-app-devel-list mailing list

Re: gtk_file_chooser_dialog in windows - hot to enable network places

2018-05-11 Thread Luca Bacci
Anyway GtkFileChooser uses GIO and GVFS , which supports many protocols , including SMB. It's very likely that GtkFileChooser is able to browse network shares on Windows. Do you use MSYS2 or vcpkg? 2018-05-11

Re: gtk_file_chooser_dialog in windows - hot to enable network places

2018-05-11 Thread Luca Bacci
Maybe you can try GtkFileChooserNative You should be able to select network locations with that. Luca 2018-05-11 13:16 GMT+02:00 Wojciech Puchar : > nobody program for windows? > > > > >

Fwd: gtk_file_chooser_dialog in windows - hot to enable network places

2018-05-11 Thread Wojciech Puchar
nobody program for windows? Forwarded Message Subject:gtk_file_chooser_dialog in windows - hot to enable network places Date: Wed, 9 May 2018 09:39:34 +0200 From: Wojciech Puchar To: gtk-app-devel-list list

Re: PyGObject: cell_data_func or own Renderer for date column?

2018-05-11 Thread infirit
Op 10-05-18 om 00:06 schreef c.bu...@posteo.jp: > I want to have a date column in a Gtk.ListView. The field in the model > is a real "datetime.date". Based on that the content of the column > could display this: > > "2018-05-07" > "2 days ago" > "this week" > "7th May" > "7. Mai '18"

Re: PyGObject: Which types accepted in a Gtk.ListStore

2018-05-11 Thread infirit
Op 09-05-18 om 23:50 schreef c.bu...@posteo.jp: > From the api-reference here > > > it is unclear for me what types are accepted for the columns. > The parameter "*column_types" is not explained. > Quoting from the